skills/recall/SKILL.md
Query the memory system for relevant learnings from past sessions using semantic search.
npx skillsauth add rubicanjr/FinCognis recallInstall 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.
Query the memory system for relevant learnings from past sessions.
/recall <query>
/recall hook development patterns
/recall wizard installation
/recall TypeScript errors
When this skill is invoked, run:
cd $CLAUDE_OPC_DIR && PYTHONPATH=. uv run python scripts/core/recall_learnings.py --query "<ARGS>" --k 5
Where <ARGS> is the query provided by the user.
Present results as:
## Memory Recall: "<query>"
### 1. [TYPE] (confidence: high, id: abc123)
<full content>
### 2. [TYPE] (confidence: medium, id: def456)
<full content>
The user can specify options after the query:
--k N - Return N results (default: 5)--vector-only - Use pure vector search (higher precision)--text-only - Use text search only (faster)Example: /recall hook patterns --k 10 --vector-only
development
Goal-based workflow orchestration - routes tasks to specialist agents based on user goals
tools
Wiring Verification
development
Connection management, room patterns, reconnection strategies, message buffering, and binary protocol design.
development
Screenshot comparison QA for frontend development. Takes a screenshot of the current implementation, scores it across multiple visual dimensions, and returns a structured PASS/REVISE/FAIL verdict with concrete fixes. Use when implementing UI from a design reference or verifying visual correctness.