@kody-ade/kody-engine 0.4.212-live.0 → 0.4.212-live.1

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
@@ -1542,7 +1542,7 @@ var init_loadCoverageRules = __esm({
1542
1542
  // package.json
1543
1543
  var package_default = {
1544
1544
  name: "@kody-ade/kody-engine",
1545
- version: "0.4.212-live.0",
1545
+ version: "0.4.212-live.1",
1546
1546
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
1547
1547
  license: "MIT",
1548
1548
  type: "module",
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+
4
+ echo "KODY_REASON=task-state-fail: intentional live failure"
5
+ echo "KODY_SKIP_AGENT=true"
6
+ exit 7
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "task-state-fail",
3
+ "role": "utility",
4
+ "phase": "failed",
5
+ "describe": "Live-test executable that intentionally fails after task state is loaded, proving failed runs are persisted under task jobs.",
6
+ "inputs": [
7
+ {
8
+ "name": "issue",
9
+ "flag": "--issue",
10
+ "type": "int",
11
+ "required": true,
12
+ "describe": "GitHub issue number whose task-state comment should record the intentional failure."
13
+ }
14
+ ],
15
+ "claudeCode": {
16
+ "model": "inherit",
17
+ "permissionMode": "acceptEdits",
18
+ "maxTurns": 0,
19
+ "maxThinkingTokens": null,
20
+ "systemPromptAppend": null,
21
+ "tools": [],
22
+ "hooks": [],
23
+ "skills": [],
24
+ "commands": [],
25
+ "subagents": [],
26
+ "plugins": [],
27
+ "mcpServers": []
28
+ },
29
+ "cliTools": [],
30
+ "inputArtifacts": [],
31
+ "outputArtifacts": [],
32
+ "scripts": {
33
+ "preflight": [
34
+ { "script": "setCommentTarget", "with": { "type": "issue" } },
35
+ { "script": "loadTaskState" },
36
+ { "script": "skipAgent" }
37
+ ],
38
+ "postflight": [
39
+ { "shell": "fail.sh" },
40
+ { "script": "recordOutcome" },
41
+ { "script": "saveTaskState" }
42
+ ]
43
+ },
44
+ "output": {
45
+ "actionTypes": ["TASK_STATE_FAIL_FAILED"]
46
+ }
47
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.212-live.0",
3
+ "version": "0.4.212-live.1",
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",