forge-orkes 0.80.3 → 0.80.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forge-orkes",
3
- "version": "0.80.3",
3
+ "version": "0.80.4",
4
4
  "description": "Set up the Forge meta-prompting framework for Claude Code in your project",
5
5
  "bin": {
6
6
  "create-forge": "./bin/create-forge.js"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "forge": {
3
- "version": "0.80.3",
3
+ "version": "0.80.4",
4
4
  "default_tier": "standard",
5
5
  "beads_integration": false,
6
6
  "context_gates": {
@@ -34,13 +34,19 @@ dev-source
34
34
  # Orchestration locks
35
35
  *.lock
36
36
 
37
- # Render-on-read derived registries (0.53.0). Regenerated at every `forge` boot
38
- # from their sources (state/index.yml ← state/milestone-*.yml; streams/active.yml
39
- # ← streams/*.yml + active milestones). Local cache only — never committed, so a
40
- # committed projection can never drift stale from its source. Without these
41
- # entries a fresh install would re-commit them.
37
+ # Render-on-read derived registries (0.53.0; context.md joined in 0.80.0/ADR-033).
38
+ # Regenerated at every `forge` boot from their sources (state/index.yml ←
39
+ # state/milestone-*.yml; streams/active.yml ← streams/*.yml + active milestones;
40
+ # context.md context/*.md joined against state/index.yml). Local cache only
41
+ # never committed, so a committed projection can never drift stale from its
42
+ # source. Without these entries a fresh install would re-commit them, and an
43
+ # upgrade would silently re-track context.md after a project migrated off the
44
+ # monolithic file (issue #46 — this line must ship canonically, not as a
45
+ # per-project manual edit, since this file is overwritten wholesale on every
46
+ # upgrade).
42
47
  state/index.yml
43
48
  streams/active.yml
49
+ context.md
44
50
 
45
51
  # Notion board id-binding cache (ADR-020 derived class) — forge-id → page-id, rebuilt
46
52
  # by query-self-heal; never committed (a committed copy would leak private Notion page IDs).
@@ -123,19 +123,23 @@ What is **not** repeatable is the untrack step below — do that once.
123
123
  git rm --cached .forge/context.md
124
124
  ```
125
125
 
126
- Add `.forge/context.md` to whichever gitignore file already lists
127
- `.forge/state/index.yml` and `.forge/streams/active.yml` grep for
128
- `index.yml` to find the right file (in this repo it's the root
129
- `.gitignore`, under the "Render-on-read derived registries" comment block;
130
- your project's may differ if it customized gitignore layout):
126
+ If your project uses the shipped `.forge/.gitignore` default (no custom
127
+ gitignore layout), a `create-forge` install/upgrade at 0.80.4+ already lists
128
+ `context.md` next to `state/index.yml` and `streams/active.yml` in that file
129
+ nothing to add by hand, and it's safe against a future upgrade overwriting it
130
+ (issue #46: before 0.80.4, `.forge/.gitignore` was wholesale re-synced from
131
+ the canonical shipped file on every upgrade, silently reverting a manual
132
+ addition here — the fix moved the line into the canonical source itself).
133
+
134
+ If your project customized gitignore layout (e.g. this repo's own root
135
+ `.gitignore`, not `.forge/.gitignore`), add `.forge/context.md` there by
136
+ hand, next to the other two derived-registry entries, matching their
137
+ existing comment block rather than starting a new one:
131
138
 
132
139
  ```bash
133
140
  grep -rn "index.yml" .gitignore .forge/.gitignore 2>/dev/null
134
141
  ```
135
142
 
136
- Add the line next to the other two derived-registry entries, matching their
137
- existing comment block rather than starting a new one.
138
-
139
143
  ### 3. Commit the migration output
140
144
 
141
145
  ```bash