@kody-ade/kody-engine 0.4.294 → 0.4.295

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.
Files changed (2) hide show
  1. package/dist/bin/kody.js +8 -2
  2. package/package.json +1 -1
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.294",
18
+ version: "0.4.295",
19
19
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
20
20
  license: "MIT",
21
21
  type: "module",
@@ -17654,6 +17654,9 @@ var init_scripts = __esm({
17654
17654
  postReviewResult,
17655
17655
  persistArtifacts,
17656
17656
  writeAgentRunSummary,
17657
+ // Deprecated profile compatibility. Older external capability profiles used
17658
+ // this name before the summary writer was made agent-result specific.
17659
+ writeRunSummary: writeAgentRunSummary,
17657
17660
  saveTaskState,
17658
17661
  mirrorStateToPr,
17659
17662
  startFlow,
@@ -17971,7 +17974,10 @@ async function runExecutable(profileName, input) {
17971
17974
  const profile = loadProfile(profilePath);
17972
17975
  const missing = validateScriptReferences(profile, allScriptNames);
17973
17976
  if (missing.length > 0) {
17974
- return finishAndEnd({ exitCode: 99, reason: `profile references unknown scripts: ${missing.join(", ")}` });
17977
+ return finishAndEnd({
17978
+ exitCode: 99,
17979
+ reason: `profile references unknown scripts: ${missing.join(", ")} (profile: ${profilePath})`
17980
+ });
17975
17981
  }
17976
17982
  let args;
17977
17983
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.294",
3
+ "version": "0.4.295",
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",