@kody-ade/kody-engine 0.4.165 → 0.4.166
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 +3 -6
- package/package.json +1 -1
package/dist/bin/kody.js
CHANGED
|
@@ -1061,7 +1061,7 @@ var init_loadPriorArt = __esm({
|
|
|
1061
1061
|
// package.json
|
|
1062
1062
|
var package_default = {
|
|
1063
1063
|
name: "@kody-ade/kody-engine",
|
|
1064
|
-
version: "0.4.
|
|
1064
|
+
version: "0.4.166",
|
|
1065
1065
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
1066
1066
|
license: "MIT",
|
|
1067
1067
|
type: "module",
|
|
@@ -6272,15 +6272,13 @@ function commentOnIssue(issueNumber, body, cwd) {
|
|
|
6272
6272
|
}
|
|
6273
6273
|
}
|
|
6274
6274
|
var GOAL_TASK_WORKFLOW = "kody.yml";
|
|
6275
|
-
function dispatchTaskRun(issueNumber, base,
|
|
6275
|
+
function dispatchTaskRun(issueNumber, base, cwd) {
|
|
6276
6276
|
try {
|
|
6277
6277
|
gh(
|
|
6278
6278
|
[
|
|
6279
6279
|
"workflow",
|
|
6280
6280
|
"run",
|
|
6281
6281
|
GOAL_TASK_WORKFLOW,
|
|
6282
|
-
"--ref",
|
|
6283
|
-
ref,
|
|
6284
6282
|
"-f",
|
|
6285
6283
|
`issue_number=${issueNumber}`,
|
|
6286
6284
|
"-f",
|
|
@@ -7642,10 +7640,9 @@ var dispatchNextTask = async (ctx) => {
|
|
|
7642
7640
|
return;
|
|
7643
7641
|
}
|
|
7644
7642
|
const base = goal.leafPr?.headRefName ?? goal.defaultBranch;
|
|
7645
|
-
const ref = goal.defaultBranch;
|
|
7646
7643
|
process.stdout.write(`[goal-tick] dispatching #${next.number} via workflow_dispatch (classify, --base ${base})
|
|
7647
7644
|
`);
|
|
7648
|
-
const res = dispatchTaskRun(next.number, base,
|
|
7645
|
+
const res = dispatchTaskRun(next.number, base, ctx.cwd);
|
|
7649
7646
|
if (!res.ok) {
|
|
7650
7647
|
process.stderr.write(`[goal-tick] dispatchNextTask: workflow_dispatch on #${next.number} failed: ${res.error}
|
|
7651
7648
|
`);
|
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.166",
|
|
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",
|