@kody-ade/kody-engine 0.4.420 → 0.4.421

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
@@ -15,7 +15,7 @@ var init_package = __esm({
15
15
  "package.json"() {
16
16
  package_default = {
17
17
  name: "@kody-ade/kody-engine",
18
- version: "0.4.420",
18
+ version: "0.4.421",
19
19
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
20
20
  license: "MIT",
21
21
  type: "module",
@@ -24484,8 +24484,12 @@ async function runCi(argv) {
24484
24484
  cliArgs: forceRunCliArgs
24485
24485
  } : capabilityRoute ?? workflowRoute ?? scheduledWatchRoute;
24486
24486
  if (!route) {
24487
- process.stderr.write(`[kody] manual one-shot action '${forceRunAction}' has no capability action or workflow
24488
- `);
24487
+ const root = capabilitiesRoot(cwd);
24488
+ const available = listCapabilityActions(root).map((item) => item.action);
24489
+ process.stderr.write(
24490
+ `[kody] manual one-shot action '${forceRunAction}' has no capability action or workflow (capabilitiesRoot=${root}, available=${available.join(",") || "none"})
24491
+ `
24492
+ );
24489
24493
  return 64;
24490
24494
  }
24491
24495
  if (route.implementation === "goal-manager" && typeof forceRunCliArgs.goal !== "string") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.420",
3
+ "version": "0.4.421",
4
4
  "description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -93,4 +93,9 @@ jobs:
93
93
  INIT_MESSAGE: ${{ inputs.message }}
94
94
  MODEL: ${{ inputs.model }}
95
95
  DASHBOARD_URL: ${{ inputs.dashboardUrl }}
96
- run: npx -y -p @kody-ade/kody-engine@latest kody-engine
96
+ KODY_DEFINITIONS_ROOT: ${{ github.workspace }}/.kody-engine/definitions
97
+ KODY_DEFINITIONS_ROOT_CWD: ${{ github.workspace }}
98
+ working-directory: ${{ github.workspace }}
99
+ run: |
100
+ test -d .kody-engine/definitions/capabilities
101
+ npx -y -p @kody-ade/kody-engine@latest kody-engine ci --cwd "$GITHUB_WORKSPACE"