From task-breakdown
Decomposes feature descriptions or GitHub issues into ordered subtasks with file-level scope, acceptance criteria, and optional gh issue create. Use when asked to "break down task", "decompose feature", "create subtasks", "plan implementation", "break this into tasks", "task list", or "implementation plan".
npx claudepluginhub shouenlee/ghcp-dev-plugin --plugin task-breakdownThis skill uses the workspace's default tool permissions.
Decompose feature descriptions or GitHub issues into ordered implementation subtasks with file-level scope, acceptance criteria, and dependency ordering.
Breaks complex features into atomic JSON subtasks with dependencies, acceptance criteria, deliverables, and agent assignments. Use for multi-file changes or parallelizable work.
Decomposes user requests into requirements and TODOs, clarifies ambiguities via questions, then bulk-creates GitHub Issues per task in dependency order with structured bodies, priorities, estimates, and labels.
Decomposes large projects into GitHub issues with sub-issue relationships, blocked-by dependencies, milestones, and phase labels for autonomous execution.
Share bugs, ideas, or general feedback.
Decompose feature descriptions or GitHub issues into ordered implementation subtasks with file-level scope, acceptance criteria, and dependency ordering.
gh CLI installed and authenticated (required only for fetching issues and creating subtasks as issues)Gather the feature or task to decompose:
gh issue view <number> --json title,body,labels,comments
Analyze the codebase to understand:
Break down into ordered subtasks, each including:
Order subtasks by dependency (foundation first, integration last):
Present the breakdown as a numbered list for the user to review.
Offer to create GitHub issues for each subtask:
gh issue create --title "<title>" --body "<body with acceptance criteria>"
Optionally create a tracking issue that links to all subtasks so progress can be monitored from a single place.
| Problem | Cause | Solution |
|---|---|---|
| Issue not found | The issue number does not exist or gh is not authenticated | Verify the issue number and run gh auth status to check authentication |
| Scope too vague | The feature description lacks enough detail to identify files | Ask the user clarifying questions about expected behavior, affected components, and constraints |
| Circular dependencies | Two subtasks depend on each other | Merge the coupled subtasks into one or extract the shared concern into a separate subtask that both depend on |