@kody-ade/kody-engine 0.3.17 → 0.3.18
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/dist/bin/kody.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// package.json
|
|
4
4
|
var package_default = {
|
|
5
5
|
name: "@kody-ade/kody-engine",
|
|
6
|
-
version: "0.3.
|
|
6
|
+
version: "0.3.18",
|
|
7
7
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
8
8
|
license: "MIT",
|
|
9
9
|
type: "module",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
2
|
+
"name": "mission-scheduler",
|
|
3
3
|
"role": "watch",
|
|
4
|
-
"describe": "Scheduled: for every open issue labeled kody:
|
|
4
|
+
"describe": "Scheduled: for every open issue labeled kody:mission, invoke mission-tick once. No agent on the scheduler itself.",
|
|
5
5
|
"kind": "scheduled",
|
|
6
6
|
"schedule": "*/5 * * * *",
|
|
7
7
|
"inputs": [],
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
"scripts": {
|
|
37
37
|
"preflight": [
|
|
38
38
|
{
|
|
39
|
-
"script": "
|
|
39
|
+
"script": "dispatchMissionTicks",
|
|
40
40
|
"with": {
|
|
41
|
-
"label": "kody:
|
|
41
|
+
"label": "kody:mission",
|
|
42
42
|
"color": "1d76db",
|
|
43
|
-
"description": "kody: issue is a
|
|
44
|
-
"targetExecutable": "
|
|
43
|
+
"description": "kody: issue is a mission — scheduler ticks it every cron wake",
|
|
44
|
+
"targetExecutable": "mission-tick",
|
|
45
45
|
"issueArg": "issue"
|
|
46
46
|
}
|
|
47
47
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
2
|
+
"name": "mission-tick",
|
|
3
3
|
"role": "primitive",
|
|
4
|
-
"describe": "One classifier tick for one
|
|
4
|
+
"describe": "One classifier tick for one mission issue: read intent + state, decide and execute via gh, emit next state.",
|
|
5
5
|
"kind": "oneshot",
|
|
6
6
|
"inputs": [
|
|
7
7
|
{
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"flag": "--issue",
|
|
10
10
|
"type": "int",
|
|
11
11
|
"required": true,
|
|
12
|
-
"describe": "GitHub issue number that owns this
|
|
12
|
+
"describe": "GitHub issue number that owns this mission."
|
|
13
13
|
}
|
|
14
14
|
],
|
|
15
15
|
"claudeCode": {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
{
|
|
46
46
|
"script": "loadIssueStateComment",
|
|
47
47
|
"with": {
|
|
48
|
-
"marker": "kody-
|
|
48
|
+
"marker": "kody-mission-state",
|
|
49
49
|
"issueArg": "issue"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
@@ -57,13 +57,13 @@
|
|
|
57
57
|
{
|
|
58
58
|
"script": "parseIssueStateFromAgentResult",
|
|
59
59
|
"with": {
|
|
60
|
-
"fenceLabel": "kody-
|
|
60
|
+
"fenceLabel": "kody-mission-next-state"
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
"script": "writeIssueStateComment",
|
|
65
65
|
"with": {
|
|
66
|
-
"marker": "kody-
|
|
66
|
+
"marker": "kody-mission-state",
|
|
67
67
|
"issueArg": "issue"
|
|
68
68
|
}
|
|
69
69
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.18",
|
|
4
4
|
"description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|