@kody-ade/kody-engine 0.4.105 → 0.4.106

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
@@ -880,7 +880,7 @@ var init_loadPriorArt = __esm({
880
880
  // package.json
881
881
  var package_default = {
882
882
  name: "@kody-ade/kody-engine",
883
- version: "0.4.105",
883
+ version: "0.4.106",
884
884
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
885
885
  license: "MIT",
886
886
  type: "module",
@@ -4626,7 +4626,16 @@ var checkCoverageWithRetry = async (ctx) => {
4626
4626
 
4627
4627
  # Coverage failure (retry)
4628
4628
  ${formatMissesForFeedback(misses)}`;
4629
- const retry = await invoker(retryPrompt);
4629
+ let retry;
4630
+ try {
4631
+ retry = await invoker(retryPrompt);
4632
+ } catch (err) {
4633
+ const msg = err instanceof Error ? err.message : String(err);
4634
+ process.stderr.write(`[kody] coverage retry agent failed (${msg}); keeping ${misses.length} miss(es) \u2014 PR will draft
4635
+ `);
4636
+ ctx.data.coverageMisses = misses;
4637
+ return;
4638
+ }
4630
4639
  const retryParsed = parseAgentResult(retry.finalText);
4631
4640
  if (retry.outcome === "completed" && retryParsed.done) {
4632
4641
  ctx.data.agentDone = true;
File without changes
@@ -15,7 +15,9 @@
15
15
  "model": "inherit",
16
16
  "permissionMode": "default",
17
17
  "maxTurns": null,
18
+ "maxThinkingTokens": 8000,
18
19
  "systemPromptAppend": null,
20
+ "cacheable": true,
19
21
  "tools": [
20
22
  "Read",
21
23
  "Grep",
File without changes
File without changes
File without changes
@@ -16,6 +16,7 @@
16
16
  "permissionMode": "default",
17
17
  "maxTurns": null,
18
18
  "systemPromptAppend": null,
19
+ "cacheable": true,
19
20
  "tools": [
20
21
  "Read",
21
22
  "Grep",
File without changes
File without changes
@@ -16,7 +16,9 @@
16
16
  "model": "inherit",
17
17
  "permissionMode": "default",
18
18
  "maxTurns": null,
19
+ "maxThinkingTokens": 8000,
19
20
  "systemPromptAppend": null,
21
+ "cacheable": true,
20
22
  "tools": [
21
23
  "Read",
22
24
  "Grep",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.105",
4
- "description": "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
3
+ "version": "0.4.106",
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",
7
7
  "bin": {
@@ -12,23 +12,6 @@
12
12
  "templates",
13
13
  "kody.config.schema.json"
14
14
  ],
15
- "scripts": {
16
- "kody:run": "tsx bin/kody.ts",
17
- "serve": "tsx bin/kody.ts serve",
18
- "serve:vscode": "tsx bin/kody.ts serve vscode",
19
- "serve:claude": "tsx bin/kody.ts serve claude",
20
- "build": "tsup && node scripts/copy-assets.cjs",
21
- "check:modularity": "tsx scripts/check-script-modularity.ts",
22
- "pretest": "pnpm check:modularity",
23
- "test": "vitest run tests/unit tests/int --no-coverage",
24
- "test:e2e": "vitest run tests/e2e --no-coverage",
25
- "test:all": "vitest run tests --no-coverage",
26
- "typecheck": "tsc --noEmit",
27
- "lint": "biome check",
28
- "lint:fix": "biome check --write",
29
- "format": "biome format --write",
30
- "prepublishOnly": "pnpm build"
31
- },
32
15
  "dependencies": {
33
16
  "@actions/cache": "^6.0.0",
34
17
  "@anthropic-ai/claude-agent-sdk": "0.2.119",
@@ -50,5 +33,21 @@
50
33
  "url": "git+https://github.com/aharonyaircohen/kody-engine.git"
51
34
  },
52
35
  "homepage": "https://github.com/aharonyaircohen/kody-engine",
53
- "bugs": "https://github.com/aharonyaircohen/kody-engine/issues"
54
- }
36
+ "bugs": "https://github.com/aharonyaircohen/kody-engine/issues",
37
+ "scripts": {
38
+ "kody:run": "tsx bin/kody.ts",
39
+ "serve": "tsx bin/kody.ts serve",
40
+ "serve:vscode": "tsx bin/kody.ts serve vscode",
41
+ "serve:claude": "tsx bin/kody.ts serve claude",
42
+ "build": "tsup && node scripts/copy-assets.cjs",
43
+ "check:modularity": "tsx scripts/check-script-modularity.ts",
44
+ "pretest": "pnpm check:modularity",
45
+ "test": "vitest run tests/unit tests/int --no-coverage",
46
+ "test:e2e": "vitest run tests/e2e --no-coverage",
47
+ "test:all": "vitest run tests --no-coverage",
48
+ "typecheck": "tsc --noEmit",
49
+ "lint": "biome check",
50
+ "lint:fix": "biome check --write",
51
+ "format": "biome format --write"
52
+ }
53
+ }
@@ -90,4 +90,4 @@ jobs:
90
90
  INIT_MESSAGE: ${{ inputs.message }}
91
91
  MODEL: ${{ inputs.model }}
92
92
  DASHBOARD_URL: ${{ inputs.dashboardUrl }}
93
- run: npx -y -p @kody-ade/kody-engine@0.4.99 kody-engine
93
+ run: npx -y -p @kody-ade/kody-engine@0.4.106 kody-engine