← ClaudeAtlas

backloglisted

Capture, review, and promote backlog items
lwalden/AIAgentMinder · ★ 4 · Code & Development · score 65
Install: claude install-skill lwalden/AIAgentMinder
# /aiagentminder:backlog - Backlog Management 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. --- ## Determine the Mode The user's input will indicate one of three modes: ### A) Capture (default) The user wants to record a future work item. Parse their intent into: - **type**: `defect`, `feature`, `spike`, or `chore` - **title**: one-line summary - **source**: where the idea came from (default: `session`) Then run: ```bash backlog-capture.sh add <type> "<title>" "<source>" ``` If the type is ambiguous, pick the best match — don't ask. Use these heuristics: - Bug, broken, error, regression → `defect` - Investigate, evaluate, research, explore → `spike` - Add, build, support, enable → `feature` - Clean up, update, migrate, rename → `chore` If the user provides multiple items at once, run `add` for each one. Optionally, if the user provided context beyond a title, also run: ```bash backlog-capture.sh detail <id> "<context>" ``` Report the assigned ID(s) back to the user. ### B) Review The user wants to see and assess the current backlog. Run: ```bash 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