From claude-memory
Use this skill when the user says "triage inbox", "clean up inbox", "sort the inbox", "/claude-memory:triage-inbox", or when a reflect or wrap-up run finds more than 5 notes in 00-inbox/ and auto-invokes it. Presents one action (promote / merge / link / discard) per inbox note for batch approval, then executes approved actions. <example> Context: Inbox has accumulated 8 captures over the week. user: "triage inbox" assistant: "Loading all inbox notes and proposing one action each." <commentary>Trigger phrase matches — invoke this skill, not reflect.</commentary> </example>
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-memory:triage-inboxThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Propose one action per note in `00-inbox/` and execute approved actions.
Propose one action per note in 00-inbox/ and execute approved actions.
ls "${CLAUDE_VAULT:-$HOME/obsidian-vault}/00-inbox/"
If empty, report "Inbox empty — nothing to triage." and exit.
For each file, read first 20 lines (frontmatter + opening prose) to classify.
Allowed actions:
type or inferred topic), upgrade capture-tier frontmatter to curated-tier. Rename to YYYY-MM-DD-slug.md if not already in that shape.git mv.[[wikilinks]] (no move).git rm. Reasons: stale, superseded, noise, duplicate.Challenge each proposal:
Table: file | action | target (if move) | rationale. Ask: "Execute all as shown? (yes / edit / skip)". edit drops to per-item.
Use git mv for moves (preserves history). Use git rm for discards.
Stage the specific files moved/deleted (no git add -A). Commit:
git commit -m "vault: triage — <N> promoted, <M> merged, <K> discarded"
Summarize: counts by action, any contradictions found, remaining inbox size.
npx claudepluginhub arianjad/claude-memory --plugin claude-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.