Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
09e9a9f196 | ||
|
|
df47c1671a | ||
|
|
a341d92ed8 |
@@ -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.60](https://github.com/Piebald-AI/claude-code-system-prompts/commit/7b38ff38e8fc1b6f4e1a88b3d41f0a6d4e70f7c8)
|
||||
|
||||
- **NEW:** System Reminder: Team Coordination - instructions for team-based multi-agent workflows with team config, task list paths, and teammate messaging
|
||||
- **NEW:** Agent Prompt: Exit plan mode with swarm - instructions for launching worker swarms when `ExitPlanMode` is called with `isSwarm` enabled
|
||||
- Agent Prompt: Claude Code guide agent → **renamed** to Claude guide agent with expanded scope covering Claude Code, Claude Agent SDK, and Claude API (formerly Anthropic API)
|
||||
- `Task` tool: Added `run_in_background` parameter documentation and `TaskOutput` tool usage for retrieving background agent results
|
||||
- `TaskUpdate` tool: Major expansion with task ownership requirements, team coordination, claiming tasks, and detailed field documentation
|
||||
- `WebFetch` tool: Added conditional instructions based on trusted domain status (simpler instructions for trusted domains)
|
||||
- **REMOVED:** System Prompt: whenToUse note for claude-code-guide subagent (functionality merged into updated guide agent)
|
||||
|
||||
# [2.0.59](https://github.com/Piebald-AI/claude-code-system-prompts/commit/f01489b6be5c888d3e53a02609710628a29c9a0b)
|
||||
|
||||
- **NEW:** Added new `TaskUpdate` tool which allows Claude to update the task list.
|
||||
|
||||
@@ -26,7 +26,7 @@ Download it and try it out for free! **https://piebald.ai/**
|
||||
|
||||
# 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.60](https://www.npmjs.com/package/@anthropic-ai/claude-code/v/2.0.60) (December 5th, 2025).** It also contains a [**CHANGELOG.md**](./CHANGELOG.md) for the system prompts across 41 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.61](https://www.npmjs.com/package/@anthropic-ai/claude-code/v/2.0.61) (December 7th, 2025).** It also contains a [**CHANGELOG.md**](./CHANGELOG.md) for the system prompts across 42 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?"
|
||||
|
||||
|
||||
@@ -416,8 +416,13 @@ function updateReadme(promptsByFilename, version, releaseDate, versionCount) {
|
||||
const npmUrl = `https://www.npmjs.com/package/@anthropic-ai/claude-code/v/${version}`;
|
||||
const dateStr = releaseDate ? ` (${releaseDate})` : '';
|
||||
|
||||
lines[2] = `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 v${version}](${npmUrl})${dateStr}.** It also contains a [**CHANGELOG.md**](./CHANGELOG.md) for the system prompts across ${versionCount} 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/)`;
|
||||
|
||||
// Find the intro line dynamically (it starts with "This repository contains")
|
||||
const introLineIndex = lines.findIndex(line => line.startsWith('This repository contains'));
|
||||
if (introLineIndex !== -1) {
|
||||
lines[introLineIndex] = `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 v${version}](${npmUrl})${dateStr}.** It also contains a [**CHANGELOG.md**](./CHANGELOG.md) for the system prompts across ${versionCount} 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/)`;
|
||||
} else {
|
||||
console.warn('Warning: Could not find intro line starting with "This repository contains"');
|
||||
}
|
||||
// Organize prompts by category
|
||||
const categories = {
|
||||
'Agent Prompts': {
|
||||
|
||||
Reference in New Issue
Block a user