From aiagentminder
Capture, review, and promote backlog items
How this skill is triggered — by the user, by Claude, or both
Slash command
/aiagentminder:backlogThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Capture future work items quickly, review the backlog, or promote items to the roadmap.
Capture future work items quickly, review the backlog, or promote items to the roadmap.
All file I/O goes through backlog-capture.sh — never read or edit BACKLOG.md directly.
The user's input will indicate one of three modes:
The user wants to record a future work item. Parse their intent into:
defect, feature, spike, or choresession)Then run:
backlog-capture.sh add <type> "<title>" "<source>"
If the type is ambiguous, pick the best match — don't ask. Use these heuristics:
defectspikefeaturechoreIf the user provides multiple items at once, run add for each one.
Optionally, if the user provided context beyond a title, also run:
backlog-capture.sh detail <id> "<context>"
Report the assigned ID(s) back to the user.
The user wants to see and assess the current backlog. Run:
backlog-capture.sh list
backlog-capture.sh count
Present the items grouped by type. For each item older than 30 days (compare the Added date to today), flag it as stale.
Suggest promotions: items that align with the current roadmap phase or upcoming sprint work are good candidates. Items that have been stale for 60+ days should be considered for dropping.
The user wants to move a backlog item to the roadmap or into a sprint. Run:
backlog-capture.sh promote <id>
The script outputs the removed row. Use the row data to:
/aiagentminder:revise mechanics to add the item to the appropriate phase in docs/strategy-roadmap.md."Add to the backlog: investigate whether hooks can replace the debug-checkpoint rule"
→ Mode A. Run: backlog-capture.sh add spike "Investigate whether hooks can replace debug-checkpoint rule" "session"
"Review the backlog"
→ Mode B. List all items, group by type, flag stale items.
"Promote B-003 to the roadmap for v5.0"
→ Mode C. Run promote, then apply /aiagentminder:revise to add to the v5.0 section.
"I noticed the error message when config is missing is unclear, and also we should add monorepo detection"
→ Mode A, two items. Run add twice:
backlog-capture.sh add defect "Unclear error message when config is missing" "session"
backlog-capture.sh add feature "Add monorepo detection" "session"
npx claudepluginhub lwalden/aiagentminder --plugin aiagentminderGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.