From nickcrew-claude-ctx-plugin
Tracks tasks via Backlog.md CLI for agent workflows: creates deferred issues during implementation, files audit findings, manages priorities/labels, and completes assigned tasks.
npx claudepluginhub nickcrew/claude-cortexThis skill uses the workspace's default tool permissions.
Task tracking system optimized for agent workflows via Backlog.md CLI.
Manages backlog items across GitHub Issues, Linear, and Beads backends via unified CREATE/LIST/UPDATE/COMPLETE operations. Configure task_management in .agents.yml for team workflows with dependencies.
Manages backlog items synced to GitHub Issues via MCP tools. Create, list, view, update, close, resolve, groom, and sync without direct file edits.
Defines conventions for TASKS.md files: structure with optional sections, status symbols ([ ] todo, [/] ongoing, [x] done, [-] backlog), task descriptions, and testable acceptance criteria. Use for creating, editing, updating tasks or tracking progress.
Share bugs, ideas, or general feedback.
Task tracking system optimized for agent workflows via Backlog.md CLI.
File P2-P4 issues discovered during implementation. Use label remediation for deferred review findings.
Create structured issues from security/audit reviews. Link dependencies and assign to milestones.
priority-review)Read task fully, understand all fields, follow acceptance criteria and definition of done.
backlog task edit 42 -s "In Progress" -a @myselfbacklog task edit and backlog task create only. Never edit files directly.--plain flag when reading: backlog task 42 --plain, backlog task list --plain| Scenario | Include Plan? | Reason |
|---|---|---|
| Deferred review issues | ✅ YES | You have audit/review context now |
| Reporting found issues | ❌ NO | Implementer will plan when they work it |
| Explicitly asked to plan work | ✅ YES (detailed) | Required per instruction |
| Regular task work | After claiming, before coding | Don't add at creation, add after starting |
Never update an existing plan unless explicitly instructed.
Unsure about P0-P1? Label with priority-review and let user decide.
# Create issue (required: title, type label, priority)
backlog task create "Title" -d "Description" -l bug -p 2 --ac "AC 1"
# Work a task
backlog task edit 42 -s "In Progress" -a @myself
backlog task 42 --plain # Read everything
backlog task edit 42 --check-ac 1 # Mark AC complete
backlog task edit 42 --append-notes "Progress here"
backlog task edit 42 --final-summary "PR description"
backlog task edit 42 -s Done
# Search and filter
backlog task list -s "To Do" --plain
backlog search "topic" --plain
See references/cli-reference.md for complete command reference.
See references/priority-labels.md for priority and labeling guidelines.
See references/issue-creation-guide.md for detailed issue creation patterns.