session-search
For CLI agents WITHOUT subagent support (e.g., Codex CLI). Search previous code agent sessions for specific work, decisions, or code patterns.
Extract full context of the last task from the most recent parent session
$ npx -y skills add pchalasani/claude-code-tools --skill recover-context --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/recover-contextContext preview
The summary Claude sees to decide when to auto-load this skill.
Extract full context of the last task from the most recent parent session
name: recover-context description: Extract full context of the last task from the most recent parent session shown in the session lineage. Strategically uses sub-agents to avoid bloating your own context.
Use this skill to extract context from a parent session when a session lineage is present (shown in the first user message of this conversation).
1. **Identify the most recent parent session** from the lineage chain (the last file in the chronological list).
2. **Use sub-agents to explore** (to avoid bloating your own context):
subagent (subagent_type: `session-searcher`) to analyze the most recent session
3. **Extract the following from the most recent session:**
4. **Also check for associated documents:**
5. **Report back concisely:**
If using the Task tool with `session-searcher` subagent:
Analyze the session file at [path from lineage] and extract: 1. The last task being worked on (look at the final 20-30 messages) 2. Current state of that task 3. Any referenced markdown files (issue specs, work logs, etc.) 4. Pending next steps or blockers Return a concise summary.
Practical productivity tools for Claude Code, Codex-CLI, and similar CLI coding agents.
Repo: pchalasani/claude-code-tools
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…
Inter-agent communication via the msg CLI. Use this when you need to send messages to other agent sessions, read incoming messages, or coordinate with other…