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

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.
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "task-jobs",
3
+ "role": "utility",
4
+ "describe": "Runs the next pending executable from a hidden task job plan on an issue.",
5
+ "inputs": [
6
+ {
7
+ "name": "issue",
8
+ "flag": "--issue",
9
+ "type": "int",
10
+ "required": true,
11
+ "describe": "GitHub issue number that carries the task job plan."
12
+ }
13
+ ],
14
+ "claudeCode": {
15
+ "model": "inherit",
16
+ "permissionMode": "default",
17
+ "maxTurns": 0,
18
+ "maxThinkingTokens": null,
19
+ "systemPromptAppend": null,
20
+ "tools": [],
21
+ "hooks": [],
22
+ "skills": [],
23
+ "commands": [],
24
+ "subagents": [],
25
+ "plugins": [],
26
+ "mcpServers": []
27
+ },
28
+ "cliTools": [],
29
+ "inputArtifacts": [],
30
+ "outputArtifacts": [],
31
+ "scripts": {
32
+ "preflight": [
33
+ { "script": "loadIssueContext" },
34
+ { "script": "loadTaskState" },
35
+ { "script": "planTaskJobs" },
36
+ { "script": "dispatchNextTaskJob" },
37
+ { "script": "skipAgent" }
38
+ ],
39
+ "postflight": []
40
+ }
41
+ }
@@ -0,0 +1 @@
1
+ This executable is script-only.
@@ -411,6 +411,8 @@ export interface Context {
411
411
  * a GitHub App (bot author), stalling the pipeline at classify.
412
412
  */
413
413
  nextDispatch?: { executable: string; cliArgs: Record<string, unknown> }
414
+ /** In-process hand-off to a full Job, preserving job identity in task state. */
415
+ nextJob?: Job
414
416
  }
415
417
  /**
416
418
  * If a preflight script sets this to true, the executor skips the agent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.212",
3
+ "version": "0.4.213-live.0",
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",