Store agent-generated content for long-term memory
Stores agent-generated content like research and analysis to disk and indexes it for semantic and full-text search, enabling long-term memory.
When to use
Use this when an AI agent needs to preserve synthesized information, findings, or analysis for future retrieval and knowledge base building.
How to invoke
manual via /store or auto-invoked when relevant
npx claudepluginhub cwensel/arcaneum<file|-for-stdin> --collection <name> [options]Store agent-generated content (research, analysis, synthesized information) with rich metadata. Content is persisted to disk for re-indexing and full-text retrieval, then indexed to Qdrant for semantic search.
Tip: For full search capabilities (semantic + full-text), first create a corpus with
/arc:corpus create Memory --type markdown, then use this command with --collection Memory.
The stored content will be searchable via both /arc:search semantic and /arc:search text.
Storage Location: ~/.local/share/arcaneum/agent-memory/{collection}/
Options:
Examples:
/store analysis.md --collection Memory --title "Security Analysis" --category security
/store - --collection Research --title "Findings" --tags "research,important"
Execution:
arc store $ARGUMENTS
How It Works:
-)~/.local/share/arcaneum/agent-memory/{collection}/{date}_{agent}_{slug}.mdPersistence:
Content is always persisted for durability. This enables:
Filename Format:
YYYYMMDD_agent_slug.md (e.g., 20251030_claude_security-analysis.md)
Use Cases:
Default Model:
Related Commands:
--type markdown)Implementation: