@kody-ade/kody-engine 0.4.652 → 0.4.653
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 +1 -1
- package/package.json +1 -1
- package/templates/kody.yml +8 -0
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.653",
|
|
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
|
repository: {
|
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.653",
|
|
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
|
"repository": {
|
package/templates/kody.yml
CHANGED
|
@@ -47,6 +47,10 @@ on:
|
|
|
47
47
|
description: 'Canonical Kody execution request JSON'
|
|
48
48
|
type: string
|
|
49
49
|
default: ''
|
|
50
|
+
runRequestBase64:
|
|
51
|
+
description: 'Transport-safe canonical Kody execution request'
|
|
52
|
+
type: string
|
|
53
|
+
default: ''
|
|
50
54
|
issue_comment:
|
|
51
55
|
types: [created]
|
|
52
56
|
pull_request:
|
|
@@ -88,8 +92,12 @@ jobs:
|
|
|
88
92
|
MODEL: ${{ inputs.model }}
|
|
89
93
|
DASHBOARD_URL: ${{ inputs.dashboardUrl }}
|
|
90
94
|
KODY_RUN_REQUEST_JSON: ${{ inputs.runRequest }}
|
|
95
|
+
KODY_RUN_REQUEST_BASE64: ${{ inputs.runRequestBase64 }}
|
|
91
96
|
working-directory: ${{ github.workspace }}
|
|
92
97
|
run: |
|
|
98
|
+
if [ -n "$KODY_RUN_REQUEST_BASE64" ]; then
|
|
99
|
+
export KODY_RUN_REQUEST_JSON="$(printf '%s' "$KODY_RUN_REQUEST_BASE64" | base64 --decode)"
|
|
100
|
+
fi
|
|
93
101
|
npx -y -p @kody-ade/kody-engine@latest kody-engine
|
|
94
102
|
|
|
95
103
|
- name: Upload Quality Run evidence
|