Agent skill

recall-reasoning

Search past reasoning for relevant decisions and approaches

parcadei3,879★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill recall-reasoning --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: .claude/skills/recall-reasoning/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,885
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to Use
  2. Usage
  3. Primary: Artifact Index (rich context)
  4. Secondary: Reasoning Files (build attempts)
  5. Examples
  6. What Gets Searched
  7. Interpreting Results
  8. Process
  9. No Results?
Commands it runs
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"
More from Continuous-Claude-v3
All skills →
About this skill
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.

Keep going