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
|
@@ -34,13 +34,19 @@ dev-source
|
|
|
34
34
|
# Orchestration locks
|
|
35
35
|
*.lock
|
|
36
36
|
|
|
37
|
-
# Render-on-read derived registries (0.53.0
|
|
38
|
-
# from their sources (state/index.yml ←
|
|
39
|
-
# ← streams/*.yml + active milestones
|
|
40
|
-
#
|
|
41
|
-
#
|
|
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
|
-
|
|
127
|
-
|
|
128
|
-
`
|
|
129
|
-
|
|
130
|
-
|
|
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
|