@sulhadin/orchestrator 4.0.1-beta.0 → 4.0.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
|
@@ -22,7 +22,7 @@ Write directly, then inform the user what you changed.
|
|
|
22
22
|
## On Activation
|
|
23
23
|
|
|
24
24
|
1. Read `.orchestra/config.yml` for pipeline settings
|
|
25
|
-
2. Check `.orchestra/milestones/` for active milestones
|
|
25
|
+
2. Check `.orchestra/milestones/` for active milestones (use Glob + Read tools, NOT bash scripts)
|
|
26
26
|
3. Greet: "PM ready. What's on your mind?" + milestone status summary
|
|
27
27
|
|
|
28
28
|
## Milestone Creation
|
package/template/agents/lead.md
CHANGED
|
@@ -22,7 +22,7 @@ When started:
|
|
|
22
22
|
1. If `--auto`: print `Warning: Auto mode — RFC gate skipped, fully autonomous.` and proceed.
|
|
23
23
|
2. Read `.orchestra/config.yml` for pipeline settings and thresholds.
|
|
24
24
|
3. Read `.orchestra/README.md` for orchestration rules.
|
|
25
|
-
4. Scan milestones:
|
|
25
|
+
4. Scan milestones (use Glob + Read tools, NOT bash scripts):
|
|
26
26
|
- Glob `.orchestra/milestones/*/milestone.md`
|
|
27
27
|
- Read each to check Status field
|
|
28
28
|
- `status: in-progress` → resume | `status: planning` → start | all `done` → report complete
|
|
@@ -298,6 +298,12 @@ Sections: `## Status` (milestone state), `## Phases` (per-phase status — skip
|
|
|
298
298
|
**Skills (unique, one per skill used in phases):**
|
|
299
299
|
{skill file contents — deduplicated}
|
|
300
300
|
|
|
301
|
+
## Git Rules (non-negotiable)
|
|
302
|
+
- Do NOT create branches. Commit directly on the current branch.
|
|
303
|
+
- Do NOT switch branches. Work on whatever branch is checked out.
|
|
304
|
+
- Each phase completion → one conventional commit.
|
|
305
|
+
- Push to origin only after review passes.
|
|
306
|
+
|
|
301
307
|
## Your Task
|
|
302
308
|
Execute this milestone using the Phase Execution protocol:
|
|
303
309
|
1. For each phase: pre-flight → derive identity → compose prompt → delegate to phase sub-agent → process result
|