@kody-ade/kody-engine 0.4.251 → 0.4.253
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/agent-actions/agent-factory/prompt.md +2 -2
- package/dist/agent-actions/types.ts +1 -1
- package/dist/bin/kody.js +781 -405
- package/kody.config.schema.json +1 -1
- package/package.json +23 -22
|
@@ -34,7 +34,7 @@ Use the current Kody vocabulary:
|
|
|
34
34
|
- Do not activate generated definitions yourself.
|
|
35
35
|
- Do not create a consumer-repo PR.
|
|
36
36
|
- The deterministic postflight will open a review PR in the configured state repo under the configured state path.
|
|
37
|
-
- Put generated file paths relative to the
|
|
37
|
+
- Put generated file paths relative to the configured state path, for example `agent-actions/...`, `agent-responsibilities/...`, `agents/...`, `goals/...`, or `memory/...`.
|
|
38
38
|
- Produce complete file contents. Do not describe patches.
|
|
39
39
|
- Prefer a small bundle over a broad framework. Include assumptions in the summary.
|
|
40
40
|
|
|
@@ -53,7 +53,7 @@ PR_SUMMARY:
|
|
|
53
53
|
"summary": "human explanation and assumptions",
|
|
54
54
|
"files": [
|
|
55
55
|
{
|
|
56
|
-
"path": "
|
|
56
|
+
"path": "agent-actions/example/profile.json",
|
|
57
57
|
"content": "{\n \"name\": \"example\"\n}\n"
|
|
58
58
|
}
|
|
59
59
|
]
|
|
@@ -27,7 +27,7 @@ export interface Profile {
|
|
|
27
27
|
action?: string
|
|
28
28
|
/**
|
|
29
29
|
* Optional agent this agentAction runs *as*. When set, the executor
|
|
30
|
-
* loads `.kody/agents/<agent>.md` and injects that agent (authoritative
|
|
30
|
+
* loads hydrated `.kody/agents/<agent>.md` and injects that agent (authoritative
|
|
31
31
|
* identity) ahead of the agentAction's own system-prompt append. This is the
|
|
32
32
|
* unification hook: a "agentResponsibility" is just an agentAction + an agent. Absent →
|
|
33
33
|
* runs with no agent (unchanged legacy behaviour). A declared-but-missing
|