@kody-ade/kody-engine 0.4.350 → 0.4.352
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 +402 -303
- package/dist/implementations/types.ts +4 -0
- package/package.json +1 -1
|
@@ -438,6 +438,7 @@ export interface Context {
|
|
|
438
438
|
workflow?: string
|
|
439
439
|
implementation?: string
|
|
440
440
|
cliArgs: Record<string, unknown>
|
|
441
|
+
workflowFacts?: Record<string, unknown>
|
|
441
442
|
saveReport?: boolean
|
|
442
443
|
resultTarget?: CapabilityResultTarget
|
|
443
444
|
}
|
|
@@ -450,6 +451,7 @@ export interface Context {
|
|
|
450
451
|
workflow?: string
|
|
451
452
|
implementation?: string
|
|
452
453
|
cliArgs: Record<string, unknown>
|
|
454
|
+
workflowFacts?: Record<string, unknown>
|
|
453
455
|
saveReport?: boolean
|
|
454
456
|
resultTarget?: CapabilityResultTarget
|
|
455
457
|
}
|
|
@@ -517,6 +519,8 @@ export interface Job {
|
|
|
517
519
|
target?: number
|
|
518
520
|
/** Args passed through to the implementation (mirrors DispatchResult.cliArgs). */
|
|
519
521
|
cliArgs: Record<string, unknown>
|
|
522
|
+
/** Internal workflow resume context. Not passed to capability CLI args. */
|
|
523
|
+
workflowFacts?: Record<string, unknown>
|
|
520
524
|
/** Run once now ("instant") or on the schedule ("scheduled"). */
|
|
521
525
|
flavor: JobFlavor
|
|
522
526
|
/** Manual force-run (bypass cadence) for a scheduled job. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.352",
|
|
4
4
|
"description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|