From mnemon
Show the status of your Mnemon knowledge library — total sources, breakdown by origin and domain, recent additions. Use when the user asks "how many sources", "library status", "what have I captured", "knowledge dashboard", or wants an overview of their library.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mnemon:source-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show a summary of the knowledge library: total sources, breakdown by status/origin/domain, and recent additions.
Show a summary of the knowledge library: total sources, breakdown by status/origin/domain, and recent additions.
/source-status
No parameters needed.
Call the gateway status action:
${MNEMON_HOME:-~/Mnemon}/bin/knowledge-gateway.sh status
The gateway outputs a formatted dashboard. Display it to the user.
If additional detail is needed (the gateway shows basics), you can augment with:
# Count by origin
source ${MNEMON_HOME:-~/Mnemon}/bin/mnemon-config.sh && load_config
for f in "$VAULT_PATH"/Sources/*/extract.md; do
grep -m1 '^origin:' "$f" 2>/dev/null
done | sort | uniq -c | sort -rn
# Count by domain
for f in "$VAULT_PATH"/Sources/*/extract.md; do
grep -m1 '^domains:' "$f" 2>/dev/null
done | tr '[],' '\n' | sed 's/^[[:space:]]*//' | grep -v '^$' | grep -v '^domains:' | sort | uniq -c | sort -rn
=== Mnemon Knowledge Library ===
Vault: <path>
Total: N sources
By status: extracted: X | captured: Y
By origin: url: A | youtube: B | audio: C | text: D
By domain: learning: E | career: F | ...
Recent (last 5):
2026-04-04_abc12345 — Article Title
2026-04-03_def67890 — Video Title
...
npx claudepluginhub dkushnikov/mnemon-plugin --plugin mnemonCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.