code-anchored-context 0.1.0 → 0.2.0

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.
Files changed (70) hide show
  1. package/.agents/skills/README.md +1 -1
  2. package/.agents/skills/{development-initiative-context → code-anchored-context}/SKILL.md +38 -38
  3. package/AGENTS.md +15 -13
  4. package/README.md +14 -14
  5. package/bin/code-anchored-context.js +125 -43
  6. package/{Development → context}/AGENTS.md +13 -13
  7. package/{Development → context}/README.md +29 -29
  8. package/{Development → context}/_templates/backlog-item.md +2 -2
  9. package/{Development → context}/_templates/initiative/README.md +9 -5
  10. package/{Development → context}/_templates/initiative/backlog.md +2 -2
  11. package/{Development → context}/_templates/initiative/plan.md +2 -2
  12. package/{Development → context}/_templates/initiative/release-doc-notes.md +6 -6
  13. package/{Development → context}/_templates/planned-initiative/README.md +10 -6
  14. package/{Development → context}/_templates/planned-initiative/release-doc-notes.md +5 -5
  15. package/{Development → context}/_templates/program/README.md +1 -1
  16. package/{Development → context}/_templates/program/backlog.md +1 -1
  17. package/{Development → context}/_templates/program/releases/v0_1_0.md +1 -1
  18. package/{Development → context}/_templates/release-context/README.md +6 -6
  19. package/{Development → context}/_templates/release-context/backlog.md +1 -2
  20. package/{Development → context}/_templates/release-transition.md +7 -7
  21. package/{Development → context}/backlog/README.md +3 -3
  22. package/{Development → context}/code-anchored-context-structure.md +16 -15
  23. package/{Development → context}/code-anchored-context-why.md +8 -8
  24. package/{Development → context}/code-anchored-context.html +20 -20
  25. package/{Development → context}/current.md +3 -3
  26. package/{Development → context}/giving-ai-agents-context-around-code.md +32 -32
  27. package/{Development → context}/programs/README.md +2 -2
  28. package/{Development → context}/releases/v0_1_0/README.md +6 -6
  29. package/{Development → context}/releases/v0_1_0/backlog.md +1 -1
  30. package/{Development → context}/terminology.md +22 -22
  31. package/{Documentation → docs}/Welcome.md +11 -6
  32. package/{Documentation → docs}/_authoring/README.md +6 -5
  33. package/{Documentation → docs}/_authoring/areas/README.md +1 -1
  34. package/{Documentation → docs}/_authoring/areas/_template.md +19 -5
  35. package/{Documentation → docs}/_authoring/terminology.md +1 -1
  36. package/docs/_authoring/workflow.md +210 -0
  37. package/docs/_templates/area/README.md +58 -0
  38. package/docs/_templates/area/features/feature-template.md +71 -0
  39. package/{Documentation → docs}/releases/index.md +3 -1
  40. package/package.json +19 -18
  41. package/Documentation/_authoring/workflow.md +0 -123
  42. package/Documentation/_templates/area/README.md +0 -20
  43. package/Documentation/_templates/area/features/feature-template.md +0 -29
  44. /package/{Development → context}/_templates/initiative/architecture.md +0 -0
  45. /package/{Development → context}/_templates/initiative/brief.html +0 -0
  46. /package/{Development → context}/_templates/initiative/decisions/ADR-0000-template.md +0 -0
  47. /package/{Development → context}/_templates/initiative/delivery.md +0 -0
  48. /package/{Development → context}/_templates/initiative/infrastructure.md +0 -0
  49. /package/{Development → context}/_templates/initiative/interface.md +0 -0
  50. /package/{Development → context}/_templates/initiative/operations.md +0 -0
  51. /package/{Development → context}/_templates/initiative/spec.md +0 -0
  52. /package/{Development → context}/_templates/initiative/testing.md +0 -0
  53. /package/{Development → context}/_templates/planned-initiative/architecture.md +0 -0
  54. /package/{Development → context}/_templates/planned-initiative/backlog.md +0 -0
  55. /package/{Development → context}/_templates/planned-initiative/decisions/ADR-0000-template.md +0 -0
  56. /package/{Development → context}/_templates/planned-initiative/delivery.md +0 -0
  57. /package/{Development → context}/_templates/planned-initiative/infrastructure.md +0 -0
  58. /package/{Development → context}/_templates/planned-initiative/interface.md +0 -0
  59. /package/{Development → context}/_templates/planned-initiative/operations.md +0 -0
  60. /package/{Development → context}/_templates/planned-initiative/plan.md +0 -0
  61. /package/{Development → context}/_templates/planned-initiative/spec.md +0 -0
  62. /package/{Development → context}/_templates/planned-initiative/testing.md +0 -0
  63. /package/{Development → context}/_templates/program/context.md +0 -0
  64. /package/{Development → context}/_templates/program/decisions/ADR-0000-template.md +0 -0
  65. /package/{Development → context}/_templates/program/planned-initiatives/.gitkeep +0 -0
  66. /package/{Development → context}/_templates/program/roadmap.md +0 -0
  67. /package/{Development → context}/_templates/release-context/initiatives/.gitkeep +0 -0
  68. /package/{Development → context}/backlog/items/.gitkeep +0 -0
  69. /package/{Development → context}/releases/v0_1_0/initiatives/.gitkeep +0 -0
  70. /package/{Documentation → docs}/.order +0 -0
@@ -2,8 +2,8 @@
2
2
 
3
3
  Status: Planned
4
4
  Target release: vNEXT
5
- Program: `Development/programs/<program-slug>/`
6
- Promotion target: `Development/releases/vNEXT/initiatives/<initiative-slug>/`
5
+ Program: `context/programs/<program-slug>/`
6
+ Promotion target: `context/releases/vNEXT/initiatives/<initiative-slug>/`
7
7
  Promoted to: None
8
8
  Promoted on: None
9
9
 
@@ -14,11 +14,15 @@ and what outcome it should produce.
14
14
 
15
15
  ## Touched Areas
16
16
 
17
- - `src/<area>/...`
18
- - `deploy/...`
19
- - `automation/...`
17
+ - Product or runtime code: `path/to/...`
18
+ - Interfaces, APIs, or contracts: `path/to/...`
19
+ - Tests or verification: `path/to/...`
20
+ - Delivery, CI/CD, build, or artifacts: `path/to/...`
21
+ - Infrastructure, IaC, or environment config: `path/to/...`
22
+ - Docs or release notes: `path/to/...`
20
23
 
21
- Remove entries that do not apply and add the real paths.
24
+ Remove entries that do not apply and add the real paths. Prefer naming the
25
+ delivery concern over assuming a specific folder layout.
22
26
 
23
27
  ## Current Source Of Truth
24
28
 
@@ -1,20 +1,20 @@
1
- # Release Documentation Notes
1
+ # Release Doc Notes
2
2
 
3
3
  Use this file to capture expected product-documentation impact while future
4
4
  work is being planned. When the planned initiative is promoted and later
5
5
  implemented, compare these notes against the final shipped behavior.
6
6
 
7
- Do not edit `Documentation/` from normal development work unless a human
7
+ Do not edit `docs/` from normal development work unless a human
8
8
  explicitly asks for a documentation refresh or a specific documentation fix.
9
9
 
10
10
  ## Expected Product Behavior Changes
11
11
 
12
12
  - None yet.
13
13
 
14
- ## Candidate Documentation Areas
14
+ ## Candidate Docs Areas
15
15
 
16
- - `Documentation/<Area>/README.md`
17
- - `Documentation/<Area>/features/<feature>.md`
16
+ - `docs/<Area>/README.md`
17
+ - `docs/<Area>/features/<feature>.md`
18
18
 
19
19
  ## QA Or Support Notes
20
20
 
@@ -59,5 +59,5 @@ this program but are not in the current release yet.
59
59
  a scoped delivery slice before the target release becomes current.
60
60
  - Keep release-scoped implementation history in the relevant release
61
61
  initiative.
62
- - Use `Development/backlog/items/` for isolated deferred items that do not
62
+ - Use `context/backlog/items/` for isolated deferred items that do not
63
63
  need a program.
@@ -3,7 +3,7 @@
3
3
  This backlog holds future work that belongs to the program as a durable
4
4
  multi-release effort.
5
5
 
6
- Use `Development/backlog/items/` instead for isolated deferred work that does
6
+ Use `context/backlog/items/` instead for isolated deferred work that does
7
7
  not need program-level context.
8
8
 
9
9
  Use `planned-initiatives/` instead when future work is already clear enough
@@ -5,7 +5,7 @@
5
5
  Link to the release-scoped initiative when one exists:
6
6
 
7
7
  ```text
8
- Development/releases/v0_1_0/initiatives/<initiative-slug>/
8
+ context/releases/v0_1_0/initiatives/<initiative-slug>/
9
9
  ```
10
10
 
11
11
  ## Scope
@@ -1,6 +1,6 @@
1
- # vNEXT Development Context
1
+ # vNEXT Context
2
2
 
3
- This folder contains development context for the `vNEXT` release.
3
+ This folder contains working context for the `vNEXT` release.
4
4
 
5
5
  ## Navigation
6
6
 
@@ -14,20 +14,20 @@ Create an initiative when work is non-trivial, behavior-changing,
14
14
  cross-project, release-significant, or likely to need future product
15
15
  documentation.
16
16
 
17
- Use `Development/_templates/initiative/` as the starting point.
17
+ Use `context/_templates/initiative/` as the starting point.
18
18
 
19
19
  ## Carry-Forward Rule
20
20
 
21
21
  If an initiative is part of a larger phased effort, link it to a program
22
- under `Development/programs/`.
22
+ under `context/programs/`.
23
23
 
24
24
  If isolated work is cut from scope but should be kept for later, create a
25
- backlog item under `Development/backlog/items/` and link it back to the
25
+ backlog item under `context/backlog/items/` and link it back to the
26
26
  originating initiative.
27
27
 
28
28
  ## Planned Initiative Promotion
29
29
 
30
30
  When this release becomes current, promote matching planned initiatives from
31
- `Development/programs/*/planned-initiatives/` into this release's
31
+ `context/programs/*/planned-initiatives/` into this release's
32
32
  `initiatives/` folder. Leave the planned initiative in place as historical
33
33
  planning context and update its status to `Promoted`.
@@ -1,6 +1,6 @@
1
1
  # vNEXT Backlog
2
2
 
3
- This file tracks release-level development context that is not yet captured
3
+ This file tracks release-level working context that is not yet captured
4
4
  by an initiative, plus a short summary of initiative progress once
5
5
  initiatives exist.
6
6
 
@@ -11,4 +11,3 @@ No backlog items recorded yet.
11
11
  ## Initiative Summary
12
12
 
13
13
  No initiatives registered yet.
14
-
@@ -1,23 +1,23 @@
1
1
  # Release Transition Checklist
2
2
 
3
- Use this checklist when changing `Development/current.md` to a new current
3
+ Use this checklist when changing `context/current.md` to a new current
4
4
  release.
5
5
 
6
6
  Target release: vNEXT
7
7
 
8
8
  ## Steps
9
9
 
10
- - [ ] Update `Development/current.md` to the target release.
11
- - [ ] Create `Development/releases/<target-release>/` from
12
- `Development/_templates/release-context/` if it does not exist.
10
+ - [ ] Update `context/current.md` to the target release.
11
+ - [ ] Create `context/releases/<target-release>/` from
12
+ `context/_templates/release-context/` if it does not exist.
13
13
  - [ ] Create `README.md`, `backlog.md`, and `initiatives/` for the target
14
14
  release if missing.
15
- - [ ] Scan `Development/programs/*/planned-initiatives/*/README.md` for
15
+ - [ ] Scan `context/programs/*/planned-initiatives/*/README.md` for
16
16
  `Target release: <target-release>`.
17
17
  - [ ] For each matching planned initiative, materialize it into:
18
18
 
19
19
  ```text
20
- Development/releases/<target-release>/initiatives/<initiative-slug>/
20
+ context/releases/<target-release>/initiatives/<initiative-slug>/
21
21
  ```
22
22
 
23
23
  - [ ] Update the promoted release initiative so it links back to the parent
@@ -26,7 +26,7 @@ Development/releases/<target-release>/initiatives/<initiative-slug>/
26
26
 
27
27
  ```md
28
28
  Status: Promoted
29
- Promoted to: `Development/releases/<target-release>/initiatives/<initiative-slug>/`
29
+ Promoted to: `context/releases/<target-release>/initiatives/<initiative-slug>/`
30
30
  Promoted on: YYYY-MM-DD
31
31
  ```
32
32
 
@@ -1,4 +1,4 @@
1
- # Development Backlog
1
+ # Context Backlog
2
2
 
3
3
  This folder stores isolated deferred work that was cut from a release
4
4
  initiative but should remain discoverable.
@@ -10,8 +10,8 @@ Use a backlog item when:
10
10
  - it does not need durable program-level context
11
11
  - it is not active in the current release
12
12
 
13
- Create items from `Development/_templates/backlog-item.md` and place them in
14
- `Development/backlog/items/`.
13
+ Create items from `context/_templates/backlog-item.md` and place them in
14
+ `context/backlog/items/`.
15
15
 
16
16
  When a backlog item is picked up later, do not move or rewrite the original
17
17
  item. Mark it as `Promoted` and link to the new release initiative.
@@ -1,37 +1,38 @@
1
1
  # Code-Anchored Context: The Structure
2
2
 
3
3
  This is the companion to the
4
- [reasoning article](code-anchored-context-why.md). It covers how development
4
+ [reasoning article](code-anchored-context-why.md). It covers how working
5
5
  context is laid out so both humans and agents can navigate it.
6
6
 
7
7
  ## Denormalize Navigation, Not Knowledge
8
8
 
9
- Agents and IDEs do not always open from the repo root they may start in
10
- `src/`, `deploy/`, or a nested app. If all guidance lives at the top, it gets
11
- missed. If each area keeps its own plans, cross-project work fragments.
9
+ Agents and IDEs do not always open from the repo root. They may start in
10
+ product code, CI/CD config, infrastructure code, generated artifacts, or a
11
+ nested app. If all guidance lives at the top, it gets missed. If each area
12
+ keeps its own plans, cross-project work fragments.
12
13
 
13
14
  > Denormalize navigation, not knowledge.
14
15
 
15
16
  Local `AGENTS.md` files point agents toward the right place. But plans, specs,
16
17
  ADRs, release context, testing strategy, delivery notes, and infrastructure
17
- context live centrally under `Development/`.
18
+ context live centrally under `context/`.
18
19
 
19
20
  ## The Core Model
20
21
 
21
- Vocabulary is captured in `Development/terminology.md`. The main containers:
22
+ Vocabulary is captured in `context/terminology.md`. The main containers:
22
23
 
23
24
  ```text
24
25
  Program Long-lived multi-release effort.
25
26
  Planned initiative A scoped future slice inside a program.
26
27
  Release initiative Active or historical work for a specific release.
27
- Development backlog item Isolated work cut from scope but worth preserving.
28
+ Context backlog item Isolated work cut from scope but worth preserving.
28
29
  Program release slice What a release contributes to a program.
29
30
  ```
30
31
 
31
32
  Each kind of context gets a home:
32
33
 
33
34
  ```text
34
- Development/
35
+ context/
35
36
  terminology.md
36
37
  current.md
37
38
  programs/
@@ -48,7 +49,7 @@ knowledge it preserves, not the tool that produced it.
48
49
  The main unit of active delivery:
49
50
 
50
51
  ```text
51
- Development/releases/<version>/initiatives/<initiative>/
52
+ context/releases/<version>/initiatives/<initiative>/
52
53
  README.md plan.md spec.md interface.md architecture.md
53
54
  testing.md delivery.md infrastructure.md operations.md
54
55
  backlog.md decisions/ release-doc-notes.md
@@ -84,7 +85,7 @@ Some work is bigger than one release. A program holds durable multi-release
84
85
  context:
85
86
 
86
87
  ```text
87
- Development/programs/<program>/
88
+ context/programs/<program>/
88
89
  README.md context.md roadmap.md backlog.md
89
90
  decisions/ planned-initiatives/ releases/
90
91
  ```
@@ -93,20 +94,20 @@ Future work that is clear enough to plan — but whose target release is not
93
94
  current yet — becomes a planned initiative:
94
95
 
95
96
  ```text
96
- Development/programs/<program>/planned-initiatives/<initiative>/
97
+ context/programs/<program>/planned-initiatives/<initiative>/
97
98
  ```
98
99
 
99
100
  When the target release becomes current, it is promoted into
100
- `Development/releases/<version>/initiatives/<initiative>/`. Promotion is
101
+ `context/releases/<version>/initiatives/<initiative>/`. Promotion is
101
102
  explicit; the original planned initiative stays as historical context.
102
103
 
103
- ## Development Backlog
104
+ ## Context Backlog
104
105
 
105
106
  Work cut from scope but worth preserving — when it doesn't justify a program or
106
107
  planned initiative — lives in:
107
108
 
108
109
  ```text
109
- Development/backlog/items/<originating-initiative>--<item>.md
110
+ context/backlog/items/<originating-initiative>--<item>.md
110
111
  ```
111
112
 
112
113
  Each item records where it came from, why it was deferred, future value, and
@@ -116,7 +117,7 @@ silently rewritten.
116
117
  ## Release Transitions
117
118
 
118
119
  Changing the current release is more than editing a pointer. When
119
- `Development/current.md` moves to a new release, agents should scan program
120
+ `context/current.md` moves to a new release, agents should scan program
120
121
  planned initiatives, promote items targeting the new release into the release
121
122
  folder, update links both ways, and preserve the originals as history.
122
123
 
@@ -13,19 +13,19 @@ That context usually exists — in chats, tickets, pull request comments,
13
13
  planning notes, and people's heads — but agents need it in a structured,
14
14
  discoverable form.
15
15
 
16
- ## Documentation vs Development
16
+ ## Docs vs Working Context
17
17
 
18
- This is why I separate **released product documentation** from **development
18
+ This is why I separate **released product documentation** from **working
19
19
  context**:
20
20
 
21
21
  ```text
22
- Documentation/ What shipped.
23
- Development/ What we are planning, building, deciding, testing,
22
+ docs/ What shipped.
23
+ context/ What we are planning, building, deciding, testing,
24
24
  shipping, hosting, deferring, and learning.
25
25
  ```
26
26
 
27
27
  Product documentation stays stable and release-accurate: it describes a known
28
- release, not an unfinished branch. Development context is allowed to evolve —
28
+ release, not an unfinished branch. Working context is allowed to evolve —
29
29
  it is where humans and agents work through ambiguity.
30
30
 
31
31
  ## The Principle
@@ -52,8 +52,8 @@ instead of reconstructing it from memory.
52
52
  ```mermaid
53
53
  flowchart LR
54
54
  Code["Codebase<br/>What exists"]
55
- Dev["Development/<br/>What is being planned, built, decided, tested, shipped, deferred"]
56
- Docs["Documentation/<br/>What shipped in a known release"]
55
+ Dev["context/<br/>What is being planned, built, decided, tested, shipped, deferred"]
56
+ Docs["docs/<br/>What shipped in a known release"]
57
57
  Agents["Agents and humans"]
58
58
 
59
59
  Agents --> Code
@@ -73,7 +73,7 @@ Code-Anchored Context is context continuity. It helps agents and humans answer:
73
73
  - What should become product documentation later?
74
74
  - What reasoning needs to survive a change of IDE, agent, or session?
75
75
 
76
- Code tells an agent *what exists*. Development context tells it *why* it
76
+ Code tells an agent *what exists*. Working context tells it *why* it
77
77
  exists, where it is going, what has been decided, and what was left for later.
78
78
 
79
79
  For the concrete folder layout, see the companion article,
@@ -490,7 +490,7 @@
490
490
  </div>
491
491
  <div class="connector">or defer to</div>
492
492
  <div class="node backlog">
493
- <strong>Development backlog item</strong>
493
+ <strong>Context backlog item</strong>
494
494
  <span>Isolated cut scope saved for later</span>
495
495
  </div>
496
496
  </div>
@@ -515,23 +515,23 @@
515
515
  <section id="why">
516
516
  <h2>Why This Exists</h2>
517
517
  <p class="section-intro">
518
- <code>Documentation/</code> is released product truth.
519
- <code>Development/</code> is working development truth. Code-Anchored
518
+ <code>docs/</code> is released product truth.
519
+ <code>context/</code> is working development truth. Code-Anchored
520
520
  Context keeps agent context, planning, and decisions visible without
521
521
  mixing in-progress thinking into released product documentation.
522
522
  </p>
523
523
  <div class="grid two">
524
524
  <div class="tile accent-release">
525
- <h3>Use <code>Development/</code> while work is forming</h3>
525
+ <h3>Use <code>context/</code> while work is forming</h3>
526
526
  <p>
527
527
  Put plans, specs, ADRs, backlog, implementation context, future
528
528
  phases, and release-doc notes here during normal development.
529
529
  </p>
530
530
  </div>
531
531
  <div class="tile accent-program">
532
- <h3>Use <code>Documentation/</code> only for shipped product docs</h3>
532
+ <h3>Use <code>docs/</code> only for shipped product docs</h3>
533
533
  <p>
534
- Product documentation remains release anchored. Development notes
534
+ Product documentation remains release anchored. Working context
535
535
  can feed it later through <code>release-doc-notes.md</code>.
536
536
  </p>
537
537
  </div>
@@ -548,7 +548,7 @@
548
548
  <div class="tile accent-program">
549
549
  <h3>Program</h3>
550
550
  <p>Cross-release parent effort with durable context, roadmap, phase history, and program-level ADRs.</p>
551
- <code class="path">Development/programs/&lt;program&gt;/</code>
551
+ <code class="path">context/programs/&lt;program&gt;/</code>
552
552
  </div>
553
553
  <div class="tile accent-planned">
554
554
  <h3>Planned initiative</h3>
@@ -577,13 +577,13 @@
577
577
  <div class="decision">
578
578
  <div class="question">Is this active in the current release?</div>
579
579
  <div class="answer">Use a release initiative. It is the delivery surface for the current release.</div>
580
- <div class="target"><code>Development/releases/&lt;current&gt;/initiatives/</code></div>
580
+ <div class="target"><code>context/releases/&lt;current&gt;/initiatives/</code></div>
581
581
  </div>
582
582
 
583
583
  <div class="decision">
584
584
  <div class="question">Does this span releases or phases?</div>
585
585
  <div class="answer">Use a program for durable context, roadmap, and program-level decisions.</div>
586
- <div class="target"><code>Development/programs/</code></div>
586
+ <div class="target"><code>context/programs/</code></div>
587
587
  </div>
588
588
 
589
589
  <div class="decision">
@@ -594,8 +594,8 @@
594
594
 
595
595
  <div class="decision">
596
596
  <div class="question">Was isolated work cut from scope?</div>
597
- <div class="answer">Use a development backlog item. Link it back to the originating initiative.</div>
598
- <div class="target"><code>Development/backlog/items/</code></div>
597
+ <div class="answer">Use a context backlog item. Link it back to the originating initiative.</div>
598
+ <div class="target"><code>context/backlog/items/</code></div>
599
599
  </div>
600
600
  </section>
601
601
 
@@ -605,7 +605,7 @@
605
605
  The same work can move through several containers as it becomes more
606
606
  concrete. Promotion is explicit and traceable.
607
607
  </p>
608
- <div class="timeline" aria-label="Development lifecycle">
608
+ <div class="timeline" aria-label="Context lifecycle">
609
609
  <div class="step">
610
610
  <span class="step-number">1</span>
611
611
  <h3>Plan the arc</h3>
@@ -637,7 +637,7 @@
637
637
  <section id="delivery-surface">
638
638
  <h2>Delivery Surface</h2>
639
639
  <p class="section-intro">
640
- Development context describes the whole delivery system, not only the
640
+ Working context describes the whole delivery system, not only the
641
641
  product code. The structure follows delivery concerns, not specific
642
642
  technologies or vendors.
643
643
  </p>
@@ -757,7 +757,7 @@
757
757
  <section id="release-transition">
758
758
  <h2>Release Transition</h2>
759
759
  <p class="section-intro">
760
- Changing <code>Development/current.md</code> is a workflow. The agent
760
+ Changing <code>context/current.md</code> is a workflow. The agent
761
761
  should materialize planned work for the new current release.
762
762
  </p>
763
763
  <table class="matrix">
@@ -801,19 +801,19 @@
801
801
  <div class="grid two">
802
802
  <div class="tile">
803
803
  <h3>For vocabulary</h3>
804
- <p><a href="terminology.md">Development/terminology.md</a></p>
804
+ <p><a href="terminology.md">context/terminology.md</a></p>
805
805
  </div>
806
806
  <div class="tile">
807
807
  <h3>For active release context</h3>
808
- <p><a href="current.md">Development/current.md</a></p>
808
+ <p><a href="current.md">context/current.md</a></p>
809
809
  </div>
810
810
  <div class="tile">
811
811
  <h3>For release transitions</h3>
812
- <p><a href="_templates/release-transition.md">Development/_templates/release-transition.md</a></p>
812
+ <p><a href="_templates/release-transition.md">context/_templates/release-transition.md</a></p>
813
813
  </div>
814
814
  <div class="tile">
815
815
  <h3>For agent behavior</h3>
816
- <p><a href="../.agents/skills/development-initiative-context/SKILL.md">development-initiative-context skill</a></p>
816
+ <p><a href="../.agents/skills/code-anchored-context/SKILL.md">code-anchored-context skill</a></p>
817
817
  </div>
818
818
  </div>
819
819
  </section>
@@ -821,8 +821,8 @@
821
821
 
822
822
  <footer>
823
823
  <div class="wrap">
824
- Static brief for the repository <code>Development/</code> context model.
825
- Product documentation still lives under <code>Documentation/</code> and
824
+ Static brief for the repository <code>context/</code> context model.
825
+ Product documentation still lives under <code>docs/</code> and
826
826
  follows its own release refresh rules.
827
827
  </div>
828
828
  </footer>
@@ -1,4 +1,4 @@
1
- # Current Development Context
1
+ # Current Context
2
2
 
3
3
  Current release: `v0_1_0`
4
4
 
@@ -26,7 +26,7 @@ Registered initiatives:
26
26
  - `releases/v0_1_0/initiatives/npm-installer-cli/` - npm initializer for
27
27
  installing this context template into existing projects.
28
28
 
29
- To start an initiative, copy `Development/_templates/initiative/` into
30
- `Development/releases/v0_1_0/initiatives/<initiative-slug>/`, then update the
29
+ To start an initiative, copy `context/_templates/initiative/` into
30
+ `context/releases/v0_1_0/initiatives/<initiative-slug>/`, then update the
31
31
  copied `README.md` first so agents have a clear entry point before editing the
32
32
  supporting files.