ワンクリックで
memory-recall
Search and recall memories from claude-mem
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search and recall memories from claude-mem
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Invoke and resume YAML-defined pipelines by name — /pipeline auto-dev runs the full release pipeline
Full Self Driving — autonomous release loop that processes all auto-dev-eligible GitHub issues until none remain, by repeatedly running /pipeline auto-dev then /homework.
On explicit /homework invocation, analyze the current and linked previous sessions, extract mistakes (찐빠), and report them via omcustom-feedback with a confirmation gate. Auto-activation on session cleanup/session-end signals is OPT-IN (default OFF) — requires an explicit project/user directive. Use when explicitly auditing recent work for harness gaps.
hada.io RSS feed monitoring for AI agent/harness articles with automated /scout analysis
Pre-action boundary checking — validates agent tool calls against declared capabilities and task contracts
Auto-detect project context and optimize harness — deactivate unused agents/skills, suggest missing experts, generate project profile
| name | memory-recall |
| description | Search and recall memories from claude-mem |
| scope | core |
| argument-hint | <query> [--recent] [--limit <n>] |
| user-invocable | true |
Search and recall relevant memories from claude-mem using semantic search.
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | yes* | Search query (*not required with --recent) |
--recent, -r Recall most recent memories
--limit, -l Maximum results to return (default: 5)
--verbose, -v Show full memory content
--date, -d Filter by date (YYYY-MM-DD)
1. Build semantic query
├── Prefix with "my-project"
├── Add user query terms
└── Include date if specified
2. Search claude-mem
└── chroma_query_documents
3. Format results
├── Sort by relevance score
├── Show summary for each
└── Provide memory IDs for detailed access
4. Present to user
effective_queries:
- "authentication flow" (topic-based)
- "2025-01-20 oauth" (temporal + topic)
- "decision jwt" (type + topic)
- "agent creation workflow" (semantic intent)
avoid:
- Single generic words like "code" or "task"
- Very long queries (keep it focused)
- Special characters or complex syntax
Default bias: recall > precision — it is easier to filter out irrelevant results (false positives) than to recover missed information (false negatives).
| Task Type | Bias | Recommended --limit | Rationale |
|---|---|---|---|
| Debugging / Investigation | High recall (16:1) | 10-15 | Cast wide net, prune later |
| Decision reference | Balanced | 5 (default) | Moderate breadth with manageable noise |
| Specific fact lookup | High precision | 3 | Narrow, targeted retrieval |
--date) to semantic queries for better precision without sacrificing recall[sys-memory-keeper:recall authentication]
Searching memories for: "my-project authentication"
Found 3 relevant memories:
[1] mem_abc123 (Score: 0.95)
Date: 2025-01-20
Summary: Implemented OAuth flow with Google provider
Tags: [authentication, oauth, google]
[2] mem_def456 (Score: 0.87)
Date: 2025-01-18
Summary: JWT token decision - RS256 algorithm
Tags: [authentication, decision, jwt]
[3] mem_ghi789 (Score: 0.82)
Date: 2025-01-15
Summary: Authentication architecture discussion
Tags: [authentication, architecture, planning]
Use "sys-memory-keeper:recall --verbose" for full content.
[sys-memory-keeper:recall authentication --verbose]
Searching memories for: "my-project authentication"
[1] mem_abc123 (Score: 0.95)
Date: 2025-01-20
Tags: [authentication, oauth, google]
Content:
## Session Summary
Date: 2025-01-20
### Tasks Completed
- Implemented OAuth flow with Google provider
- Added callback handler for OAuth response
- Created user session management
### Decisions Made
- Use passport.js for OAuth handling
Rationale: Well-maintained, good documentation
---
[2] mem_def456 (Score: 0.87)
...
[sys-memory-keeper:recall --recent]
Fetching recent memories for: my-project
[1] mem_xyz999 (Score: 1.00)
Date: 2025-01-24
Summary: Memory system Phase 1 implementation
Tags: [session, memory, phase1]
[2] mem_xyz888 (Score: 0.98)
Date: 2025-01-23
Summary: Agent identification rules update
Tags: [session, rules, enforcement]
...
[sys-memory-keeper:recall "nonexistent topic"]
Searching memories for: "my-project nonexistent topic"
No memories found matching your query.
Suggestions:
- Try different keywords
- Use broader search terms
- Check available memories with "sys-memory-keeper:recall --recent"