source dump of claude code
at main 16 lines 684 B view raw
1export function getPrompt(): string { 2 return ` 3# TeamDelete 4 5Remove team and task directories when the swarm work is complete. 6 7This operation: 8- Removes the team directory (\`~/.claude/teams/{team-name}/\`) 9- Removes the task directory (\`~/.claude/tasks/{team-name}/\`) 10- Clears team context from the current session 11 12**IMPORTANT**: TeamDelete will fail if the team still has active members. Gracefully terminate teammates first, then call TeamDelete after all teammates have shut down. 13 14Use this when all teammates have finished their work and you want to clean up the team resources. The team name is automatically determined from the current session's team context. 15`.trim() 16}