Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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 & CodingIntermediate67,5315,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_reasons explaining each hit.
  • Supports filters (--platform, --from/--to, --cwd, --model, --include-subagents, --workers) and a read command 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

  1. "What did I do about that commit last week?" → search the last 7 days limited to senpi/opencode, then read first and last prompts.
  2. "Did we already migrate X?" → search with --include-subagents to catch delegated child sessions and cite the raw transcript path.
  3. "Find my Codex deploy session" → --platform codex --from 7d scans rollout JSONL and state_*.sqlite to 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repository: git clone https://github.com/code-yeongyu/oh-my-openagent.git
  3. 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/
  4. Verify Python is available with python3 --version (install Python 3 if missing).
  5. Restart Claude Code and try a prompt like "find the session where I fixed the login bug yesterday".
  6. If your agent data lives outside default paths, set CODEX_HOME or pass --root /path/to/store when running the finder.
View source on GitHubLicense: NOASSERTION