@kody-ade/kody-engine-lite 0.1.84 → 0.1.85
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 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -117,6 +117,7 @@ Kody auto-starts the LiteLLM proxy. [Full LiteLLM guide →](docs/LITELLM.md)
|
|
|
117
117
|
| `@kody review` | Review any PR — structured findings + GitHub approve/request-changes (falls back to comment if self-review blocked) |
|
|
118
118
|
| `@kody fix` | Re-run from build with human PR feedback + Kody's review as context |
|
|
119
119
|
| `@kody fix-ci` | Fix failing CI checks (auto-triggered with loop guard) |
|
|
120
|
+
| `@kody resolve` | Merge default branch into PR, AI-resolve conflicts, verify, push |
|
|
120
121
|
| `@kody rerun` | Resume from failed or paused stage |
|
|
121
122
|
| `@kody rerun --from <stage>` | Resume from a specific stage |
|
|
122
123
|
| `@kody approve` | Resume after questions or risk gate |
|
|
@@ -130,6 +131,7 @@ kody-engine-lite run --task "Add retry utility" --local
|
|
|
130
131
|
kody-engine-lite review --pr-number 42 # Standalone PR review
|
|
131
132
|
kody-engine-lite fix --issue-number 42 --feedback "Use middleware pattern"
|
|
132
133
|
kody-engine-lite fix-ci --pr-number 42
|
|
134
|
+
kody-engine-lite resolve --pr-number 42 # Merge + resolve conflicts
|
|
133
135
|
kody-engine-lite rerun --issue-number 42 --from verify
|
|
134
136
|
```
|
|
135
137
|
|