Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f01489b6be | ||
|
|
7c01955dce |
@@ -4,6 +4,16 @@ Note: Only use **NEW:** for entirely new prompt files, NOT for new additions/sec
|
||||
|
||||
### Claude Code System Prompts Changelog
|
||||
|
||||
# [2.0.58](https://github.com/Piebald-AI/claude-code-system-prompts/commit/d1437449dddae84e888f4751e18add2e6153e135)
|
||||
|
||||
- Session notes template: Added new "Current State" section for tracking active work and pending tasks
|
||||
- Session notes template: Renamed "User Corrections / Mistakes" to "Errors & Corrections" with expanded description
|
||||
- Session notes instructions: Added emphasis on updating "Current State" for continuity after compaction
|
||||
- Session notes instructions: Removed instruction about not repeating past session summaries
|
||||
- Session notes instructions: Fixed markdown header reference (`'##'` → `'#'`)
|
||||
- Documentation URL: Changed from `docs.claude.com/s/claude-code` to `code.claude.com/docs/en/overview`
|
||||
- GitHub Action templates: Updated CLI reference URL to `code.claude.com/docs/en/cli-reference`
|
||||
|
||||
#### [2.0.57](https://github.com/Piebald-AI/claude-code-system-prompts/commit/8b2ecb38493daf677fcba54746d2c3e40de6f657)
|
||||
|
||||
<sub>_No changes to the system prompts in v2.0.57._</sub>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Claude Code System Prompts
|
||||
|
||||
This repository contains an up-to-date list of all Claude Code's various system prompts and their associated token counts as of **[Claude Code v2.0.58](https://www.npmjs.com/package/@anthropic-ai/claude-code/v/2.0.58) (December 3rd, 2025).** It also contains a [**CHANGELOG.md**](./CHANGELOG.md) for the system prompts across 39 versions since v2.0.14.
|
||||
This repository contains an up-to-date list of all Claude Code's various system prompts and their associated token counts as of **[Claude Code v2.0.59](https://www.npmjs.com/package/@anthropic-ai/claude-code/v/2.0.59) (December 4th, 2025).** It also contains a [**CHANGELOG.md**](./CHANGELOG.md) for the system prompts across 40 versions since v2.0.14.
|
||||
|
||||
Why multiple "system prompts?"
|
||||
|
||||
@@ -110,6 +110,7 @@ Text for large system reminders.
|
||||
- [Tool Description: ReadFile](./system-prompts/tool-description-readfile.md) (**439** tks) - Tool description for reading files.
|
||||
- [Tool Description: Skill](./system-prompts/tool-description-skill.md) (**279** tks) - Tool description for executing skills in the main conversation.
|
||||
- [Tool Description: SlashCommand](./system-prompts/tool-description-slashcommand.md) (**355** tks) - Tool description for executing slash commands.
|
||||
- [Tool Description: TaskUpdate](./system-prompts/tool-description-taskupdate.md) (**140** tks) - Description for the TaskUpdate tool, which updates Claude's task list.
|
||||
- [Tool Description: Task](./system-prompts/tool-description-task.md) (**1055** tks) - Tool description for launching specialized sub-agents to handle complex tasks.
|
||||
- [Tool Description: TodoWrite](./system-prompts/tool-description-todowrite.md) (**2167** tks) - Tool description for creating and managing task lists.
|
||||
- [Tool Description: WebFetch](./system-prompts/tool-description-webfetch.md) (**278** tks) - Tool description for web fetch functionality.
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
<!--
|
||||
name: 'Tool Description: TaskUpdate'
|
||||
description: Description for the TaskUpdate tool, which updates Claude's task list
|
||||
ccVersion: 2.0.59
|
||||
-->
|
||||
Use this tool to update a task in the task list.
|
||||
|
||||
You can update any combination of:
|
||||
- subject: Change the task title
|
||||
- description: Change the task description
|
||||
- status: Change to 'open' or 'resolved'
|
||||
- owner: Assign or change the task owner
|
||||
- addComment: Add a comment with author and content
|
||||
- addReferences: Link to other tasks (bidirectional)
|
||||
- addBlocks: Mark that this task blocks other tasks
|
||||
- addBlockedBy: Mark that this task is blocked by other tasks
|
||||
|
||||
All fields are optional - only provide the fields you want to update.
|
||||
Reference in New Issue
Block a user