PluginBench
Skill
Pass
Audit score 90

brief-to-tasks

julianoczkowski/designer-skills

Break design briefs into ordered, independently buildable tasks using vertical slices.

What is brief-to-tasks?

Converts a design brief into a prioritized markdown checklist of vertical-slice tasks that can be built and verified independently. Use this when you need to plan implementation order, create a task breakdown from a brief, or establish what to build first.

  • Reads design briefs and explores existing codebase to understand components, tokens, and conventions
  • Breaks work into vertical slices—each task includes structure, styling, and interaction together
  • Orders tasks by dependencies, visual priority, and risk to surface problems early
  • Generates a markdown checklist saved as TASKS.md in the design folder
  • Classifies components as reuse-as-is, needs-modification, or new-to-create

How to install brief-to-tasks

npx skills add https://github.com/julianoczkowski/designer-skills --skill brief-to-tasks
Claude Code
Cursor
Windsurf
Cline

How to use brief-to-tasks

  1. 1.Ensure a design brief exists at .design/<feature-slug>/DESIGN_BRIEF.md (or describe what you're building if none exists)
  2. 2.Run the skill—it will scan your codebase for existing components, tokens, pages, and conventions
  3. 3.Review the generated TASKS.md checklist in your .design folder
  4. 4.Start building tasks in order; each task is independently buildable and verifiable

Use cases

Good for
  • Planning the build order for a new feature or page from a design brief
  • Breaking down a complex UI into independently reviewable tasks
  • Identifying foundational work (tokens, layout shells) before page-specific components
  • Surfacing high-risk or uncertain pieces early in the build sequence
  • Creating a shared task list for team handoff or progress tracking
Who it's for
  • Product designers planning implementation with developers
  • Frontend developers organizing feature work from design specs
  • Design systems teams breaking down new component work
  • Teams needing a structured build order for features

brief-to-tasks FAQ

What if I don't have a design brief file?

Describe what you're building in natural language and the skill will create tasks from your description.

Can tasks be built in parallel?

Yes—the skill marks dependencies explicitly. Tasks without dependencies can be built simultaneously.

Should I include setup or file structure as tasks?

No. The skill only creates vertical slices (buildable UI pieces), not infrastructure setup.

How does the skill decide task order?

It prioritizes dependencies first, then visual prominence (so you validate aesthetics early), then risk (hard/uncertain pieces before everything else is built around them).

What format is the output?

A markdown checklist saved as TASKS.md in the same .design/<feature-slug>/ folder as your design brief.

Full instructions (SKILL.md)

Source of truth, from julianoczkowski/designer-skills.


name: brief-to-tasks description: Break a design brief into an ordered checklist of independently buildable tasks using vertical slices. Saves as a markdown checklist. Use when user wants to break down work, create tasks from a brief, plan implementation order, or mentions "tasks" or "breakdown".

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.

Example prompts

  • "Break the brief into tasks"
  • "What should I build first?"
  • "Create a task list from the design brief"
  • "Plan the build order for this feature"

Process

  1. 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.

  2. Explore the existing codebase to understand what is already built. Scan specifically for:

    • Component directories: components/, ui/, shared/ and list every component by name
    • Existing pages/views: what is already built that this feature must coexist with
    • Token/theme files: tokens.css, globals.css, Tailwind config, theme providers
    • File naming conventions: kebab-case, PascalCase, how files are organized (by feature, by type)
    • Test files: if tests exist alongside components, new tasks should include test expectations
    • Package.json dependencies: what UI libraries, animation libraries, and icon sets are already installed
    • Classify each relevant component as: will be reused as-is, needs modification, or does not exist yet. Only components that need modification or creation get their own tasks.
  3. Break the work into vertical slices. Each task should:

    • Be independently buildable (no task should block another unless noted).
    • Include structure, styling, and interaction in a single task (not "build HTML" then "add CSS" then "add JS" as separate tasks).
    • Be verifiable: you can look at the result and confirm it matches the brief.
    • Be small enough to complete in a single session.
  4. Order tasks by:

    • Dependencies first: foundational elements (tokens, layout shells, shared components) before page-specific work.
    • Visual priority: the most prominent UI element early, so the user can validate the aesthetic direction before investing in details.
    • Risk first: the hardest or most uncertain piece early, so problems surface before everything else is built around them.
  5. Save the task list as TASKS.md in the same .design/<feature-slug>/ subfolder as the design brief.

Task List Template

# 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.

Rules

  • Every task must reference whether it reuses, modifies, or creates components.
  • Never create a task that is only "set up the project" or "create the file structure." Those are not vertical slices.
  • If the brief specifies an aesthetic philosophy, note it in the first build task so the visual direction is established immediately.
  • Group related tasks but do not nest them more than one level deep. Flat lists are easier to work through.