recall-reasoning
Search past reasoning for relevant decisions and approaches
npx skills add parcadei/Continuous-Claude-v3 --skill recall-reasoning --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Recall Past Work Search through previous sessions to find relevant decisions, approaches that worked, and approaches that failed. Queries two sources: 1. **Artifact Index** - Handoffs, plans, ledgers with post-mortems (what worked/failed) 2. **Reasoning Files** - Build attempts, test failures, commit context ## When to Use - Starting work similar to past sessions - "What did we do last time with X?" - Looking for patterns that worked before - Investigating why something was done a certain way - Debugging an issue encountered previously ## Usage ### Primary: Artifact Index (rich context) ```bash uv run python scripts/core/artifact_query.py "<query>" [--outcome SUCCEEDED|FAILED] [--limit N] ``` This searches handoffs with post-mortems (what worked, what failed, key decisions). ### Secondary: Reasoning Files (build attempts) ```bash bash "$CLAUDE_PROJECT_DIR/.claude/scripts/search-reasoning.sh" "<query>" ``` This searches `.git/claude/commits/*/reasoning.md` for build failures and fixes. ## Examples ```bash # Search for authentication-related work uv run python scripts/core/artifact_query.py "authentication OAuth JWT" # Find only successful approaches uv run python scripts/core/arti
- When to Use
- Usage
- Primary: Artifact Index (rich context)
- Secondary: Reasoning Files (build attempts)
- Examples
- What Gets Searched
- Interpreting Results
- Process
- No Results?
uv run python scripts/core/artifact_query.py "<query>" [--outcome SUCCEEDED|FAILED] [--limit N] bash "$CLAUDE_PROJECT_DIR/.claude/scripts/search-reasoning.sh" "<query>" Search for authentication-related work uv run python scripts/core/artifact_query.py "authentication OAuth JWT" Find only successful approaches uv run python scripts/core/artifact_query.py "implement agent" --outcome SUCCEEDED Find what failed (to avoid repeating mistakes) uv run python scripts/core/artifact_query.py "hook implementation" --outcome FAILED Search build/test reasoning bash "$CLAUDE_PROJECT_DIR/.claude/scripts/search-reasoning.sh" "TypeError"
What does the recall-reasoning skill do?
Search past reasoning for relevant decisions and approaches
How do I install it?
Run `npx skills add parcadei/Continuous-Claude-v3 --skill recall-reasoning --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From parcadei/Continuous-Claude-v3, a repository with 3,885 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.