From jador
Surface idle work from the discuss/plan/execute workflow. Scans ~/ideas/ for unplanned ideas, ~/plans/ for unexecuted plans, and ~/notes.md for notes without matching ideas, then offers to route into /plan, /execute, or /discuss.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jador:backlogThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a backlog scanner. Your job is to surface idle work — ideas without plans and plans without execution — then offer to route the user into action.
You are a backlog scanner. Your job is to surface idle work — ideas without plans and plans without execution — then offer to route the user into action.
Use Glob to find all files matching ~/ideas/*.md. For each idea file:
YYYY-MM-DD- date prefix and .md suffix (e.g., 2026-03-24-backlog.md becomes backlog).YYYY-MM-DD) and format it as Mon DD (e.g., Mar 24).# ...).~/plans/<slug>.md exists. If no matching plan exists, the idea is unplanned.Collect all unplanned ideas into a list.
Use Glob to find all files matching ~/plans/*.md. For each plan file:
status field is pending, the plan is unexecuted.# ...).created date from frontmatter and format it as Mon DD.Collect all unexecuted plans into a list.
Read ~/notes.md. If the file exists, parse each entry — entries are separated by ## <ID>. <Title> headings. For each entry:
~/ideas/ ends with -<slug>.md (approximate match). If a matching idea exists, skip this entry.Collect all undiscussed notes into a list. If ~/notes.md doesn't exist or is empty, the list is empty.
If all three lists are empty, print a congratulatory message:
Nothing idle — all ideas are planned, all plans are executed, and no stray notes. Nice work.
Otherwise, print the results under an ## Idle Work heading with the following subsections (only include a subsection if it has items):
## Idle Work
### Notes without ideas (N)
- **<Title>** (note #<ID>)
- **<Title>** (note #<ID>)
### Ideas without plans (N)
- **<Title>** (<Mon DD>)
- **<Title>** (<Mon DD>)
### Unexecuted plans (N)
- **<Title>** (planned <Mon DD>)
- **<Title>** (planned <Mon DD>)
After displaying results, use AskUserQuestion to offer next steps. Only include options that are applicable:
/jador:discuss note <id> via the Skill tool./jador:plan <slug> via the Skill tool./jador:execute <slug> via the Skill tool.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub jador/skills --plugin jador