@kody-ade/kody-engine 0.4.520 → 0.4.521
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 +6 -3
- package/package.json +1 -1
package/dist/bin/kody.js
CHANGED
|
@@ -15,7 +15,7 @@ var init_package = __esm({
|
|
|
15
15
|
"package.json"() {
|
|
16
16
|
package_default = {
|
|
17
17
|
name: "@kody-ade/kody-engine",
|
|
18
|
-
version: "0.4.
|
|
18
|
+
version: "0.4.521",
|
|
19
19
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative implementation profiles.",
|
|
20
20
|
license: "MIT",
|
|
21
21
|
type: "module",
|
|
@@ -4638,7 +4638,8 @@ function normalizeWorkflowDefinition(value) {
|
|
|
4638
4638
|
}
|
|
4639
4639
|
const workflow = parseCapabilityWorkflow({
|
|
4640
4640
|
steps: raw.steps,
|
|
4641
|
-
startAt: raw.startAt
|
|
4641
|
+
startAt: raw.startAt,
|
|
4642
|
+
report: raw.report
|
|
4642
4643
|
});
|
|
4643
4644
|
const steps = workflow?.steps;
|
|
4644
4645
|
const capabilities = steps ? steps.map((step) => step.capability) : normalizeWorkflowCapabilities(raw.capabilities);
|
|
@@ -4650,6 +4651,7 @@ function normalizeWorkflowDefinition(value) {
|
|
|
4650
4651
|
...raw.runWithoutApproval === true ? { runWithoutApproval: true } : {},
|
|
4651
4652
|
...steps ? { steps } : {},
|
|
4652
4653
|
...workflow?.startAt ? { startAt: workflow.startAt } : {},
|
|
4654
|
+
...workflow?.report ? { report: workflow.report } : {},
|
|
4653
4655
|
...typeof raw.createdAt === "string" ? { createdAt: raw.createdAt } : {},
|
|
4654
4656
|
...typeof raw.updatedAt === "string" ? { updatedAt: raw.updatedAt } : {}
|
|
4655
4657
|
};
|
|
@@ -4702,7 +4704,8 @@ function normalizeWorkflowCapabilities(value) {
|
|
|
4702
4704
|
function workflowDefinitionToConfig(workflow) {
|
|
4703
4705
|
return {
|
|
4704
4706
|
steps: workflow.steps ?? workflow.capabilities.map((capability) => ({ capability })),
|
|
4705
|
-
...workflow.startAt ? { startAt: workflow.startAt } : {}
|
|
4707
|
+
...workflow.startAt ? { startAt: workflow.startAt } : {},
|
|
4708
|
+
...workflow.report ? { report: workflow.report } : {}
|
|
4706
4709
|
};
|
|
4707
4710
|
}
|
|
4708
4711
|
function parseWorkflowDefinition(content) {
|
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.521",
|
|
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",
|