From jot
This skill should be used when the user asks to "review my notes", "triage my jot notes", "go through my notes", "check my notes", "what notes do I have", "review notes for [project]", "/jot:review", or wants to go through their pending jot notes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jot:reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guided triage session through pending notes. Discuss, refine, and act on items captured via `/jot:note`.
Guided triage session through pending notes. Discuss, refine, and act on items captured via /jot:note.
Notes captured mid-workflow via /jot:note are intentionally brief. Provide a dedicated session to:
The plugin root is the directory containing skills/, docs/, and .claude-plugin/. All file paths below are relative to the plugin root.
docs/notes.md/jot:review # Review all pending notes
/jot:review [project] # Review pending notes for a specific project/topic
Read docs/notes.md and identify all entries with **Status:** pending.
If a project/topic argument was provided, filter to only notes matching that project (case-insensitive).
If no pending notes exist (or none match the filter), inform the user:
"No pending notes to review. Use
/jot:note [context]to capture ideas."
If filtered and no matches but other pending notes exist:
"No pending notes for '[project]'. There are N other pending notes. Run
/jot:reviewto see all."
Show a brief overview of all matching pending notes:
Pending notes: N items [for project X]
| # | Date | Project | Category | Summary |
|---|------|---------|----------|---------|
| 001 | 2026-02-15 | aqimo | reminder | Update CLAUDE.md for soft paywall |
| 002 | 2026-02-15 | devcoffee | improvement | Add topic filtering to note review |
| ... | ... | ... | ... | ... |
Start from the top, or pick a specific note number.
For each pending note, present:
Then ask the user:
"What would you like to do with this note?"
Options to present:
Act:
actioned with a resolution noteRefine:
docs/notes.md (Expanded, Project, Category)Defer:
pendingDismiss:
dismissed with a brief reasonAfter processing all pending notes (or when the user wants to stop), provide a summary:
Review session complete:
- Actioned: N notes
- Deferred: N notes
- Dismissed: N notes
- Remaining pending: N notes
Actions taken:
- [List of specific actions performed]
Notes progress through these statuses:
pending — Awaiting review (set by /jot:note)actioned — Implemented or addressed (set during review)dismissed — Not relevant or already resolved (set during review)npx claudepluginhub itsdevcoffee/devcoffee-agent-skills --plugin jotCaptures ideas and brain dumps into an Obsidian Inbox, surfaces buried ideas from the vault, and promotes daily note ideas to permanent notes.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.