@kody-ade/kody-engine 0.2.22 → 0.2.26
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 +3 -1
- package/dist/bin/kody2.js +694 -302
- package/dist/executables/fix/profile.json +3 -0
- package/dist/executables/fix/prompt.md +14 -7
- package/dist/executables/types.ts +2 -0
- package/package.json +15 -14
- package/templates/kody2.yml +48 -15
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
└─────────────────────────────────────────────┘
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Every top-level command is its own auto-discovered executable (`run`, `fix`, `fix-ci`, `resolve`, `review`, `plan`, `orchestrator`, `release`, `watch-*`, `init`). The router has no hardcoded command switch beyond `ci`/`help`/`version` — drop a new `src/executables/<name>/` directory with a `profile.json` + `prompt.md` and `kody2 <name>` starts working. The executor knows nothing about any specific command.
|
|
21
|
+
Every top-level command is its own auto-discovered executable (`run`, `fix`, `fix-ci`, `resolve`, `review`, `sync`, `plan`, `plan-verify`, `orchestrator`, `release`, `watch-*`, `init`). The router has no hardcoded command switch beyond `ci`/`help`/`version` — drop a new `src/executables/<name>/` directory with a `profile.json` + `prompt.md` and `kody2 <name>` starts working. The executor knows nothing about any specific command.
|
|
22
22
|
|
|
23
23
|
## Install in a consumer repo
|
|
24
24
|
|
|
@@ -32,9 +32,11 @@ Every top-level command is its own auto-discovered executable (`run`, `fix`, `fi
|
|
|
32
32
|
|
|
33
33
|
```
|
|
34
34
|
kody2 run --issue <N> # implement an issue
|
|
35
|
+
kody2 plan --issue <N> # produce a plan artifact for run
|
|
35
36
|
kody2 fix --pr <N> [--feedback ...] # apply PR review feedback
|
|
36
37
|
kody2 fix-ci --pr <N> [--run-id <ID>] # fix failing CI
|
|
37
38
|
kody2 resolve --pr <N> # merge default branch in, resolve conflicts
|
|
39
|
+
kody2 sync --pr <N> # merge default branch into PR branch (no agent)
|
|
38
40
|
kody2 review --pr <N> # read-only structured PR review
|
|
39
41
|
kody2 ci --issue <N> # CI preflight + run
|
|
40
42
|
```
|