@kody-ade/kody-engine 0.4.455 → 0.4.457
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.
|
@@ -569,6 +569,8 @@ export interface Job {
|
|
|
569
569
|
schedule?: string
|
|
570
570
|
/** The issue/PR number this job acts on, when applicable. */
|
|
571
571
|
target?: number
|
|
572
|
+
/** Workflow-owned delivery policy applied by a generic runtime adapter. */
|
|
573
|
+
delivery?: "pull-request"
|
|
572
574
|
/** Args passed through to the implementation (mirrors DispatchResult.cliArgs). */
|
|
573
575
|
cliArgs: Record<string, unknown>
|
|
574
576
|
/** Internal workflow resume context. Not passed to capability CLI args. */
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "capability-delivery",
|
|
3
|
+
"internal": true,
|
|
4
|
+
"role": "primitive",
|
|
5
|
+
"kind": "oneshot",
|
|
6
|
+
"inputs": [
|
|
7
|
+
{
|
|
8
|
+
"name": "capability",
|
|
9
|
+
"flag": "--capability",
|
|
10
|
+
"type": "string",
|
|
11
|
+
"required": true,
|
|
12
|
+
"describe": "Capability folder slug."
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "input",
|
|
16
|
+
"flag": "--input",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"required": false,
|
|
19
|
+
"describe": "The capability's one JSON input."
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "issue",
|
|
23
|
+
"flag": "--issue",
|
|
24
|
+
"type": "int",
|
|
25
|
+
"required": false,
|
|
26
|
+
"describe": "Issue receiving a new pull request."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "pr",
|
|
30
|
+
"flag": "--pr",
|
|
31
|
+
"type": "int",
|
|
32
|
+
"required": false,
|
|
33
|
+
"describe": "Existing pull request receiving changes."
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"claudeCode": {
|
|
37
|
+
"model": "inherit",
|
|
38
|
+
"permissionMode": "acceptEdits",
|
|
39
|
+
"maxTurns": 60,
|
|
40
|
+
"maxThinkingTokens": null,
|
|
41
|
+
"systemPromptAppend": null,
|
|
42
|
+
"enableVerifyTool": true,
|
|
43
|
+
"verifyAttempts": 4,
|
|
44
|
+
"tools": [
|
|
45
|
+
"Read",
|
|
46
|
+
"Write",
|
|
47
|
+
"Edit",
|
|
48
|
+
"Bash",
|
|
49
|
+
"Grep",
|
|
50
|
+
"Glob",
|
|
51
|
+
"mcp__kody-verify"
|
|
52
|
+
],
|
|
53
|
+
"hooks": ["block-git"],
|
|
54
|
+
"skills": [],
|
|
55
|
+
"commands": [],
|
|
56
|
+
"subagents": [],
|
|
57
|
+
"plugins": [],
|
|
58
|
+
"mcpServers": []
|
|
59
|
+
},
|
|
60
|
+
"cliTools": [],
|
|
61
|
+
"lifecycle": "pr-branch",
|
|
62
|
+
"lifecycleConfig": {
|
|
63
|
+
"label": {
|
|
64
|
+
"name": "kody:working",
|
|
65
|
+
"color": "fbca04",
|
|
66
|
+
"description": "kody: delivering capability work"
|
|
67
|
+
},
|
|
68
|
+
"context": "task",
|
|
69
|
+
"sync": false,
|
|
70
|
+
"advance": false,
|
|
71
|
+
"mirrorState": false,
|
|
72
|
+
"finalize": false
|
|
73
|
+
},
|
|
74
|
+
"scripts": {
|
|
75
|
+
"preflight": [
|
|
76
|
+
{ "script": "loadSimpleCapability" },
|
|
77
|
+
{ "script": "prepareCapabilityDelivery" }
|
|
78
|
+
],
|
|
79
|
+
"postflight": [
|
|
80
|
+
{ "script": "parseSimpleCapabilityOutput" }
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"inputArtifacts": [],
|
|
84
|
+
"outputArtifacts": []
|
|
85
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.457",
|
|
4
4
|
"description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|