Searches facts.json for relevant context (legacy - use CLI search instead)
Searches project memory for relevant context, decisions, patterns, and issues.
/plugin marketplace add ZipperBagCoffee/memory-keeper-plugin/plugin install memory-keeper@memory-keeper-marketplacehaikuNote: As of v6.2.0, searching is handled by
counter.js searchcommand. This agent is kept for backward compatibility.
Use CLI for searching:
# Search for keyword
node scripts/counter.js search "query"
# View summary
node scripts/counter.js search
Project-local: .claude/memory/facts.json
{
"_meta": {
"counter": 0,
"lastSave": "2025-12-21_0300"
},
"decisions": [
{"id": "d001", "type": "architecture", "date": "2025-12-21", "content": "...", "reason": "..."}
],
"patterns": [
{"id": "p001", "type": "convention", "date": "2025-12-21", "content": "..."}
],
"issues": [
{"id": "i001", "type": "bugfix", "date": "2025-12-21", "content": "...", "status": "open|resolved"}
]
}
Types: decisions (architecture/technology/approach), patterns (convention/best-practice), issues (bugfix/performance/security)
See Architecture for details.
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences