@kody-ade/kody-engine 0.4.9 → 0.4.10

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
@@ -3,7 +3,7 @@
3
3
  // package.json
4
4
  var package_default = {
5
5
  name: "@kody-ade/kody-engine",
6
- version: "0.4.9",
6
+ version: "0.4.10",
7
7
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
8
8
  license: "MIT",
9
9
  type: "module",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.9",
3
+ "version": "0.4.10",
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",
@@ -81,13 +81,13 @@ jobs:
81
81
  node-version: 22
82
82
 
83
83
  - name: Write pip cache key for LiteLLM
84
- run: echo "litellm[proxy]" > .kody-pip-requirements.txt
84
+ run: echo "litellm[proxy]" > "${{ runner.temp }}/kody-pip-requirements.txt"
85
85
 
86
86
  - uses: actions/setup-python@v5
87
87
  with:
88
88
  python-version: "3.12"
89
89
  cache: "pip"
90
- cache-dependency-path: .kody-pip-requirements.txt
90
+ cache-dependency-path: ${{ runner.temp }}/kody-pip-requirements.txt
91
91
 
92
92
  - env:
93
93
  ALL_SECRETS: ${{ toJSON(secrets) }}