@kody-ade/kody-engine 0.4.347 → 0.4.349
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/README.md +2 -2
- package/dist/bin/kody.js +218 -241
- package/dist/{executables → implementations}/types.ts +6 -8
- package/dist/plugins/hooks/block-write.json +1 -1
- package/package.json +25 -26
- /package/dist/{executables → implementations}/agent-creator/profile.json +0 -0
- /package/dist/{executables → implementations}/agent-creator/prompt.md +0 -0
- /package/dist/{executables → implementations}/agent-factory/profile.json +0 -0
- /package/dist/{executables → implementations}/agent-factory/prompt.md +0 -0
- /package/dist/{executables → implementations}/capability-creator/profile.json +0 -0
- /package/dist/{executables → implementations}/capability-creator/prompt.md +0 -0
- /package/dist/{executables → implementations}/goal-creator/profile.json +0 -0
- /package/dist/{executables → implementations}/goal-creator/prompt.md +0 -0
- /package/dist/{executables → implementations}/loop-creator/profile.json +0 -0
- /package/dist/{executables → implementations}/loop-creator/prompt.md +0 -0
- /package/dist/{executables → implementations}/run/profile.json +0 -0
- /package/dist/{executables → implementations}/run/prompt.md +0 -0
- /package/dist/{executables → implementations}/workflow-creator/profile.json +0 -0
- /package/dist/{executables → implementations}/workflow-creator/prompt.md +0 -0
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ Capability implementation profiles are private implementation units and contain
|
|
|
93
93
|
**only** three kinds of files: `profile.json` (declaration), `prompt.md` (agent
|
|
94
94
|
instructions), and `.sh` scripts (mechanical side-effect work). Cross-cutting
|
|
95
95
|
TypeScript lives in [src/scripts/](src/scripts/); it can't import from
|
|
96
|
-
`src/
|
|
96
|
+
`src/implementations/` and can't branch on `profile.name`.
|
|
97
97
|
|
|
98
98
|
## Install in a consumer repo
|
|
99
99
|
|
|
@@ -174,7 +174,7 @@ without `tools` keep the legacy Bash/gh toolbox.
|
|
|
174
174
|
|
|
175
175
|
A profile is declarative JSON plus an adjacent markdown body. New public work
|
|
176
176
|
should live under `.kody/capabilities/<slug>/` with `capability.md`; legacy
|
|
177
|
-
implementations under [src/
|
|
177
|
+
implementations under [src/implementations/](src/implementations/) still show the
|
|
178
178
|
older split profile + prompt shape. Adding a new capability should not require
|
|
179
179
|
executor, entry, or dispatch changes.
|
|
180
180
|
|