forge-orkes 0.9.2 → 0.9.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.9.2",
3
+ "version": "0.9.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"
@@ -23,16 +23,21 @@ Structured conversation: approach, trade-offs, decisions. Clarity, not artifacts
23
23
 
24
24
  ## Progressive Persistence
25
25
 
26
- **Decisions persist immediately. This is a hard gate — not a guideline.**
26
+ > **HARD GATE NOT A GUIDELINE. NO EXCEPTIONS.**
27
+ > Write to `.forge/context.md` after EVERY confirmed decision, before asking the next question.
28
+ > If you reach convergence without having written each decision individually — you already violated this rule.
27
29
 
28
30
  After each user response that confirms a decision:
29
31
 
30
32
  1. **STOP** — do not continue the discussion
31
33
  2. **Write to disk** — append to `.forge/context.md` (create from template if missing)
34
+ - **Path is always `.forge/context.md`** — never `.forge/phases/*/context.md`, never inline memory
32
35
  3. **THEN** continue to the next question
33
36
 
34
37
  Never accumulate decisions in working memory. Never batch writes to convergence.
35
38
 
39
+ **Common failure mode:** Agent says "decisions live in conversation; planning writes context.md." This is WRONG. Discussing writes context.md. Planning reads it.
40
+
36
41
  ### Write Protocol
37
42
 
38
43
  **On first decision of the session:**