claudecode/skills/recall/SKILL.md
Search Awareness memory for past implementations, decisions, or relevant context.
npx skillsauth add edwin-hao-ai/awareness-sdk 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.
Search Awareness Memory for relevant context.
Query: $ARGUMENTS
Try MCP tools first (awareness_recall).
If MCP tools are NOT available, use Bash to call the local daemon HTTP API directly:
# F-053: single-parameter — daemon picks scope/mode/detail/weights.
curl -s -X POST http://localhost:37800/mcp -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"awareness_recall","arguments":{"query":"why did we pick pgvector?","limit":10}}}'
The response is JSON-RPC: result.content[0].text contains the tool output as JSON string.
REWRITE the user query into a complete natural-language question with context. Example: "auth bug" → "authentication bug in login flow, JWT token handling, session management"
Call awareness_recall with ONE parameter:
query: the rewritten natural-language questionlimit: default 6, max 30token_budget: 5K (default, card-heavy) / 30K (mixed) / 60K+ (raw-heavy)Daemon auto-routes across memories + knowledge cards + workspace graph and picks the right detail level for your token budget. You do NOT need to choose scope, recall_mode, detail, ids, or weights.
Present results clearly:
Rules:
testing
Setup Awareness Memory — check local daemon, authenticate via browser, and configure credentials.
tools
Initialize memory session, load project context, and create a session_id for tracking.
tools
Save current session progress to Awareness memory as a batch of structured steps.
tools
End the current Awareness memory session and save final progress.