diff --git a/.gitea/workflows/sdd-gate.yml b/.gitea/workflows/sdd-gate.yml index 697eca90..310f961b 100644 --- a/.gitea/workflows/sdd-gate.yml +++ b/.gitea/workflows/sdd-gate.yml @@ -3,7 +3,7 @@ name: SDD Gate # Spec-Driven Development quality gate. Runs on PRs. # # This project is ISSUE-ONLY: a feature's spec lives in its Gitea issue body, not a committed -# spec.md (see ADR-041). So CI cannot lint the spec text itself — instead it validates the SDD +# spec.md (see ADR-042). So CI cannot lint the spec text itself — instead it validates the SDD # artifacts that DO live in git: the RTM, any committed OpenAPI contract, and the constitution. # # The first two jobs are NON-BLOCKING for now (continue-on-error) so the team can adopt the @@ -11,7 +11,7 @@ name: SDD Gate # # TODO: flip rtm-check and contract-validate to BLOCKING (remove `continue-on-error: true`) # once SDD adoption has settled — target: after the first 5 features have shipped through -# the workflow. Tracked in ADR-041. +# the workflow. Tracked in ADR-042. on: pull_request: diff --git a/.specify/adrs/README.md b/.specify/adrs/README.md index 190052f7..9d179f18 100644 --- a/.specify/adrs/README.md +++ b/.specify/adrs/README.md @@ -10,7 +10,7 @@ This project already keeps a mature, permanent ADR archive at next free `NNN` (verify against the directory on disk — parallel worktrees make issue-body numbers stale). Template: [`../templates/adr.md`](../templates/adr.md). - **The decision to adopt SDD itself** → - [`docs/adr/041-sdd-adoption.md`](../../docs/adr/041-sdd-adoption.md) (this is the + [`docs/adr/042-sdd-adoption.md`](../../docs/adr/042-sdd-adoption.md) (this is the "ADR-000" the SDD scaffold calls for, numbered to fit the existing sequence). - **Feature-local decisions** that are only meaningful within one in-flight feature → beside that feature's spec, e.g. diff --git a/.specify/constitution.md b/.specify/constitution.md index e1dfcdb9..23512ff7 100644 --- a/.specify/constitution.md +++ b/.specify/constitution.md @@ -3,7 +3,7 @@ **Version:** v1.0.0 **Status:** Ratified **Date:** 2026-06-13 -**Adoption ADR:** [docs/adr/041-sdd-adoption.md](../docs/adr/041-sdd-adoption.md) +**Adoption ADR:** [docs/adr/042-sdd-adoption.md](../docs/adr/042-sdd-adoption.md) > The non-negotiable rules of this project. Every spec, every PR, and every AI agent is > bound by this document. Rules here are deliberately few and absolute — guidance and @@ -73,7 +73,7 @@ When this constitution changes, the author MUST, in the same PR: -1. Bump the **Version** header per the semantic rule above and record the change in [docs/adr/041-sdd-adoption.md](../docs/adr/041-sdd-adoption.md)'s revision log (or a superseding ADR for a MAJOR change). +1. Bump the **Version** header per the semantic rule above and record the change in [docs/adr/042-sdd-adoption.md](../docs/adr/042-sdd-adoption.md)'s revision log (or a superseding ADR for a MAJOR change). 2. Re-read and reconcile every file that restates a rule changed here: `CLAUDE.md`, `COLLABORATING.md`, `CODESTYLE.md`, `CONTRIBUTING.md`, `.specify/AGENTS.md`, and the affected `.specify/personas/*.md` checklists. 3. Update any `.specify/templates/*` section that quotes a changed rule. 4. Run the `constitution-diff` CI job locally (or read its PR comment) and resolve every file it lists. diff --git a/SPEC_DRIVEN_DEVELOPMENT.md b/SPEC_DRIVEN_DEVELOPMENT.md index a97af88d..a11875f2 100644 --- a/SPEC_DRIVEN_DEVELOPMENT.md +++ b/SPEC_DRIVEN_DEVELOPMENT.md @@ -3,7 +3,7 @@ How we turn a feature idea into merged, traceable code in this repo. SDD layers a uniform, machine-readable front-end onto the workflow we already run (Gitea issues → branch/PR → multi-persona review → red/green TDD). It does not replace any of that — see -[ADR-041](./docs/adr/041-sdd-adoption.md) for the why. +[ADR-042](./docs/adr/042-sdd-adoption.md) for the why. - **The rules** live in [`.specify/constitution.md`](./.specify/constitution.md) (humans) and [`.specify/AGENTS.md`](./.specify/AGENTS.md) (AI agents, every invocation). @@ -179,7 +179,7 @@ issue body for you via the Gitea API.) when a project-wide rule genuinely changes. Bump the semantic version (MAJOR = rule removed/weakened, MINOR = rule added/tightened, PATCH = wording), run the §6 Sync Impact review, and let the `constitution-diff` CI job list the files to reconcile. Record the bump - in ADR-041's revision log (or a superseding ADR for MAJOR). + in ADR-042's revision log (or a superseding ADR for MAJOR). - **AGENTS.md** — keep it under 200 lines. It cross-references the constitution; it must never duplicate or contradict it. - **ADRs** — project-wide/irreversible decisions go in [`docs/adr/`](./docs/adr/) (next free diff --git a/docs/adr/041-sdd-adoption.md b/docs/adr/042-sdd-adoption.md similarity index 95% rename from docs/adr/041-sdd-adoption.md rename to docs/adr/042-sdd-adoption.md index a93d31bb..cb3235eb 100644 --- a/docs/adr/041-sdd-adoption.md +++ b/docs/adr/042-sdd-adoption.md @@ -1,11 +1,12 @@ -# ADR-041 — Adopt Spec-Driven Development (SDD) +# ADR-042 — Adopt Spec-Driven Development (SDD) **Status:** Accepted **Date:** 2026-06-13 **Issue:** SDD integration (docs/sdd-integration branch) -> This is the "ADR-000" the SDD scaffold refers to, numbered 041 to fit the existing archive -> sequence rather than starting a parallel one. See [`.specify/adrs/README.md`](../../.specify/adrs/README.md). +> This is the "ADR-000" the SDD scaffold refers to, numbered 042 to fit the existing archive +> sequence (041 was taken by the Renovate runner-setup ADR merged in parallel). See +> [`.specify/adrs/README.md`](../../.specify/adrs/README.md). ## Context