v2.0.72 (+47 tokens)

This commit is contained in:
Mike 2025-12-18 12:31:40 -07:00
parent d4f36ebacd
commit f415c3a4b0
3 changed files with 10 additions and 5 deletions

View File

@ -28,7 +28,7 @@ Download it and try it out for free! **https://piebald.ai/**
[![Mentioned in Awesome Claude Code](https://awesome.re/mentioned-badge.svg)](https://github.com/hesreallyhim/awesome-claude-code) [![Mentioned in Awesome Claude Code](https://awesome.re/mentioned-badge.svg)](https://github.com/hesreallyhim/awesome-claude-code)
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.71](https://www.npmjs.com/package/@anthropic-ai/claude-code/v/2.0.71) (December 16th, 2025).** It also contains a [**CHANGELOG.md**](./CHANGELOG.md) for the system prompts across 52 versions since v2.0.14. From the team behind [<img src="https://github.com/Piebald-AI/piebald/raw/main/assets/logo.svg" width="15"> **Piebald.**](https://piebald.ai/) 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.72](https://www.npmjs.com/package/@anthropic-ai/claude-code/v/2.0.72) (December 17th, 2025).** It also contains a [**CHANGELOG.md**](./CHANGELOG.md) for the system prompts across 53 versions since v2.0.14. From the team behind [<img src="https://github.com/Piebald-AI/piebald/raw/main/assets/logo.svg" width="15"> **Piebald.**](https://piebald.ai/)
Why multiple "system prompts?" Why multiple "system prompts?"
@ -142,8 +142,8 @@ Text for large system reminders.
- [Tool Description: Skill](./system-prompts/tool-description-skill.md) (**292** tks) - Tool description for executing skills in the main conversation. - [Tool Description: Skill](./system-prompts/tool-description-skill.md) (**292** 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: SlashCommand](./system-prompts/tool-description-slashcommand.md) (**355** tks) - Tool description for executing slash commands.
- [Tool Description: TaskList](./system-prompts/tool-description-tasklist.md) (**307** tks) - Description for the TaskList tool, which lists all tasks in the task list. - [Tool Description: TaskList](./system-prompts/tool-description-tasklist.md) (**307** tks) - Description for the TaskList tool, which lists all tasks in the task list.
- [Tool Description: TaskUpdate](./system-prompts/tool-description-taskupdate.md) (**589** tks) - Description for the TaskUpdate tool, which updates Claude's task list. - [Tool Description: TaskUpdate](./system-prompts/tool-description-taskupdate.md) (**615** tks) - Description for the TaskUpdate tool, which updates Claude's task list.
- [Tool Description: Task](./system-prompts/tool-description-task.md) (**1193** tks) - Tool description for launching specialized sub-agents to handle complex tasks. - [Tool Description: Task](./system-prompts/tool-description-task.md) (**1214** tks) - Tool description for launching specialized sub-agents to handle complex tasks.
- [Tool Description: TeammateTool's operation parameter](./system-prompts/tool-description-teammatetools-operation-parameter.md) (**163** tks) - Tool description for the TeammateTool's operation parameter. - [Tool Description: TeammateTool's operation parameter](./system-prompts/tool-description-teammatetools-operation-parameter.md) (**163** tks) - Tool description for the TeammateTool's operation parameter.
- [Tool Description: TodoWrite](./system-prompts/tool-description-todowrite.md) (**2167** tks) - Tool description for creating and managing task lists. - [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) (**265** tks) - Tool description for web fetch functionality. - [Tool Description: WebFetch](./system-prompts/tool-description-webfetch.md) (**265** tks) - Tool description for web fetch functionality.

View File

@ -1,7 +1,7 @@
<!-- <!--
name: 'Tool Description: Task' name: 'Tool Description: Task'
description: Tool description for launching specialized sub-agents to handle complex tasks description: Tool description for launching specialized sub-agents to handle complex tasks
ccVersion: 2.0.62 ccVersion: 2.0.72
variables: variables:
- TASK_TOOL - TASK_TOOL
- AGENT_TYPE_REGISTRY_STRING - AGENT_TYPE_REGISTRY_STRING
@ -28,6 +28,7 @@ When NOT to use the ${TASK_TOOL} tool:
Usage notes: Usage notes:
- Always include a short description (3-5 words) summarizing what the agent will do
- Launch multiple agents concurrently whenever possible, to maximize performance; to do that, use a single message with multiple tool uses - Launch multiple agents concurrently whenever possible, to maximize performance; to do that, use a single message with multiple tool uses
- When the agent is done, it will return a single message back to you. The result returned by the agent is not visible to the user. To show the user the result, you should send a text message back to the user with a concise summary of the result. - When the agent is done, it will return a single message back to you. The result returned by the agent is not visible to the user. To show the user the result, you should send a text message back to the user with a concise summary of the result.
- You can optionally run agents in the background using the run_in_background parameter. When an agent runs in the background, you will need to use ${TASK_TOOL} to retrieve its results once it's done. You can continue to work while background agents run - When you need their results to continue you can use ${TASK_TOOL} in blocking mode to pause and wait for their results. - You can optionally run agents in the background using the run_in_background parameter. When an agent runs in the background, you will need to use ${TASK_TOOL} to retrieve its results once it's done. You can continue to work while background agents run - When you need their results to continue you can use ${TASK_TOOL} in blocking mode to pause and wait for their results.

View File

@ -1,7 +1,7 @@
<!-- <!--
name: 'Tool Description: TaskUpdate' name: 'Tool Description: TaskUpdate'
description: Description for the TaskUpdate tool, which updates Claude's task list description: Description for the TaskUpdate tool, which updates Claude's task list
ccVersion: 2.0.70 ccVersion: 2.0.72
--> -->
Use this tool to update a task in the task list. Use this tool to update a task in the task list.
@ -40,6 +40,10 @@ Attempting to update an unclaimed task or a task owned by another agent will fai
Teammates should add comments while working to signal progress to the team and team lead. Teammates should add comments while working to signal progress to the team and team lead.
## Staleness
Make sure to read a task's latest state using \`TaskGet\` before updating it.
## Examples ## Examples
Mark task as resolved after completing work: Mark task as resolved after completing work: