From designer-skills
Breaks a design brief into an ordered checklist of independently buildable vertical-slice tasks, saved as a markdown file. Useful for planning implementation order or creating tasks from a brief.
How this skill is triggered — by the user, by Claude, or both
Slash command
/designer-skills:brief-to-tasksThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill turns a design brief into an ordered, buildable task list. Each task is a vertical slice: a piece of UI that can be built, reviewed, and verified on its own.
This skill turns a design brief into an ordered, buildable task list. Each task is a vertical slice: a piece of UI that can be built, reviewed, and verified on its own.
Read the design brief. Look for .design/*/DESIGN_BRIEF.md. If multiple subfolders exist, use the most recently modified one, or ask the user which feature they are working on. Also check for INFORMATION_ARCHITECTURE.md and a tokens file in the same subfolder. If none exist, ask the user to describe what they are building.
Explore the existing codebase to understand what is already built. Scan specifically for:
components/, ui/, shared/ and list every component by nametokens.css, globals.css, Tailwind config, theme providersBreak the work into vertical slices. Each task should:
Order tasks by:
Save the task list as TASKS.md in the same .design/<feature-slug>/ subfolder as the design brief.
# Build Tasks: [Feature/Page Name]
Generated from: .design/<feature-slug>/DESIGN_BRIEF.md
Date: [date]
## Foundation
- [ ] **[Task name]**: [One sentence describing what to build and what "done" looks like]. _Reuses: [existing components/tokens if any]._
- [ ] **[Task name]**: [Description]. _New component._
## Core UI
- [ ] **[Task name]**: [Description]. _Depends on: [task name if any]._
- [ ] **[Task name]**: [Description].
## Interactions & States
- [ ] **[Task name]**: [Description]. Covers: [list of states, e.g., hover, loading, error, empty].
- [ ] **[Task name]**: [Description].
## Responsive & Polish
- [ ] **[Task name]**: [Description]. Breakpoints: [which ones].
- [ ] **[Task name]**: Accessibility pass. [Specific checks from the brief].
## Review
- [ ] **Design review**: Run /design-review against the brief.
npx claudepluginhub julianoczkowski/designer-skills --plugin designer-skillsBreaks technical designs into hierarchical, sequenced coding tasks with dependencies, files/tests specs, and strategies like Foundation-First or Feature-Slice.
Generates actionable implementation tasks from product specs and architecture documents. Handles project context, monorepo checks, and effort recommendations.
Decomposes specs into ordered, verifiable tasks with acceptance criteria using vertical slicing and dependency graphs. Use for large tasks, scope estimation, or parallel agent work.