@kody-ade/kody-engine 0.3.49 → 0.3.50

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 +2 -3
  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.3.49",
6
+ version: "0.3.50",
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",
@@ -4955,8 +4955,7 @@ var parseAgentResult2 = async (ctx, profile, agentResult) => {
4955
4955
  const modeSeg = (ctx.args.mode ?? profile.name).replace(/-/g, "_").toUpperCase();
4956
4956
  if (parsed.done) {
4957
4957
  ctx.data.action = makeAction2(`${modeSeg}_COMPLETED`, {
4958
- commitMessage: parsed.commitMessage,
4959
- prSummary: parsed.prSummary
4958
+ commitMessage: parsed.commitMessage
4960
4959
  });
4961
4960
  } else {
4962
4961
  ctx.data.action = makeAction2(`${modeSeg}_FAILED`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.3.49",
3
+ "version": "0.3.50",
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",