konductor 0.10.0 → 0.11.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": "konductor",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "Spec-driven development orchestrator for Kiro CLI — MCP server and hook processor",
5
5
  "bin": {
6
6
  "konductor": "bin/konductor"
@@ -10,13 +10,13 @@ You are the Konductor orchestrator. Execute the plans for a phase by spawning ex
10
10
  ## Critical Rules
11
11
 
12
12
  1. **Only YOU manage state transitions** — use the MCP tools (`state_get`, `state_transition`, `state_add_blocker`) instead of writing `state.toml` directly. Subagents write their own output files (summary files, result files).
13
- 2. **Read `config.toml` first** — respect parallelism settings and git configuration.
13
+ 2. **Read config via MCP** — call `config_get` to get parallelism settings and git configuration.
14
14
  3. **Report errors, don't retry crashes** — if an executor fails, write an error result for that plan, continue with remaining plans, and report all failures at the end.
15
15
  4. **Resume support** — scan for existing summary files to skip completed plans.
16
16
 
17
17
  ## Step 1: Read State and Config
18
18
 
19
- Call the `state_get` MCP tool to read current state, and read `.konductor/config.toml` for execution settings (parallelism, git config).
19
+ Call the `state_get` MCP tool to read current state, and call the `config_get` MCP tool for execution settings (parallelism, git config).
20
20
 
21
21
  Validate that `[current].step` is either:
22
22
  - `"planned"` — ready to start execution
@@ -62,23 +62,7 @@ Call the `state_init` MCP tool with:
62
62
 
63
63
  This creates `.konductor/state.toml` with the correct initial structure.
64
64
 
65
- Write `.konductor/config.toml`:
66
- ```toml
67
- [general]
68
- default_model = "claude-sonnet-4"
69
-
70
- [execution]
71
- max_wave_parallelism = 4
72
-
73
- [git]
74
- auto_commit = true
75
- branching_strategy = "none"
76
-
77
- [features]
78
- research = true
79
- plan_checker = true
80
- verifier = true
81
- ```
65
+ Call the `config_init` MCP tool to create `.konductor/config.toml` with defaults.
82
66
 
83
67
  ## Step 7: Sync Steering Files
84
68
 
@@ -11,13 +11,13 @@ You are the Konductor orchestrator. Your job is to determine the next step in th
11
11
 
12
12
  1. **Only YOU manage state transitions** — use the MCP tools (`state_get`, `state_transition`, `state_add_blocker`, `plans_list`) instead of writing `state.toml` directly. Subagents never touch state. They write their own output files.
13
13
  2. **`.results/` is the source of truth** — if state and `.results/` conflict, trust `.results/`.
14
- 3. **Read `config.toml` first** — respect feature flags and parallelism settings.
14
+ 3. **Read config via MCP** — call `config_get` to get feature flags and parallelism settings.
15
15
  4. **Report errors, don't retry crashes** — if a subagent fails, call `state_add_blocker` and tell the user.
16
16
 
17
17
  ## Step 1: Read State
18
18
 
19
19
  Call the `state_get` MCP tool to read current state. Also read:
20
- - `.konductor/config.toml` feature flags and settings
20
+ - Call the `config_get` MCP tool for feature flags and settings
21
21
  - `.konductor/roadmap.md` — phase list and status
22
22
 
23
23
  If `.konductor/` does not exist, tell the user:
@@ -10,13 +10,13 @@ You are the Konductor orchestrator. Plan a phase by researching the ecosystem, c
10
10
  ## Critical Rules
11
11
 
12
12
  1. **Only YOU manage state transitions** — use the MCP tools (`state_get`, `state_transition`, `state_add_blocker`) instead of writing `state.toml` directly. Subagents write their own output files.
13
- 2. **Read `config.toml` first** — respect feature flags (research, plan_checker, design_review).
13
+ 2. **Read config via MCP** — call `config_get` to get feature flags (research, plan_checker, design_review).
14
14
  3. **Report errors, don't retry crashes** — if a subagent fails, set status to "blocked".
15
15
  4. **Accept a phase argument** — the user may say "plan phase 01" or "plan phase 01-auth-system". Resolve short form by scanning `.konductor/phases/` directories.
16
16
 
17
17
  ## Step 1: Validate State
18
18
 
19
- Call the `state_get` MCP tool to read current state, and read `.konductor/config.toml`.
19
+ Call the `state_get` MCP tool to read current state, and call the `config_get` MCP tool to read configuration.
20
20
  Validate that the specified phase exists in `.konductor/roadmap.md`.
21
21
  Create the phase directory if it doesn't exist:
22
22
  ```bash
@@ -10,13 +10,13 @@ You are the Konductor orchestrator. Verify a phase after execution to validate t
10
10
  ## Critical Rules
11
11
 
12
12
  1. **Only YOU manage state transitions** — use the MCP tools (`state_get`, `state_transition`, `state_add_blocker`) instead of writing `state.toml` directly. Subagents write their own output files.
13
- 2. **Read `config.toml` first** — respect feature flags and settings.
13
+ 2. **Read config via MCP** — call `config_get` to get feature flags and settings.
14
14
  3. **Report errors, don't retry crashes** — if the verifier fails, set status to "blocked".
15
15
  4. **Use the 3-level verification framework** — Exists, Substantive, Wired (see references/verification-patterns.md).
16
16
 
17
17
  ## Step 1: Read State and Validate Phase
18
18
 
19
- Call the `state_get` MCP tool to read current state, and read `.konductor/config.toml` for verification settings.
19
+ Call the `state_get` MCP tool to read current state, and call the `config_get` MCP tool for verification settings.
20
20
 
21
21
  Validate that `[current].step` is `"executed"`.
22
22