@kody-ade/kody-engine-lite 0.1.91 → 0.1.92

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/cli.js +3 -1
  2. package/package.json +1 -1
package/dist/bin/cli.js CHANGED
@@ -2532,7 +2532,9 @@ PR #${existingPr.number}
2532
2532
  postComment(ctx.input.issueNumber, `\u{1F389} PR created: ${pr.url}`);
2533
2533
  } catch {
2534
2534
  }
2535
- closeIssue(ctx.input.issueNumber);
2535
+ if (ctx.input.issueNumber !== ctx.input.prNumber) {
2536
+ closeIssue(ctx.input.issueNumber);
2537
+ }
2536
2538
  }
2537
2539
  fs12.writeFileSync(shipPath, `# Ship
2538
2540
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine-lite",
3
- "version": "0.1.91",
3
+ "version": "0.1.92",
4
4
  "description": "Autonomous SDLC pipeline: Kody orchestration + Claude Code + LiteLLM",
5
5
  "license": "MIT",
6
6
  "type": "module",