@kody-ade/kody-engine 0.4.37 → 0.4.38

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "goal-tick",
3
3
  "role": "primitive",
4
- "describe": "One deterministic tick for one goal: read .kody/goals/<id>/state.json, dispatch @kody on the next ready task (or mark goal done when all tasks closed). No agent.",
4
+ "describe": "One deterministic tick for one goal in the stacked-PR model: read .kody/goals/<id>/state.json, dispatch @kody on the next ready task (stacked on the leaf PR), or squash-merge the leaf when all tasks are done. No agent.",
5
5
  "kind": "oneshot",
6
6
  "inputs": [
7
7
  {
@@ -34,7 +34,7 @@
34
34
  "checkCommand": "command -v gh"
35
35
  },
36
36
  "verify": "gh auth status",
37
- "usage": "Use `gh issue list/comment/edit` to read goal-labelled tasks and dispatch @kody.",
37
+ "usage": "Read goal-labelled tasks, list stacked PRs, dispatch @kody, and squash-merge the leaf on finalize.",
38
38
  "allowedUses": ["issue", "pr", "api"]
39
39
  }
40
40
  ],
@@ -47,30 +47,6 @@
47
47
  "script": "handleAbandonedGoal",
48
48
  "runWhen": { "data.goal.state": "abandoned" }
49
49
  },
50
- {
51
- "script": "ensureLifecycleLabels",
52
- "runWhen": { "data.goal.state": "active" }
53
- },
54
- {
55
- "script": "ensureUmbrellaIssue",
56
- "runWhen": { "data.goal.state": "active" }
57
- },
58
- {
59
- "script": "ensureGoalPr",
60
- "runWhen": { "data.goal.state": "active" }
61
- },
62
- {
63
- "script": "mergeReadyTaskPRs",
64
- "runWhen": { "data.goal.state": "active" }
65
- },
66
- {
67
- "script": "ensureGoalPr",
68
- "runWhen": { "data.goal.state": "active" }
69
- },
70
- {
71
- "script": "closeMergedTaskIssues",
72
- "runWhen": { "data.goal.state": "active" }
73
- },
74
50
  {
75
51
  "script": "deriveGoalPhase",
76
52
  "runWhen": { "data.goal.state": "active" }
@@ -79,10 +55,6 @@
79
55
  "script": "finalizeGoal",
80
56
  "runWhen": { "data.goal.phase": "all-done" }
81
57
  },
82
- {
83
- "script": "ensureGoalBranch",
84
- "runWhen": { "data.goal.phase": "ready-to-dispatch" }
85
- },
86
58
  {
87
59
  "script": "dispatchNextTask",
88
60
  "runWhen": { "data.goal.phase": "ready-to-dispatch" }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.37",
3
+ "version": "0.4.38",
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",