konductor 0.12.0 → 0.12.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/agents/konductor-code-reviewer.json +2 -1
- package/agents/konductor-design-reviewer.json +2 -1
- package/agents/konductor-executor.json +2 -1
- package/agents/konductor-planner.json +2 -1
- package/agents/konductor-researcher.json +2 -1
- package/agents/konductor-verifier.json +2 -1
- package/agents/konductor.json +5 -9
- package/package.json +1 -1
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"file://.konductor/requirements.md",
|
|
18
18
|
"file://.konductor/project.md",
|
|
19
19
|
"file://.konductor/phases/*/plans/*.md",
|
|
20
|
-
"file://.kiro/steering/**/*.md"
|
|
20
|
+
"file://.kiro/steering/**/*.md",
|
|
21
|
+
"file://~/.kiro/steering/**/*.md"
|
|
21
22
|
],
|
|
22
23
|
"hooks": {
|
|
23
24
|
"preToolUse": [
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"file://.konductor/roadmap.md",
|
|
19
19
|
"file://.konductor/project.md",
|
|
20
20
|
"file://.konductor/phases/*/plans/*.md",
|
|
21
|
-
"file://.kiro/steering/**/*.md"
|
|
21
|
+
"file://.kiro/steering/**/*.md",
|
|
22
|
+
"file://~/.kiro/steering/**/*.md"
|
|
22
23
|
],
|
|
23
24
|
"hooks": {
|
|
24
25
|
"preToolUse": [
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"file://.konductor/project.md",
|
|
18
18
|
"file://.konductor/requirements.md",
|
|
19
19
|
"file://.konductor/phases/*/plans/*.md",
|
|
20
|
-
"file://.kiro/steering/**/*.md"
|
|
20
|
+
"file://.kiro/steering/**/*.md",
|
|
21
|
+
"file://~/.kiro/steering/**/*.md"
|
|
21
22
|
],
|
|
22
23
|
"hooks": {
|
|
23
24
|
"preToolUse": [
|
package/agents/konductor.json
CHANGED
|
@@ -3,22 +3,18 @@
|
|
|
3
3
|
"description": "Spec-driven development orchestrator. Manages project initialization, phase planning, execution, verification, and shipping. Use @k-plan, @k-exec, @k-verify, @k-next, @k-status, or other prompts to trigger commands.",
|
|
4
4
|
"model": "claude-opus-4.6-1m",
|
|
5
5
|
"tools": [
|
|
6
|
-
"
|
|
7
|
-
"write",
|
|
8
|
-
"shell",
|
|
9
|
-
"code",
|
|
6
|
+
"@builtin",
|
|
10
7
|
"@konductor"
|
|
11
8
|
],
|
|
12
9
|
"allowedTools": [
|
|
13
|
-
"
|
|
14
|
-
"write",
|
|
15
|
-
"shell",
|
|
16
|
-
"code",
|
|
10
|
+
"@builtin",
|
|
17
11
|
"@konductor"
|
|
18
12
|
],
|
|
19
13
|
"resources": [
|
|
20
14
|
"skill://.kiro/skills/konductor-*/SKILL.md",
|
|
15
|
+
"skill://~/.kiro/skills/konductor-*/SKILL.md",
|
|
21
16
|
"file://.kiro/steering/**/*.md",
|
|
17
|
+
"file://~/.kiro/steering/**/*.md",
|
|
22
18
|
"file://.konductor/config.toml",
|
|
23
19
|
"file://.konductor/roadmap.md"
|
|
24
20
|
],
|
|
@@ -56,5 +52,5 @@
|
|
|
56
52
|
}
|
|
57
53
|
]
|
|
58
54
|
},
|
|
59
|
-
"prompt": "
|
|
55
|
+
"prompt": "You are the Konductor orchestrator — a spec-driven development pipeline manager. You coordinate work by loading skills and delegating to konductor-* subagents. You never write application code directly.\n\nCore workflow: init → discuss → plan → exec → verify → ship (per phase).\n\nRules:\n1. Always call state_get before acting to determine the current pipeline step.\n2. Use konductor MCP tools for all state and config management: state_init, state_get, state_transition, state_add_blocker, state_resolve_blocker, state_advance_phase, plans_list, status, config_get, config_init. Never read or write state.toml or config.toml directly.\n3. When a user request matches a skill, load and follow it step by step.\n4. Delegate heavy work (coding, research, planning, review, verification) to subagents — you only manage state transitions and orchestration.\n5. If no konductor project exists (.konductor/ missing), suggest initialization first."
|
|
60
56
|
}
|