konductor 0.7.2 → 0.7.3
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-codebase-mapper.json +26 -3
- package/agents/konductor-discoverer.json +26 -3
- package/agents/konductor-executor.json +26 -3
- package/agents/konductor-plan-checker.json +26 -3
- package/agents/konductor-planner.json +26 -3
- package/agents/konductor-researcher.json +26 -3
- package/agents/konductor-verifier.json +26 -3
- package/agents/konductor.json +37 -6
- package/package.json +1 -1
|
@@ -1,9 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "konductor-codebase-mapper",
|
|
3
3
|
"description": "Analyzes existing codebases for brownfield projects. Maps file structure, tech stack, patterns, conventions, testing, and integrations.",
|
|
4
|
-
"tools": [
|
|
5
|
-
|
|
4
|
+
"tools": [
|
|
5
|
+
"read",
|
|
6
|
+
"write",
|
|
7
|
+
"shell",
|
|
8
|
+
"code"
|
|
9
|
+
],
|
|
10
|
+
"allowedTools": [
|
|
11
|
+
"read",
|
|
12
|
+
"write",
|
|
13
|
+
"shell",
|
|
14
|
+
"code"
|
|
15
|
+
],
|
|
6
16
|
"resources": [],
|
|
7
|
-
"hooks":
|
|
17
|
+
"hooks": [
|
|
18
|
+
{
|
|
19
|
+
"event": "PostToolUse",
|
|
20
|
+
"matcher": "write",
|
|
21
|
+
"command": "konductor hook",
|
|
22
|
+
"timeout_ms": 2000
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"event": "PreToolUse",
|
|
26
|
+
"matcher": "shell",
|
|
27
|
+
"command": "konductor hook",
|
|
28
|
+
"timeout_ms": 1000
|
|
29
|
+
}
|
|
30
|
+
],
|
|
8
31
|
"prompt": ""
|
|
9
32
|
}
|
|
@@ -1,9 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "konductor-discoverer",
|
|
3
3
|
"description": "Interactive project discovery. Asks questions about vision, users, tech stack, and constraints. Generates project.md, requirements.md, and roadmap.md.",
|
|
4
|
-
"tools": [
|
|
5
|
-
|
|
4
|
+
"tools": [
|
|
5
|
+
"read",
|
|
6
|
+
"write",
|
|
7
|
+
"shell",
|
|
8
|
+
"code"
|
|
9
|
+
],
|
|
10
|
+
"allowedTools": [
|
|
11
|
+
"read",
|
|
12
|
+
"write",
|
|
13
|
+
"shell",
|
|
14
|
+
"code"
|
|
15
|
+
],
|
|
6
16
|
"resources": [],
|
|
7
|
-
"hooks":
|
|
17
|
+
"hooks": [
|
|
18
|
+
{
|
|
19
|
+
"event": "PostToolUse",
|
|
20
|
+
"matcher": "write",
|
|
21
|
+
"command": "konductor hook",
|
|
22
|
+
"timeout_ms": 2000
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"event": "PreToolUse",
|
|
26
|
+
"matcher": "shell",
|
|
27
|
+
"command": "konductor hook",
|
|
28
|
+
"timeout_ms": 1000
|
|
29
|
+
}
|
|
30
|
+
],
|
|
8
31
|
"prompt": ""
|
|
9
32
|
}
|
|
@@ -1,14 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "konductor-executor",
|
|
3
3
|
"description": "Executes a single implementation plan. Writes code, runs tests, commits atomically per task. Follows deviation rules for auto-fixing bugs.",
|
|
4
|
-
"tools": [
|
|
5
|
-
|
|
4
|
+
"tools": [
|
|
5
|
+
"read",
|
|
6
|
+
"write",
|
|
7
|
+
"shell",
|
|
8
|
+
"code"
|
|
9
|
+
],
|
|
10
|
+
"allowedTools": [
|
|
11
|
+
"read",
|
|
12
|
+
"write",
|
|
13
|
+
"shell",
|
|
14
|
+
"code"
|
|
15
|
+
],
|
|
6
16
|
"resources": [
|
|
7
17
|
"file://.konductor/project.md",
|
|
8
18
|
"file://.konductor/requirements.md",
|
|
9
19
|
"file://.konductor/phases/*/plans/*.md",
|
|
10
20
|
"file://.kiro/steering/**/*.md"
|
|
11
21
|
],
|
|
12
|
-
"hooks":
|
|
22
|
+
"hooks": [
|
|
23
|
+
{
|
|
24
|
+
"event": "PostToolUse",
|
|
25
|
+
"matcher": "write",
|
|
26
|
+
"command": "konductor hook",
|
|
27
|
+
"timeout_ms": 2000
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"event": "PreToolUse",
|
|
31
|
+
"matcher": "shell",
|
|
32
|
+
"command": "konductor hook",
|
|
33
|
+
"timeout_ms": 1000
|
|
34
|
+
}
|
|
35
|
+
],
|
|
13
36
|
"prompt": ""
|
|
14
37
|
}
|
|
@@ -1,12 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "konductor-plan-checker",
|
|
3
3
|
"description": "Validates execution plans for coverage, sizing, dependencies, and completeness. Fixes issues in-place.",
|
|
4
|
-
"tools": [
|
|
5
|
-
|
|
4
|
+
"tools": [
|
|
5
|
+
"read",
|
|
6
|
+
"write",
|
|
7
|
+
"shell",
|
|
8
|
+
"code"
|
|
9
|
+
],
|
|
10
|
+
"allowedTools": [
|
|
11
|
+
"read",
|
|
12
|
+
"write",
|
|
13
|
+
"shell",
|
|
14
|
+
"code"
|
|
15
|
+
],
|
|
6
16
|
"resources": [
|
|
7
17
|
"file://.konductor/requirements.md",
|
|
8
18
|
"file://.konductor/phases/*/plans/*.md"
|
|
9
19
|
],
|
|
10
|
-
"hooks":
|
|
20
|
+
"hooks": [
|
|
21
|
+
{
|
|
22
|
+
"event": "PostToolUse",
|
|
23
|
+
"matcher": "write",
|
|
24
|
+
"command": "konductor hook",
|
|
25
|
+
"timeout_ms": 2000
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"event": "PreToolUse",
|
|
29
|
+
"matcher": "shell",
|
|
30
|
+
"command": "konductor hook",
|
|
31
|
+
"timeout_ms": 1000
|
|
32
|
+
}
|
|
33
|
+
],
|
|
11
34
|
"prompt": ""
|
|
12
35
|
}
|
|
@@ -1,14 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "konductor-planner",
|
|
3
3
|
"description": "Decomposes phases into wave-ordered execution plans with task breakdowns, dependency graphs, and requirement tracing.",
|
|
4
|
-
"tools": [
|
|
5
|
-
|
|
4
|
+
"tools": [
|
|
5
|
+
"read",
|
|
6
|
+
"write",
|
|
7
|
+
"shell",
|
|
8
|
+
"code"
|
|
9
|
+
],
|
|
10
|
+
"allowedTools": [
|
|
11
|
+
"read",
|
|
12
|
+
"write",
|
|
13
|
+
"shell",
|
|
14
|
+
"code"
|
|
15
|
+
],
|
|
6
16
|
"resources": [
|
|
7
17
|
"file://.konductor/project.md",
|
|
8
18
|
"file://.konductor/requirements.md",
|
|
9
19
|
"file://.konductor/roadmap.md",
|
|
10
20
|
"file://.kiro/steering/**/*.md"
|
|
11
21
|
],
|
|
12
|
-
"hooks":
|
|
22
|
+
"hooks": [
|
|
23
|
+
{
|
|
24
|
+
"event": "PostToolUse",
|
|
25
|
+
"matcher": "write",
|
|
26
|
+
"command": "konductor hook",
|
|
27
|
+
"timeout_ms": 2000
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"event": "PreToolUse",
|
|
31
|
+
"matcher": "shell",
|
|
32
|
+
"command": "konductor hook",
|
|
33
|
+
"timeout_ms": 1000
|
|
34
|
+
}
|
|
35
|
+
],
|
|
13
36
|
"prompt": ""
|
|
14
37
|
}
|
|
@@ -1,13 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "konductor-researcher",
|
|
3
3
|
"description": "Phase ecosystem research. Investigates libraries, patterns, risks, and best practices for a given phase.",
|
|
4
|
-
"tools": [
|
|
5
|
-
|
|
4
|
+
"tools": [
|
|
5
|
+
"read",
|
|
6
|
+
"write",
|
|
7
|
+
"shell",
|
|
8
|
+
"code"
|
|
9
|
+
],
|
|
10
|
+
"allowedTools": [
|
|
11
|
+
"read",
|
|
12
|
+
"write",
|
|
13
|
+
"shell",
|
|
14
|
+
"code"
|
|
15
|
+
],
|
|
6
16
|
"resources": [
|
|
7
17
|
"file://.konductor/project.md",
|
|
8
18
|
"file://.konductor/requirements.md",
|
|
9
19
|
"file://.kiro/steering/**/*.md"
|
|
10
20
|
],
|
|
11
|
-
"hooks":
|
|
21
|
+
"hooks": [
|
|
22
|
+
{
|
|
23
|
+
"event": "PostToolUse",
|
|
24
|
+
"matcher": "write",
|
|
25
|
+
"command": "konductor hook",
|
|
26
|
+
"timeout_ms": 2000
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"event": "PreToolUse",
|
|
30
|
+
"matcher": "shell",
|
|
31
|
+
"command": "konductor hook",
|
|
32
|
+
"timeout_ms": 1000
|
|
33
|
+
}
|
|
34
|
+
],
|
|
12
35
|
"prompt": ""
|
|
13
36
|
}
|
|
@@ -1,13 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "konductor-verifier",
|
|
3
3
|
"description": "Post-execution verification. Performs 3-level check (exists, substantive, wired) on all artifacts and key links.",
|
|
4
|
-
"tools": [
|
|
5
|
-
|
|
4
|
+
"tools": [
|
|
5
|
+
"read",
|
|
6
|
+
"write",
|
|
7
|
+
"shell",
|
|
8
|
+
"code"
|
|
9
|
+
],
|
|
10
|
+
"allowedTools": [
|
|
11
|
+
"read",
|
|
12
|
+
"write",
|
|
13
|
+
"shell",
|
|
14
|
+
"code"
|
|
15
|
+
],
|
|
6
16
|
"resources": [
|
|
7
17
|
"file://.konductor/requirements.md",
|
|
8
18
|
"file://.konductor/phases/*/plans/*.md",
|
|
9
19
|
"file://.kiro/steering/**/*.md"
|
|
10
20
|
],
|
|
11
|
-
"hooks":
|
|
21
|
+
"hooks": [
|
|
22
|
+
{
|
|
23
|
+
"event": "PostToolUse",
|
|
24
|
+
"matcher": "write",
|
|
25
|
+
"command": "konductor hook",
|
|
26
|
+
"timeout_ms": 2000
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"event": "PreToolUse",
|
|
30
|
+
"matcher": "shell",
|
|
31
|
+
"command": "konductor hook",
|
|
32
|
+
"timeout_ms": 1000
|
|
33
|
+
}
|
|
34
|
+
],
|
|
12
35
|
"prompt": ""
|
|
13
36
|
}
|
package/agents/konductor.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "konductor",
|
|
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
|
-
"tools": [
|
|
5
|
-
|
|
4
|
+
"tools": [
|
|
5
|
+
"read",
|
|
6
|
+
"write",
|
|
7
|
+
"shell",
|
|
8
|
+
"code",
|
|
9
|
+
"@konductor"
|
|
10
|
+
],
|
|
11
|
+
"allowedTools": [
|
|
12
|
+
"read",
|
|
13
|
+
"write",
|
|
14
|
+
"shell",
|
|
15
|
+
"code",
|
|
16
|
+
"@konductor"
|
|
17
|
+
],
|
|
6
18
|
"resources": [
|
|
7
19
|
"skill://.kiro/skills/konductor-*/SKILL.md",
|
|
8
20
|
"file://.kiro/steering/**/*.md",
|
|
@@ -11,16 +23,35 @@
|
|
|
11
23
|
],
|
|
12
24
|
"toolsSettings": {
|
|
13
25
|
"subagent": {
|
|
14
|
-
"availableAgents": [
|
|
15
|
-
|
|
26
|
+
"availableAgents": [
|
|
27
|
+
"konductor-*"
|
|
28
|
+
],
|
|
29
|
+
"trustedAgents": [
|
|
30
|
+
"konductor-*"
|
|
31
|
+
]
|
|
16
32
|
}
|
|
17
33
|
},
|
|
18
34
|
"mcpServers": {
|
|
19
35
|
"konductor": {
|
|
20
36
|
"command": "konductor",
|
|
21
|
-
"args": [
|
|
37
|
+
"args": [
|
|
38
|
+
"mcp"
|
|
39
|
+
]
|
|
22
40
|
}
|
|
23
41
|
},
|
|
24
|
-
"hooks":
|
|
42
|
+
"hooks": [
|
|
43
|
+
{
|
|
44
|
+
"event": "PostToolUse",
|
|
45
|
+
"matcher": "write",
|
|
46
|
+
"command": "konductor hook",
|
|
47
|
+
"timeout_ms": 2000
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"event": "PreToolUse",
|
|
51
|
+
"matcher": "shell",
|
|
52
|
+
"command": "konductor hook",
|
|
53
|
+
"timeout_ms": 1000
|
|
54
|
+
}
|
|
55
|
+
],
|
|
25
56
|
"prompt": "Use the konductor MCP tools (state_init, state_get, state_transition, state_add_blocker, state_resolve_blocker, plans_list, status) for all state management instead of reading/writing state.toml directly."
|
|
26
57
|
}
|