بنقرة واحدة
recall-add
Add a structured memory record to Recall — breadcrumb, decision, or learning
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Add a structured memory record to Recall — breadcrumb, decision, or learning
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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
Search Recall memory using FTS5 full-text search across all tables
| name | recall-add |
| description | Add a structured memory record to Recall — breadcrumb, decision, or learning |
Manually add a structured record to the Recall memory database. Three record types are available: breadcrumbs (context notes), decisions (architectural choices), and learnings (problem/solution pairs). Use the user's request text as the record content.
# Breadcrumb — quick context note
recall add breadcrumb "<content>"
# Decision — architectural or process decision
recall add decision "<content>" --why "reasoning"
# Learning — problem and solution pair
recall add learning "<problem>" "<solution>"
Breadcrumb options:
-p <project> — Project name-c <category> — Category: context, note, todo, reference-i <n> — Importance 1-10 (default: 5)Decision options:
-p <project> — Project name-w, --why <text> — Why this decision was made-a, --alternatives <text> — Alternatives consideredLearning options:
-p <project> — Project name-t, --tags <tags> — Comma-separated tags--prevention <text> — How to prevent in future# Breadcrumb with high importance
recall add breadcrumb "User prefers dark mode in all UIs" -p myproject -i 8
# Decision with reasoning
recall add decision "Use TypeScript over Python" --why "Type safety, team preference" -p myproject
# Learning with prevention
recall add learning "Port conflict on 4000" "Kill process or change port" --prevention "Use dynamic port allocation"
# Tagged learning
recall add learning "bun:sqlite uses \$param syntax" "Not :param like better-sqlite3" -t "bun,sqlite,gotcha"