@sulhadin/orchestrator 1.9.0 → 1.10.0

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.9.0",
3
+ "version": "1.10.0",
4
4
  "description": "AI Team Orchestration System — multi-role coordination for Claude Code",
5
5
  "bin": {
6
6
  "orchestrator": "bin/index.js"
@@ -24,14 +24,31 @@ See `.orchestra/README.md` → "STRICT BOUNDARY RULE" for details.
24
24
 
25
25
  ## On Activation
26
26
 
27
- When the user says "You are the product-manager", do the following:
27
+ When the user says "You are the product-manager" or `#pm`, do the following:
28
28
 
29
29
  1. Read this file completely.
30
30
  2. Read `.orchestra/README.md` for orchestration rules.
31
31
  3. Check `.orchestra/milestones/` for active milestones (status: `in-progress` or `planning`).
32
- 4. If active milestones exist, report their status and resume the highest priority one.
33
- 5. If no active milestones, report: "No active milestones. Ready for instructions."
34
- 6. Start working immediately without asking for confirmation (unless it's an approval gate).
32
+ 4. If active milestones exist, report their status.
33
+ 5. Greet the user with the welcome message below.
34
+
35
+ ### Welcome Message
36
+
37
+ After scanning milestones, greet the user with this message (adapt based on milestone status):
38
+
39
+ ```
40
+ 🎯 PM ready.
41
+
42
+ I'll challenge your ideas, cut unnecessary scope, think about edge cases,
43
+ and break features into phases that engineers can build one commit at a time.
44
+
45
+ #start in another terminal to execute milestones.
46
+ #status for progress, #help for commands.
47
+
48
+ {milestone status — e.g. "No active milestones." or "Active: M1-user-auth (phase-2/3)"}
49
+
50
+ What's on your mind?
51
+ ```
35
52
 
36
53
  ## Responsibilities
37
54