agentsclimarketplace

Planning and task breakdown

Skill charlieviettq/awesome-agent-skill/.cursor/skills/core-workflow/planning-and-task-breakdown

Curated skill pack for LLM agents in engineer and science workflow (Cursor & Claude ready).

Install
npx -y skills add charlieviettq/awesome-agent-skill --skill planning-and-task-breakdown

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Decompose specs into small, ordered tasks with acceptance criteria and verification steps. Use when you have requirements and need an implementable plan or task list. Triggers: "break down tasks", "implementation plan", "task breakdown", "plan mode".

SKILL.md

2.1 KB, as published. Nobody here has run it

Planning and task breakdown

When to use

  • Spec or requirements exist but work is too large to start
  • Need dependency order, checkpoints, or parallelization notes

When not to use

  • Obvious single-file change with clear acceptance criteria

Process

  1. Read-only plan mode — map codebase patterns; no code yet
  2. Dependency graph — foundations before dependents
  3. Vertical slices — prefer end-to-end thin slices over horizontal layers
  4. Write tasks — each with acceptance + verify + files + size
  5. Checkpoints — every 2-3 tasks, full verify

High-quality plan checklist

  • Each task is small enough to complete in one focused session (roughly 2–15 minutes of agent work)
  • Files: lists exact paths to create or edit (no "update relevant files")
  • Verify: includes full command and expected outcome (exit code, key output line)
  • No placeholders like "add tests here" or "implement logic"
  • For behavior changes, note which test should fail first (TDD) when applicable

Task template

## Task N: [Title]
**Acceptance:** ...
**Verify:** `command` -> expected result
**Depends on:** ...
**Files:** path/to/file.ext, path/to/test.ext
**Size:** S | M | L (L = split further)

Sizing

SizeFilesGuidance
S1-2One endpoint or component
M3-5One feature slice
L5+Split before implementing

Parallelization

  • Safe parallel: independent slices, docs, tests for stable code
  • Sequential: migrations, shared contracts, shared state

Output

Plan doc with phases, risks, open questions. Human approval before implementation.

Related

spec-driven-development, incremental-implementation, verify-before-done

Plan quality patterns inspired by obra/superpowers (MIT).

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.