@cr8rcho/alkahest 0.1.74 → 0.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -10,3 +10,15 @@ Quick rules:
|
|
|
10
10
|
- Append-only: a changed decision gets a NEW ADR with `Supersedes:`; the old one keeps its
|
|
11
11
|
body and gets `Status: Superseded by …`.
|
|
12
12
|
- Start the practice with **ADR-001 — architecture snapshot** of the current code.
|
|
13
|
+
|
|
14
|
+
## Tag vocabulary
|
|
15
|
+
|
|
16
|
+
Every ADR opens with `tags:` frontmatter, and **this table is the vocabulary** — pick from
|
|
17
|
+
it; extend it deliberately (add the row in the same commit as the ADR that needs it). On the
|
|
18
|
+
hosted `adr` note map each tag becomes a hub node, so the vocabulary's shape IS the map's
|
|
19
|
+
shape: one **surface** tag per ADR (the product/code area it touches) plus at most two
|
|
20
|
+
**arc** tags (a storyline several ADRs share), and keep each tag attached to roughly 3–12
|
|
21
|
+
ADRs. The first documentation pass seeds the surface rows from the codebase's actual areas.
|
|
22
|
+
|
|
23
|
+
| Tag | Kind | Meaning |
|
|
24
|
+
|---|---|---|
|
|
@@ -38,6 +38,13 @@ one **surface** tag (the area of the product it touches) plus at most two **arc*
|
|
|
38
38
|
node — keep every tag attached to roughly 3–12 ADRs so the map stays legible, and prefer
|
|
39
39
|
reusing an existing tag over inventing a new one.
|
|
40
40
|
|
|
41
|
+
**The vocabulary lives in `docs/decisions/README.md`'s tag table, and the repo owns it.**
|
|
42
|
+
On the bootstrap pass, seed it: derive 3–7 surface tags from the codebase's *actual* areas
|
|
43
|
+
(the folders/verticals you just documented), record them in the table, and tag ADR-001 from
|
|
44
|
+
that set. Afterwards, every ADR picks from the table; a genuinely new tag means adding its
|
|
45
|
+
row in the same commit. Arc tags are not invented up front — they emerge when several ADRs
|
|
46
|
+
turn out to share a storyline.
|
|
47
|
+
|
|
41
48
|
## Template
|
|
42
49
|
|
|
43
50
|
```markdown
|