From agentkits-memory
Implements 3-layer memory search workflow to recall past work, decisions, errors, and project history token-efficiently via layered functions.
npx claudepluginhub aitytech/agentkits-memory --plugin agentkits-memoryThis skill uses the workspace's default tool permissions.
Use this skill when:
Recalls past work, decisions, error solutions, and project history via a token-efficient 3-layer memory search workflow (search, timeline, details).
Searches claude-mem's persistent cross-session memory database using MCP tools in 3-step workflow: index search, timeline context, detail fetch. For recalling prior sessions.
Manages AI memories: saves decisions/patterns/facts with categories/tags, searches context, lists/deletes entries, rescans project architecture via MCP tools and /remember /forget.
Share bugs, ideas, or general feedback.
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 call