@kody-ade/kody-engine 0.2.60 → 0.2.62
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.
|
@@ -49,21 +49,11 @@
|
|
|
49
49
|
"description": "kody2: applying review feedback"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
|
-
{
|
|
53
|
-
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"script": "loadConventions"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"script": "loadCoverageRules"
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"script": "composePrompt"
|
|
66
|
-
}
|
|
52
|
+
{ "script": "fixFlow" },
|
|
53
|
+
{ "script": "loadTaskState" },
|
|
54
|
+
{ "script": "loadConventions" },
|
|
55
|
+
{ "script": "loadCoverageRules" },
|
|
56
|
+
{ "script": "composePrompt" }
|
|
67
57
|
],
|
|
68
58
|
"postflight": [
|
|
69
59
|
{ "script": "parseAgentResult" },
|
|
@@ -71,12 +61,11 @@
|
|
|
71
61
|
{ "script": "verify" },
|
|
72
62
|
{ "script": "checkCoverageWithRetry" },
|
|
73
63
|
{ "script": "commitAndPush" },
|
|
74
|
-
{ "script": "
|
|
75
|
-
{ "script": "
|
|
76
|
-
{ "script": "postIssueComment", "runWhen": { "data.riskGate.decision": "allow" } },
|
|
64
|
+
{ "script": "ensurePr" },
|
|
65
|
+
{ "script": "postIssueComment" },
|
|
77
66
|
{ "script": "writeRunSummary" },
|
|
78
|
-
{ "script": "saveTaskState"
|
|
79
|
-
{ "script": "advanceFlow"
|
|
67
|
+
{ "script": "saveTaskState" },
|
|
68
|
+
{ "script": "advanceFlow" }
|
|
80
69
|
]
|
|
81
70
|
},
|
|
82
71
|
"output": {
|
|
@@ -42,24 +42,12 @@
|
|
|
42
42
|
"description": "kody2: implementing the change"
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
{
|
|
46
|
-
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
{
|
|
52
|
-
"script": "resolveArtifacts"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"script": "loadConventions"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"script": "loadCoverageRules"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"script": "composePrompt"
|
|
62
|
-
}
|
|
45
|
+
{ "script": "runFlow" },
|
|
46
|
+
{ "script": "loadTaskState" },
|
|
47
|
+
{ "script": "resolveArtifacts" },
|
|
48
|
+
{ "script": "loadConventions" },
|
|
49
|
+
{ "script": "loadCoverageRules" },
|
|
50
|
+
{ "script": "composePrompt" }
|
|
63
51
|
],
|
|
64
52
|
"postflight": [
|
|
65
53
|
{ "script": "parseAgentResult" },
|
|
@@ -67,13 +55,12 @@
|
|
|
67
55
|
{ "script": "verify" },
|
|
68
56
|
{ "script": "checkCoverageWithRetry" },
|
|
69
57
|
{ "script": "commitAndPush" },
|
|
70
|
-
{ "script": "
|
|
71
|
-
{ "script": "
|
|
72
|
-
{ "script": "postIssueComment", "runWhen": { "data.riskGate.decision": "allow" } },
|
|
58
|
+
{ "script": "ensurePr" },
|
|
59
|
+
{ "script": "postIssueComment" },
|
|
73
60
|
{ "script": "writeRunSummary" },
|
|
74
|
-
{ "script": "saveTaskState"
|
|
75
|
-
{ "script": "mirrorStateToPr"
|
|
76
|
-
{ "script": "advanceFlow"
|
|
61
|
+
{ "script": "saveTaskState" },
|
|
62
|
+
{ "script": "mirrorStateToPr" },
|
|
63
|
+
{ "script": "advanceFlow" }
|
|
77
64
|
]
|
|
78
65
|
},
|
|
79
66
|
"input": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.62",
|
|
4
4
|
"description": "kody2 — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
package/templates/kody2.yml
CHANGED
|
@@ -20,8 +20,6 @@
|
|
|
20
20
|
# 2. Pushes from kody2 won't trigger downstream workflows.
|
|
21
21
|
# 3. Any commit that modifies `.github/workflows/*` is REJECTED by
|
|
22
22
|
# GitHub — the default GITHUB_TOKEN can't touch workflow files.
|
|
23
|
-
# (The `workflow-edit` risk gate is effectively unreachable without
|
|
24
|
-
# a token carrying the `workflow` scope.)
|
|
25
23
|
# Set KODY_TOKEN in repo Settings → Secrets → Actions.
|
|
26
24
|
|
|
27
25
|
name: kody2
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "approve",
|
|
3
|
-
"role": "utility",
|
|
4
|
-
"describe": "Acknowledge pending risk gate(s) on an issue or PR: applies kody-approve:* labels on both the issue and its PR (if discoverable via task state), then re-triggers the paused flow. Invoked by `@kody2 approve`.",
|
|
5
|
-
"inputs": [
|
|
6
|
-
{
|
|
7
|
-
"name": "issue",
|
|
8
|
-
"flag": "--issue",
|
|
9
|
-
"type": "int",
|
|
10
|
-
"required": false,
|
|
11
|
-
"describe": "Issue number (when approving on the originating issue)."
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"name": "pr",
|
|
15
|
-
"flag": "--pr",
|
|
16
|
-
"type": "int",
|
|
17
|
-
"required": false,
|
|
18
|
-
"describe": "PR number (when approving on the PR side)."
|
|
19
|
-
}
|
|
20
|
-
],
|
|
21
|
-
"claudeCode": {
|
|
22
|
-
"model": "inherit",
|
|
23
|
-
"permissionMode": "default",
|
|
24
|
-
"maxTurns": 0,
|
|
25
|
-
"maxThinkingTokens": null,
|
|
26
|
-
"systemPromptAppend": null,
|
|
27
|
-
"tools": [],
|
|
28
|
-
"hooks": [],
|
|
29
|
-
"skills": [],
|
|
30
|
-
"commands": [],
|
|
31
|
-
"subagents": [],
|
|
32
|
-
"plugins": [],
|
|
33
|
-
"mcpServers": []
|
|
34
|
-
},
|
|
35
|
-
"cliTools": [],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"preflight": [
|
|
38
|
-
{ "script": "skipAgent" }
|
|
39
|
-
],
|
|
40
|
-
"postflight": [
|
|
41
|
-
{ "script": "applyApprovals" }
|
|
42
|
-
]
|
|
43
|
-
},
|
|
44
|
-
"output": {
|
|
45
|
-
"actionTypes": []
|
|
46
|
-
}
|
|
47
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(approve is an agent-less utility; this file is a placeholder kept to satisfy the profile layout convention.)
|