@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
@@ -12,5 +12,5 @@
12
12
  /**
13
13
  * CLI version
14
14
  */
15
- export declare const CLI_VERSION = "3.12.4";
15
+ export declare const CLI_VERSION = "3.12.5";
16
16
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -24,7 +24,7 @@ import { OutputFormatter } from './formatters/OutputFormatter.js';
24
24
  /**
25
25
  * CLI version
26
26
  */
27
- export const CLI_VERSION = '3.12.4';
27
+ export const CLI_VERSION = '3.12.5';
28
28
  /**
29
29
  * Main CLI function
30
30
  */
@@ -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({ workflowType: "...", prompt: "..." })
21
- 3. Follow the nextStep returned hooks handle the rest automatically
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestrator-claude/cli",
3
- "version": "3.12.4",
3
+ "version": "3.12.5",
4
4
  "description": "Orchestrator CLI - Project scaffolding, migration and management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -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({ workflowType: "...", prompt: "..." })
21
- 3. Follow the nextStep returned hooks handle the rest automatically
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