@orchestrator-claude/cli 3.12.4 → 3.12.5
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/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -17,10 +17,15 @@ For any feature request, bug fix, or refactoring:
|
|
|
17
17
|
|
|
18
18
|
```
|
|
19
19
|
1. mcp__orchestrator-tools__detectWorkflow({ prompt: "user request" })
|
|
20
|
-
2. mcp__orchestrator-tools__startWorkflow({
|
|
21
|
-
3.
|
|
20
|
+
2. mcp__orchestrator-tools__startWorkflow({ type: "...", prompt: "..." })
|
|
21
|
+
3. MUST invoke orchestrator agent: Agent(subagent_type: "orchestrator")
|
|
22
|
+
4. After EVERY phase agent completes, MUST invoke orchestrator agent again
|
|
22
23
|
```
|
|
23
24
|
|
|
25
|
+
**MANDATORY:** The orchestrator agent coordinates ALL phase transitions. It calls `evaluateGate`, `advancePhase`, and `setPendingAction`. Do NOT call these tools directly from the main conversation. The ping-pong-enforcer hook will remind you after each sub-agent completes.
|
|
26
|
+
|
|
27
|
+
**Exceptions** (may be called directly): `detectWorkflow`, `startWorkflow`, `approveAction`, `completeWorkflow`, `getStatus`.
|
|
28
|
+
|
|
24
29
|
Workflow types: `feature_development`, `bug_fix`, `refactoring`, `emergency_debug`
|
|
25
30
|
|
|
26
31
|
## What Hooks Enforce Automatically
|
package/package.json
CHANGED
|
@@ -17,10 +17,15 @@ For any feature request, bug fix, or refactoring:
|
|
|
17
17
|
|
|
18
18
|
```
|
|
19
19
|
1. mcp__orchestrator-tools__detectWorkflow({ prompt: "user request" })
|
|
20
|
-
2. mcp__orchestrator-tools__startWorkflow({
|
|
21
|
-
3.
|
|
20
|
+
2. mcp__orchestrator-tools__startWorkflow({ type: "...", prompt: "..." })
|
|
21
|
+
3. MUST invoke orchestrator agent: Agent(subagent_type: "orchestrator")
|
|
22
|
+
4. After EVERY phase agent completes, MUST invoke orchestrator agent again
|
|
22
23
|
```
|
|
23
24
|
|
|
25
|
+
**MANDATORY:** The orchestrator agent coordinates ALL phase transitions. It calls `evaluateGate`, `advancePhase`, and `setPendingAction`. Do NOT call these tools directly from the main conversation. The ping-pong-enforcer hook will remind you after each sub-agent completes.
|
|
26
|
+
|
|
27
|
+
**Exceptions** (may be called directly): `detectWorkflow`, `startWorkflow`, `approveAction`, `completeWorkflow`, `getStatus`.
|
|
28
|
+
|
|
24
29
|
Workflow types: `feature_development`, `bug_fix`, `refactoring`, `emergency_debug`
|
|
25
30
|
|
|
26
31
|
## What Hooks Enforce Automatically
|