Coding Agent Session Finder
Searches and reads local session transcripts across 20+ coding agents (Codex, Claude Code, OpenCode, and more) so you can recall past work with evidence.
Dev & CodingIntermediate★ 67,531⑂ 5,507AI score 9/10Last updated: Aug 9, 2026
What it does
- Probes the known local transcript stores for 20+ agent products — Codex, Claude Code/Desktop, OpenCode, Droid, Amp, Cursor CLI, Aider, Roo/Kilo/Cline, Gemini/Kimi/Qwen CLIs, Aside and more — skipping platforms that aren't installed.
- Turns fuzzy recall ("that dashboard PR") into 3-6 parallel query lanes: tool aliases, repo names, exact error text, session/PR IDs, multilingual phrasing and likely verbs.
- Returns a normalized JSON contract with session id, raw path, cwd, model, token/cost clues, first and last user prompt, subagent count, and
match_reasonsexplaining each hit. - Supports filters (
--platform,--from/--to,--cwd,--model,--include-subagents,--workers) and areadcommand that reveals the full delegation tree of child sessions.
Who it's for
- Developers juggling several AI coding tools who lose track of where work happened.
- Anyone auditing past sessions for decisions, token usage, or cost clues.
- Teams using subagent delegation who need to trace work hidden in child transcripts.
Example uses
- "What did I do about that commit last week?" → search the last 7 days limited to senpi/opencode, then read first and last prompts.
- "Did we already migrate X?" → search with
--include-subagentsto catch delegated child sessions and cite the raw transcript path. - "Find my Codex deploy session" →
--platform codex --from 7dscans rollout JSONL andstate_*.sqliteto surface the session ID and model.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/HEAD/packages/shared-skills/skills/coding-agent-sessions/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the packages/shared-skills/skills/coding-agent-sessions folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/coding-agent-sessions/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent && mkdir -p ~/.claude/skills && cp -r /tmp/oh-my-openagent/packages/shared-skills/skills/coding-agent-sessions ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/code-yeongyu/oh-my-openagent.git - Copy the whole skill folder so the script and
references/files come along:mkdir -p ~/.claude/skills && cp -r oh-my-openagent/packages/shared-skills/skills/coding-agent-sessions ~/.claude/skills/ - Verify Python is available with
python3 --version(install Python 3 if missing). - Restart Claude Code and try a prompt like "find the session where I fixed the login bug yesterday".
- If your agent data lives outside default paths, set
CODEX_HOMEor pass--root /path/to/storewhen running the finder.
View source on GitHub ↗License: NOASSERTION