@kody-ade/kody-engine 0.4.36 → 0.4.37
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 +7 -2
- package/package.json +1 -1
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.37",
|
|
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",
|
|
@@ -10154,6 +10154,11 @@ async function runCi(argv) {
|
|
|
10154
10154
|
if (!args.issueNumber && !autoFallback && process.env.GITHUB_EVENT_NAME) {
|
|
10155
10155
|
const outcome = autoDispatchTyped({ config: earlyConfig });
|
|
10156
10156
|
if (outcome.kind === "unrecognized") {
|
|
10157
|
+
try {
|
|
10158
|
+
unpackAllSecrets();
|
|
10159
|
+
resolveAuthToken();
|
|
10160
|
+
} catch {
|
|
10161
|
+
}
|
|
10157
10162
|
const tokenLabel = outcome.token ? `\`${outcome.token}\`` : "an empty subcommand";
|
|
10158
10163
|
const top = outcome.available.slice(0, 12).join(", ");
|
|
10159
10164
|
const more = outcome.available.length > 12 ? `, \u2026 (${outcome.available.length - 12} more)` : "";
|
|
@@ -10172,7 +10177,7 @@ async function runCi(argv) {
|
|
|
10172
10177
|
`);
|
|
10173
10178
|
}
|
|
10174
10179
|
process.stdout.write(
|
|
10175
|
-
`\u2192 kody: unrecognized subcommand "${outcome.token}" on #${outcome.target} \u2014 feedback comment
|
|
10180
|
+
`\u2192 kody: unrecognized subcommand "${outcome.token}" on #${outcome.target} \u2014 feedback comment attempt finished, exiting cleanly
|
|
10176
10181
|
`
|
|
10177
10182
|
);
|
|
10178
10183
|
return 0;
|
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.37",
|
|
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",
|