From backlog
Break down a goal into actionable tasks with dependencies, priorities, and optional specs. Use when the user wants to plan work, decompose a feature, or create a task breakdown.
How this skill is triggered — by the user, by Claude, or both
Slash command
/backlog:planThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Break down the given goal into actionable tasks. The goal is: "$ARGUMENTS"
Break down the given goal into actionable tasks. The goal is: "$ARGUMENTS"
Understand the goal — analyze what "$ARGUMENTS" requires. Read relevant code, configs, and docs in the codebase to understand the current state.
Decompose into tasks — create a logical breakdown of work items. Each task should be:
Create tasks — for each task, use task_add with:
project set to a logical groupingpriority based on urgency and importance (H for blockers, M for core work, L for nice-to-have)tags for categorization (e.g., frontend, backend, testing, docs)depends to express ordering constraints (use UUIDs from previously created tasks)scheduled if the task shouldn't start until a certain dateWrite specs for complex tasks — for any task that needs detailed requirements or context (anything that wouldn't fit in 500 chars), use task_doc_write to attach a markdown document explaining:
Present the plan — show the created tasks in dependency order with their IDs, descriptions, and priorities. Highlight the first task(s) that can be started immediately (not blocked).
npx claudepluginhub backloghq/backlog --plugin backlogCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.