recover-context
Extract full context of the last task from the most recent parent session
This skill should be used when the agent needs to give a spoken voice update to the user, or when reminded by a Stop hook to provide audio feedback. Use this skill to speak a short summary of what was accomplished.
$ npx -y skills add pchalasani/claude-code-tools --skill voice-update --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/voice-updateContext preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when the agent needs to give a spoken voice update to the user, or when reminded by a Stop hook to provide audio feedback. Use this skill to speak a short summary of what was accomplished.
name: voice-update description: This skill should be used when the agent needs to give a spoken voice update to the user, or when reminded by a Stop hook to provide audio feedback. Use this skill to speak a short summary of what was accomplished.
Provide spoken audio feedback to the user using pocket-tts.
1. Summarize what was accomplished in 1-2 short, conversational sentences 2. Call the `say` script with the summary text
Use Bash to call the say script:
${CLAUDE_PLUGIN_ROOT}/scripts/say "Your summary here"Example:
${CLAUDE_PLUGIN_ROOT}/scripts/say "I've fixed the bug in the login handler and added the unit tests."With a specific voice:
${CLAUDE_PLUGIN_ROOT}/scripts/say --voice azure "Task completed successfully."Practical productivity tools for Claude Code, Codex-CLI, and similar CLI coding agents.
Repo: pchalasani/claude-code-tools
Extract full context of the last task from the most recent parent session
For CLI agents WITHOUT subagent support (e.g., Codex CLI). Search previous code agent sessions for specific work, decisions, or code patterns.
Create, review, run, inspect, pause, resume, and cancel durable JavaScript workflows that coordinate multiple headless Codex agents. Use for dynamic fan-out…
Register an existing GitHub issue so the current Codex or Claude Code session is woken when its first future comment arrives. Use when work is genuinely…