@kody-ade/kody-engine 0.4.25 → 0.4.26
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.4.
|
|
6
|
+
version: "0.4.26",
|
|
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",
|
|
@@ -379,6 +379,12 @@ for pr in data:
|
|
|
379
379
|
fi
|
|
380
380
|
done
|
|
381
381
|
|
|
382
|
+
# Retry ensure_goal_pr after the merge step. The early call at line ~356
|
|
383
|
+
# fails when the goal branch has 0 commits ahead of default. If THIS tick
|
|
384
|
+
# just merged a task PR, the branch now has a delta and `gh pr create`
|
|
385
|
+
# will succeed. Idempotent — early-returns if the PR was already created.
|
|
386
|
+
ensure_goal_pr
|
|
387
|
+
|
|
382
388
|
# Close dispatched task issues whose PR has merged into the goal branch.
|
|
383
389
|
# `Closes #N` in the PR body only auto-closes the issue when the PR merges
|
|
384
390
|
# into the default branch — goal-task PRs target the goal branch, so we must
|
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.26",
|
|
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",
|