From agentkits-memory
Implements 3-layer memory search workflow to recall past work, decisions, errors, and project history token-efficiently via layered functions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentkits-memory:memory-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when:
Use this skill when:
Before searching, check if memories exist:
memory_status()
If the database is empty, skip recall and inform the user.
memory_search(query="your search term")
decision, pattern, error, context, observationdateStart="2025-01-01", dateEnd="2025-12-31"orderBy="relevance" (default), "date_asc", "date_desc"memory_timeline(anchor="MEMORY_ID")
memory_details(ids=["ID1", "ID2"])
For a fast overview of everything known about a topic:
memory_recall(topic="authentication")
This returns a grouped summary. Follow up with memory_details for specifics.
Save important information for future sessions:
memory_save(content="...", category="decision", tags="auth,security", importance="high")
Categories: decision, pattern, error, context, observation
Importance: low, medium, high, critical
memory_search (Layer 1), never jump to memory_detailsmemory_details to 3-5 IDs per callnpx claudepluginhub aitytech/agentkits-memory --plugin agentkits-memorySearches persistent cross-session memory database (claude-mem) to retrieve past work, decisions, and context. Use when user asks about prior sessions or solutions.
Searches stored memories and decisions using MCP tools to answer questions about past learnings, architectural choices, patterns, and project context like 'what testing framework did we decide on?' or 'ESM import issues?'
Searches and retrieves memories from Cortex persistent memory using WRRF retrieval. Use for past decisions, patterns, bugs, or architecture context.