skills/recall-search/SKILL.md
--- name: recall-search description: Search past Claude Code/Codex sessions via recall CLI. Use when: 前に, あの時, また同じ, あの件, past decisions, recurring mistake, module first contact, BACKLOG task pickup, temporal reference, structural echo, vague back-reference. allowed-tools: [Bash, Read] user-invocable: false --- # recall-search ## Triggers (call without deliberation) | Trigger | Signal | | -------------------- | ----------------------------------
npx skillsauth add thkt/dotclaude skills/recall-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| Trigger | Signal | | -------------------- | ----------------------------------------- | | Temporal reference | 「前に」「あの時」 past events / decisions | | Structural echo | Current problem mirrors a past situation | | Repetition | 「また同じ」 recurring mistake | | Vague back-reference | 「あの件」 past work without specifics | | Module first contact | First edit to a file/module this session | | BACKLOG task pickup | Starting a task from BACKLOG.md |
| Purpose | Command |
| ---------------- | ----------------------------------------------------------- |
| Search | recall search "query" (or recall "query" as shorthand) |
| Last N days | recall search "query" --days N |
| Project filter | recall search "query" --project <path> |
| Source filter | recall search "query" --source claude or --source codex |
| Limit results | recall search "query" --limit N (default 10, max 100) |
| Show session | recall show <session-id> |
| Status | recall status |
| Incremental index| recall index |
| Full rebuild | recall index --force |
Past decisions (recall-search) vs current code state (yomu-search). Run both in parallel on these triggers.
| Trigger | recall query | yomu query | | -------------------- | ----------------------------- | ----------------------------- | | Module first contact | module name, design rationale | module name, related concepts | | BACKLOG pickup | task name, related decisions | task-related code | | Structural echo | past similar problem | current similar code |
tools
Internal helper for /think Step 11. Renders SOW.md + Spec.md as an integrated Astro view and returns a dev server URL.
development
Extract repository spec while detecting bugs, spec gaps, and consistency drift via dual-purpose documentation. OUTCOME.md-axis question-driven exploration with ephemeral output. Do NOT use for code review (use /audit or /polish), feature implementation (use /code), planning only (use /think), or single-bug fix (use /fix).
development
Discover undocumented design decisions and challenge each candidate via critic-design before promotion. Rank by impact and reversibility, produce ADR promotion candidates. Treat each candidate as a position arguing for ADR status, not a fact to be filed. Pairs with audit-adr-drift, which scans existing ADRs for drift against code.
development
Scan ADR Decision sections against current code and report drift with modification direction and priority. Do NOT use for repos without ADRs (use audit-adr-gaps instead).