@kody-ade/kody-engine 0.4.470 → 0.4.472

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.
@@ -22,7 +22,7 @@
22
22
  "outputArtifacts": [],
23
23
  "scripts": {
24
24
  "preflight": [
25
- { "script": "dispatchSimpleLoops" },
25
+ { "script": "dispatchLoops" },
26
26
  { "script": "skipAgent" }
27
27
  ],
28
28
  "postflight": []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.470",
3
+ "version": "0.4.472",
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",
@@ -15,7 +15,6 @@
15
15
  "dependencies": {
16
16
  "@actions/cache": "^6.0.0",
17
17
  "@anthropic-ai/claude-agent-sdk": "0.2.119",
18
- "@kody-ade/agency-domain": "0.5.1",
19
18
  "@kody-ade/engine-contracts": "0.1.0",
20
19
  "@modelcontextprotocol/sdk": "^1.29.0",
21
20
  "ajv": "^8.18.0",
@@ -43,7 +43,7 @@ on:
43
43
  pull_request:
44
44
  types: [opened, synchronize, closed]
45
45
  schedule:
46
- - cron: "*/15 * * * *"
46
+ - cron: "7/15 * * * *"
47
47
 
48
48
  jobs:
49
49
  run:
@@ -70,31 +70,12 @@ jobs:
70
70
  with:
71
71
  node-version: 22
72
72
 
73
- - name: Write pip cache key for LiteLLM
74
- run: echo "litellm[proxy]" > .kody-pip-requirements.txt
75
-
76
- - uses: actions/setup-python@v5
77
- with:
78
- python-version: "3.12"
79
-
80
- - uses: astral-sh/setup-uv@v6
81
-
82
- - name: Hydrate Kody Store definitions
83
- uses: actions/checkout@v4
84
- with:
85
- repository: ${{ vars.KODY_STORE_REPOSITORY || 'aharonyaircohen/kody-company-store' }}
86
- ref: ${{ vars.KODY_STORE_REF || 'main' }}
87
- path: .kody-engine/definitions
88
- token: ${{ secrets.GH_PAT || secrets.KODY_TOKEN || github.token }}
89
-
90
73
  - env:
91
74
  ALL_SECRETS: ${{ toJSON(secrets) }}
92
75
  SESSION_ID: ${{ inputs.sessionId }}
93
76
  INIT_MESSAGE: ${{ inputs.message }}
94
77
  MODEL: ${{ inputs.model }}
95
78
  DASHBOARD_URL: ${{ inputs.dashboardUrl }}
96
- KODY_DEFINITIONS_ROOT: ${{ github.workspace }}/.kody-engine/definitions
97
- KODY_DEFINITIONS_ROOT_CWD: ${{ github.workspace }}
98
79
  working-directory: ${{ github.workspace }}
99
80
  run: |
100
81
  npx -y -p @kody-ade/kody-engine@latest kody-engine ci --cwd "$GITHUB_WORKSPACE"
@@ -1,54 +0,0 @@
1
- {
2
- "role": "primitive",
3
- "kind": "oneshot",
4
- "claudeCode": {
5
- "model": "inherit",
6
- "permissionMode": "default",
7
- "maxTurns": 0,
8
- "maxThinkingTokens": null,
9
- "systemPromptAppend": null,
10
- "cacheable": true,
11
- "tools": [],
12
- "hooks": [],
13
- "skills": [],
14
- "commands": [],
15
- "subagents": [],
16
- "plugins": [],
17
- "mcpServers": []
18
- },
19
- "cliTools": [],
20
- "scripts": {
21
- "preflight": [
22
- {
23
- "script": "dispatchAgencyLoops"
24
- },
25
- {
26
- "script": "skipAgent"
27
- }
28
- ],
29
- "postflight": []
30
- },
31
- "capabilityKind": "act",
32
- "readsFrom": [
33
- "agency-model"
34
- ],
35
- "writesTo": [
36
- "agency-runs",
37
- "agency-state"
38
- ],
39
- "inputs": [
40
- {
41
- "name": "loop",
42
- "flag": "--loop",
43
- "type": "string",
44
- "required": false,
45
- "description": "Optional Loop id to force through the manual Trigger path."
46
- }
47
- ],
48
- "outputContract": {
49
- "actionTypes": [
50
- "AGENT_NOT_RUN"
51
- ]
52
- },
53
- "name": "dispatch-due-loops"
54
- }