@kody-ade/kody-engine 0.2.38 → 0.2.39

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/kody2.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.2.38",
6
+ version: "0.2.39",
7
7
  description: "kody2 \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
8
8
  license: "MIT",
9
9
  type: "module",
@@ -3742,14 +3742,6 @@ var verifyFixAlignment = async (ctx, profile) => {
3742
3742
  if (summary.totalItems === 0) {
3743
3743
  return failOnce(ctx, "FIX_FAILED", "fix produced no FEEDBACK_ACTIONS items", summary);
3744
3744
  }
3745
- if (summary.fixedItems > 0 && !committed) {
3746
- return failOnce(
3747
- ctx,
3748
- "FIX_FAILED",
3749
- `fix claimed ${summary.fixedItems} fixed item(s) but produced no commit`,
3750
- summary
3751
- );
3752
- }
3753
3745
  const reviewBody = ctx.data.feedback ?? "";
3754
3746
  const refs = extractReviewFileRefs(reviewBody);
3755
3747
  const changedFiles = (ctx.data.changedFiles ?? []).map((f) => f.trim()).filter(Boolean);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.2.38",
3
+ "version": "0.2.39",
4
4
  "description": "kody2 — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",