From clawlike-code
Grep across .clawlike/sessions/ for episodic recall. Usage = /claw search <query>
How this skill is triggered — by the user, by Claude, or both
Slash command
/clawlike-code:searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The user wants to search past session transcripts for: $ARGUMENTS
The user wants to search past session transcripts for: $ARGUMENTS
Run a grep across .clawlike/sessions/*.md for the query above. Be flexible — match case-insensitively, show ~3 lines of context around each hit, and prefer recent sessions if the query is ambiguous.
grep -i -r -A 3 -B 1 --include='*.md' "$ARGUMENTS" .clawlike/sessions/ | head -60
Summarise findings in 2-3 sentences. If nothing matches, say so honestly. If many matches, surface the 3 most useful (recent + topical) by filename.
npx claudepluginhub domvinyard/clawlike-code --plugin clawlike-codeCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.