← Teams and process guides

How to use SpecDD in RFC or design-review workflows

How-To Teams and process Advanced 1171012HOWTO-1171012

HOWTO-1171012Teams and processAdvanced

This guide shows you how to use spec-driven development in RFC or design-review workflows.

RFCs are good for alternatives, tradeoffs, approval, and broad design discussion. SpecDD specs are good for the durable local contracts that implementation and review should follow after the decision is accepted.

Short answer

Keep design exploration in the RFC. When a decision becomes actionable, update the relevant .sdd specs with accepted behavior, ownership, dependencies, boundaries, tasks, and Done when criteria. Review those specs before implementation. The RFC can link to specs, but implementation should be driven by reviewed local specs, not by a long design document.

When to use this guide

Use this guide when:

Steps

1. Use RFCs for decisions and tradeoffs

Keep the RFC responsible for:

These are valuable design-review artifacts, but they are often too broad to serve as day-to-day implementation authority.

2. Use specs for accepted local contracts

After a decision is accepted, express durable local rules in .sdd specs:

Spec: Itinerary Storage

Purpose:
  Persist itinerary changes through the trip storage boundary.

Owns:
  ./trip-storage.js
  ./trip-storage.test.js

Must:
  Save itinerary changes through the storage adapter.

Must not:
  Write browser storage directly from itinerary behavior.

Done when:
  Storage adapter behavior is covered by a check.

The spec is the implementation contract. The RFC explains why the team chose it.

3. Draft specs during design review

For major changes, include draft spec snippets in the RFC or design review:

Reviewers can catch missing authority and boundary problems before implementation starts.

4. Review authority and boundaries

Before accepting the design, check:

This turns design review into actionable implementation guidance.

The RFC should link to the relevant specs or pull requests.

Specs may reference durable external context when needed, but avoid making the RFC the only place where implementation rules live. If a rule must guide future code, put the rule in the owning spec.

Use .specdd/bootstrap.project.md to describe where RFCs or design documents live for the project.

6. Implement from accepted specs

After approval, use implementation prompts that name the work:

Implement the Itinerary Storage adapter task.

Do not ask agents to implement from the entire RFC when the accepted behavior can be captured in local specs.

Common mistakes

How to verify the result

The RFC-to-SpecDD workflow worked when:

← Teams and process guides