← Work with SpecDD skills guides

How to manage tasks across specs (specdd-task)

How-To Work with SpecDD skills Intermediate 1091010HOWTO-1091010

HOWTO-1091010Work with SpecDD skillsIntermediate

This guide shows you how to use specdd-task to manage Tasks entries across SpecDD specs in a spec-driven development workflow.

Tasks are local implementation guidance. They help order work, but they do not override Must, Must not, Forbids, inherited constraints, or write authority.

Short answer

Use specdd-task when an agent should find, add, interpret, organize, or update Tasks entries. The agent should focus on task-bearing specs that apply to the requested scope, treat parent tasks as planning context unless targeted directly, update status only in the currently targeted spec, and mark [x] only after the work and relevant checks are complete.

When to use this guide

Use this guide when:

Steps

1. Choose the task scope

Use a focused prompt:

List open Itinerary tasks.

or:

Update the Itinerary validation task status.

The scope should name the spec, feature, or task in human terms.

2. Find task-bearing specs

The agent should find specs that apply to the requested scope, not every Tasks section in the repository.

For a local feature, the relevant tasks are usually in the nearest local spec. Parent tasks can provide planning context, but they are not automatically actionable in child specs unless the user targets them directly.

3. Keep tasks local and actionable

Good task:

Tasks:
  [ ] Add missing-place validation.

Too broad:

Tasks:
  [ ] Improve all trip planning behavior.

Invalid if inherited rules forbid it:

Tasks:
  [ ] Write itinerary data directly to browser storage.

If a task cannot be completed inside the local Owns or Can modify boundary, revise the task or create a reviewed spec update.

4. Use the right task state

SpecDD supports these task states:

[ ] open
[x] done
[X] done
[-] skipped
[!] blocked
[?] needs decision

Use them deliberately:

5. Update only the targeted spec

If the request targets the Itinerary spec, update the Itinerary task status only.

Do not complete unrelated tasks in parent specs, sibling specs, or nearby files just because the implementation touched them. A task is local to the spec where it appears.

6. Report status changes and blockers

A good specdd-task report includes:

Example

Before:

Tasks:
  [ ] Add missing-place validation.
  [?] Confirm whether duplicate itinerary places are allowed.
  [!] Decide how save failures should be shown.

After implementing and checking validation:

Tasks:
  [x] Add missing-place validation.
  [?] Confirm whether duplicate itinerary places are allowed.
  [!] Decide how save failures should be shown.

Only the completed and verified task changed.

Common mistakes

How to verify the result

Task management worked when:

← Work with SpecDD skills guides