원클릭으로
recall-search
Search Recall memory using FTS5 full-text search across all tables
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Search Recall memory using FTS5 full-text search across all tables
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Add a structured memory record to Recall — breadcrumb, decision, or learning
Run health checks on all Recall memory subsystems — database, MCP, hooks, embeddings
Flush current session to Recall database and capture a Library of Alexandria entry
Browse and search the Library of Alexandria — curated knowledge entries with extracted wisdom
Show recent Recall memory records across all tables or a specific table
Scout an unfamiliar codebase — memory-first repo map, key paths, tests, risks, and next steps, with a strict sensitive-data boundary
| name | recall-search |
| description | Search Recall memory using FTS5 full-text search across all tables |
Search across all Recall memory tables (messages, LoA entries, decisions, learnings, breadcrumbs) using SQLite FTS5 full-text search. Supports AND, OR, NOT operators, prefix matching, exact phrases, hard table filtering, and soft table biasing.
recall search "<query>"
Arguments:
<query> (required): Search query — use the user's argument textOptions:
-p <project> — Filter by project name-t <table> — Hard-filter to one table: messages, loa, decisions, learnings, breadcrumbs--bias-type <table> — Softly boost one table without filtering other matches. Same values as -t.-l <n> — Max results (default: 20)--show-provenance — Show Record Provenance for every result (by default only unknown provenance is flagged)# Search all memory
recall search "kubernetes deployment"
# Search decisions only (hard filter)
recall search "database choice" -t decisions
# Prefer decisions first, but still show matching learnings/messages/etc.
recall search "database choice" --bias-type decisions
# Filter by project
recall search "auth middleware" -p my-api
# Exact phrase with limit
recall search '"rate limiting strategy"' -l 5
# FTS5 operators
recall search "webpack OR vite" -t learnings
# Rule of thumb: use -t when you want ONLY that table; use --bias-type when you want that table first.