@sulhadin/orchestrator 1.7.0 → 1.7.1

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": "@sulhadin/orchestrator",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "AI Team Orchestration System — multi-role coordination for Claude Code",
5
5
  "bin": {
6
6
  "orchestrator": "bin/index.js"
@@ -103,8 +103,20 @@ as a CONCERN in context.md and continue.
103
103
 
104
104
  ## Context Persistence — `context.md`
105
105
 
106
- **After every phase completion**, update `context.md` in the milestone directory.
107
- This file allows you to resume if the terminal is closed and reopened.
106
+ Update `context.md` in the milestone directory at these moments:
107
+
108
+ | When | What to write |
109
+ |------|---------------|
110
+ | **Phase starts** | Current phase name, objective, plan |
111
+ | **Key decision made** | What was decided and why (e.g. "chose argon2 over bcrypt") |
112
+ | **Files created/modified** | Which files were touched and why |
113
+ | **Phase completes** | Commit message, result summary |
114
+ | **Error occurs** | What failed, why, current state |
115
+ | **User gives instruction** | What the user asked to change mid-phase |
116
+
117
+ This ensures that if the terminal closes at ANY point — even mid-phase — the
118
+ next `#start` can resume with full context. Don't wait until phase completion
119
+ to update; write incrementally as you work.
108
120
 
109
121
  ### context.md Format
110
122