Skip to main content
ClaudeWave
Skill196 repo starsupdated 3d ago

woz-recall

**woz-recall** enables semantic search across past Claude Code sessions to retrieve previously used commands, solutions, and conversation context. Use it when the user asks to recall prior work with phrases like "remember when," "last time," or "how did we," or trigger it with /woz-recall to surface relevant information from earlier interactions without manual scrolling through conversation history.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/WithWoz/wozcode-plugin /tmp/woz-recall && cp -r /tmp/woz-recall/skills/woz-recall ~/.claude/skills/woz-recall
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Session Recall

Use the `Recall` MCP tool to search past sessions semantically:

```
mcp__plugin_woz_code__Recall({ query: "<what the user is looking for>" })
```

Pass the user's query directly — it can be vague ("that deploy command") or specific ("harbor run terminal-bench"). The tool returns ranked results from past conversations with full context.

Present results clearly: show the key information (commands, explanations, solutions) and note when/where it came from. Focus on what's actionable — the user wants the answer, not a summary of metadata.

If the `Recall` tool returns a "disabled" message, recall has been turned off in settings. Tell the user they can re-enable it with `/woz-settings` → `recall true` (takes effect immediately).