Stats
Actions
Tags
From aria-memory
Show the current status of the memory system: file counts, index size, last maintenance time, pending wrapups, etc.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aria-memory:memory-statusThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read and report memory system status:
Read and report memory system status:
cat "$HOME/.aria-memory/meta.json" 2>/dev/null || echo '{"error": "meta.json not found"}'
find "$HOME/.aria-memory/knowledge" -maxdepth 1 -name "*.md" 2>/dev/null | wc -l
echo "Active: $(find "$HOME/.aria-memory/impressions" -maxdepth 1 -name "*.md" 2>/dev/null | wc -l)"
echo "Archived: $(find "$HOME/.aria-memory/impressions/archived" -maxdepth 1 -name "*.md" 2>/dev/null | wc -l)"
wc -l "$HOME/.aria-memory/index.md" 2>/dev/null
Present a concise status dashboard like:
=== Aria Memory Status ===
Index entries: XX lines
Knowledge files: XX
Impressions: XX active / XX archived
Pending wrapups: XX
Last maintenance: YYYY-MM-DD HH:MM (XX hours ago)
Index version: XX
npx claudepluginhub ar8327/aria --plugin aria-memoryCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.