@kody-ade/kody-engine 0.4.63 → 0.4.64

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
@@ -315,7 +315,7 @@ var init_verifyMcp = __esm({
315
315
  // package.json
316
316
  var package_default = {
317
317
  name: "@kody-ade/kody-engine",
318
- version: "0.4.63",
318
+ version: "0.4.64",
319
319
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
320
320
  license: "MIT",
321
321
  type: "module",
@@ -5828,6 +5828,23 @@ var finalizeGoal = async (ctx) => {
5828
5828
  );
5829
5829
  if (!closed.ok) {
5830
5830
  process.stderr.write(`[goal-tick] finalizeGoal: closePr #${pr.number} failed: ${closed.error}
5831
+ `);
5832
+ }
5833
+ }
5834
+ const openIssues = (goal.childTasks ?? []).filter((t) => t.state === "OPEN");
5835
+ for (const t of openIssues) {
5836
+ process.stdout.write(`[goal-tick] closing task issue #${t.number} (goal finalized)
5837
+ `);
5838
+ const closed = closeIssue(
5839
+ t.number,
5840
+ {
5841
+ comment: `_Goal \`${goal.id}\` finalized \u2014 leaf PR #${leaf.number} squash-merged to \`${goal.defaultBranch}\` carries this task's changes._`,
5842
+ reason: "completed"
5843
+ },
5844
+ ctx.cwd
5845
+ );
5846
+ if (!closed.ok) {
5847
+ process.stderr.write(`[goal-tick] finalizeGoal: closeIssue #${t.number} failed: ${closed.error}
5831
5848
  `);
5832
5849
  }
5833
5850
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.63",
3
+ "version": "0.4.64",
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",
@@ -12,6 +12,18 @@
12
12
  "templates",
13
13
  "kody.config.schema.json"
14
14
  ],
15
+ "scripts": {
16
+ "kody": "tsx bin/kody.ts",
17
+ "build": "tsup && node scripts/copy-assets.cjs",
18
+ "test": "vitest run tests/unit tests/int --no-coverage",
19
+ "test:e2e": "vitest run tests/e2e --no-coverage",
20
+ "test:all": "vitest run tests --no-coverage",
21
+ "typecheck": "tsc --noEmit",
22
+ "lint": "biome check",
23
+ "lint:fix": "biome check --write",
24
+ "format": "biome format --write",
25
+ "prepublishOnly": "pnpm build"
26
+ },
15
27
  "dependencies": {
16
28
  "@actions/cache": "^6.0.0",
17
29
  "@anthropic-ai/claude-agent-sdk": "0.2.119",
@@ -33,16 +45,5 @@
33
45
  "url": "git+https://github.com/aharonyaircohen/kody-engine.git"
34
46
  },
35
47
  "homepage": "https://github.com/aharonyaircohen/kody-engine",
36
- "bugs": "https://github.com/aharonyaircohen/kody-engine/issues",
37
- "scripts": {
38
- "kody": "tsx bin/kody.ts",
39
- "build": "tsup && node scripts/copy-assets.cjs",
40
- "test": "vitest run tests/unit tests/int --no-coverage",
41
- "test:e2e": "vitest run tests/e2e --no-coverage",
42
- "test:all": "vitest run tests --no-coverage",
43
- "typecheck": "tsc --noEmit",
44
- "lint": "biome check",
45
- "lint:fix": "biome check --write",
46
- "format": "biome format --write"
47
- }
48
- }
48
+ "bugs": "https://github.com/aharonyaircohen/kody-engine/issues"
49
+ }