[vibe](../README.md) > **ADR** # Architecture Decision Records > **Status**: ๐ŸŸข Active > **Last Updated**: 2026-06-23 > **Related**: [vibe/PRD](../PRD/README.md) ยท [vibe/Investigations](../investigations/README.md) > **Historical**: [doc/adr](../../doc/adr/README.md) (foundational infra) ยท [ansible/.../docs/adr](../../ansible/arcodange/factory/docs/adr/) (dated infra ADRs) `vibe/ADR/` is the **canonical home for Architecture Decision Records going forward**. The format is MADR-lite: one short, self-contained Markdown file per decision, focused on the *why* rather than the *how*. Use the [`_template.md`](_template.md) skeleton to start a new one. ## Where ADRs live There are three ADR locations in this repo. Only the first accepts new records; the other two are read-only history kept for context. | Location | Role | Accepts new ADRs? | | --- | --- | --- | | `vibe/ADR/` (this folder) | Canonical, MADR-lite, going forward | โœ… Yes | | [`doc/adr/`](../../doc/adr/README.md) | Foundational infrastructure ADRs (DNS, k3s, CI/CD, Vault, telegram-gateway auth) | โŒ Historical | | [`ansible/arcodange/factory/docs/adr/`](../../ansible/arcodange/factory/docs/adr/) | Dated infra ADRs (network, CI/CD, Longhorn PVC recovery, internal DNS) | โŒ Historical | When a new decision *supersedes* one of the historical records, write the new ADR here, set the old one's status note to `Superseded by ADR-NNNN`, and cross-link both ways. ## Rules - **One file per decision**, named `NNNN-kebab-title.md` (zero-padded sequence, e.g. `0001-safe-prod-like-environment.md`). - **The body is immutable once `Accepted`.** A decision is a historical fact: do not rewrite the Context/Decision/Consequences after acceptance. The *only* mutation allowed on an accepted ADR is its **status** (e.g. flipping `Accepted` โ†’ `Superseded`). - **Statuses**: `Proposed` (under discussion) โ†’ `Accepted` (decided, body frozen) โ†’ `Superseded` (replaced; points to the successor ADR). A `Proposed` ADR may still be edited freely. - **No-tombstone rule.** Each file reads as currently true. Never leave "previously X, now Y", changelog lines, or "updated to ..." notes inside an ADR โ€” git history is the audit trail. A superseded ADR keeps its original frozen body; the supersession is recorded only in its status line and the successor's References. - **PR cross-link both ways.** The ADR References section links the PR that introduced it; the PR description links back to the ADR. Keep links bidirectional. ## Index | # | Title | Status | Date | | --- | --- | --- | --- | | [0001](0001-safe-prod-like-environment.md) | Safe, production-like environment | ๐ŸŸข Accepted | 2026-06-23 | ## Rules to contribute 1. Copy [`_template.md`](_template.md) to `NNNN-kebab-title.md` using the next free sequence number and delete the top HTML-comment note. 2. Fill in the blockquote (Status/Date/Deciders), then Context, Decision, Consequences, Alternatives considered, QA & validation, References. 3. Open the ADR with status `Proposed`. Flip it to `Accepted` once the decision is settled โ€” and from that point treat the body as frozen. 4. Add a row to the Index table above (newest at the bottom to preserve chronological numbering). 5. In the PR that lands the ADR, link to the ADR file; in the ADR's References, link back to the PR. Bidirectional links are mandatory. 6. If this ADR supersedes a historical one in `doc/adr/` or the Ansible ADR folder, update the old record's status note and cross-reference both directions.