@kody-ade/kody-engine-lite 0.1.139 → 0.1.141
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 +5 -3
- package/dist/bin/cli.js +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -125,8 +125,8 @@ Kody auto-starts the LiteLLM proxy. [Full LiteLLM guide →](docs/LITELLM.md)
|
|
|
125
125
|
| `@kody bootstrap` | Regenerate project memory and step files |
|
|
126
126
|
|
|
127
127
|
```bash
|
|
128
|
-
kody-engine-lite init [--force] # Setup repo: workflow + config
|
|
129
|
-
kody-engine-lite bootstrap [--force] # Generate memory + step files + labels
|
|
128
|
+
kody-engine-lite init [--force] # Setup repo: workflow + config + watch
|
|
129
|
+
kody-engine-lite bootstrap [--force] # Generate memory + step files + labels + digest issue
|
|
130
130
|
kody-engine-lite run --issue-number 42 --local --cwd ./project
|
|
131
131
|
kody-engine-lite run --task "Add retry utility" --local
|
|
132
132
|
kody-engine-lite review --pr-number 42 # Standalone PR review
|
|
@@ -134,6 +134,7 @@ kody-engine-lite fix --issue-number 42 --feedback "Use middleware pattern"
|
|
|
134
134
|
kody-engine-lite fix-ci --pr-number 42
|
|
135
135
|
kody-engine-lite resolve --pr-number 42 # Merge + resolve conflicts
|
|
136
136
|
kody-engine-lite rerun --issue-number 42 --from verify
|
|
137
|
+
kody-engine-lite watch [--dry-run] # Run health monitoring locally
|
|
137
138
|
```
|
|
138
139
|
|
|
139
140
|
[Full CLI reference with all flags and options →](docs/CLI.md)
|
|
@@ -151,13 +152,14 @@ kody-engine-lite rerun --issue-number 42 --from verify
|
|
|
151
152
|
- **Decision Memory** — architectural decisions extracted from reviews persist across tasks ([details](docs/FEATURES.md#decision-memory))
|
|
152
153
|
- **Auto-Learning** — extracts coding conventions from each successful run ([details](docs/FEATURES.md#auto-learning-memory))
|
|
153
154
|
- **Retrospective** — analyzes each run, identifies patterns, suggests improvements ([details](docs/FEATURES.md#retrospective-system))
|
|
155
|
+
- **Kody Watch** — periodic health monitoring: pipeline health, security scanning, config validation every 30 min ([setup guide](docs/WATCH.md))
|
|
154
156
|
- **Anthropic-Compatible Models** — route through LiteLLM to use other providers like MiniMax, Gemini, etc. ([setup guide](docs/LITELLM.md) · [model test results](docs/model-compatibility.md))
|
|
155
157
|
|
|
156
158
|
## Documentation
|
|
157
159
|
|
|
158
160
|
**Understand Kody:** [About](docs/ABOUT.md) · [Architecture](docs/ARCHITECTURE.md) · [Tech Stack](docs/TECH-STACK.md) · [Features](docs/FEATURES.md) · [Pipeline](docs/PIPELINE.md) · [Comparison](docs/COMPARISON.md)
|
|
159
161
|
|
|
160
|
-
**Set up & use:** [CLI](docs/CLI.md) · [Configuration](docs/CONFIGURATION.md) · [Bootstrap](docs/BOOTSTRAP.md) · [Tools](docs/TOOLS.md) · [LiteLLM](docs/LITELLM.md)
|
|
162
|
+
**Set up & use:** [CLI](docs/CLI.md) · [Configuration](docs/CONFIGURATION.md) · [Bootstrap](docs/BOOTSTRAP.md) · [Tools](docs/TOOLS.md) · [Watch](docs/WATCH.md) · [LiteLLM](docs/LITELLM.md)
|
|
161
163
|
|
|
162
164
|
**Reference:** [FAQ](docs/FAQ.md) · [Model Compatibility](docs/model-compatibility.md)
|
|
163
165
|
|
package/dist/bin/cli.js
CHANGED
|
@@ -5214,7 +5214,11 @@ async function startDevServer(opts) {
|
|
|
5214
5214
|
return { ready: false, url: opts.url, pid: void 0, stop: () => {
|
|
5215
5215
|
} };
|
|
5216
5216
|
}
|
|
5217
|
+
let stdout = "";
|
|
5217
5218
|
let stderr = "";
|
|
5219
|
+
child.stdout?.on("data", (chunk) => {
|
|
5220
|
+
stdout += chunk.toString();
|
|
5221
|
+
});
|
|
5218
5222
|
child.stderr?.on("data", (chunk) => {
|
|
5219
5223
|
stderr += chunk.toString();
|
|
5220
5224
|
});
|
|
@@ -5230,6 +5234,9 @@ async function startDevServer(opts) {
|
|
|
5230
5234
|
} else {
|
|
5231
5235
|
logger.warn(` Dev server did not respond within ${timeout}s at ${opts.url}`);
|
|
5232
5236
|
}
|
|
5237
|
+
if (stdout) {
|
|
5238
|
+
logger.warn(` Dev server stdout (last 500 chars): ${stdout.slice(-500)}`);
|
|
5239
|
+
}
|
|
5233
5240
|
if (stderr) {
|
|
5234
5241
|
logger.warn(` Dev server stderr (last 500 chars): ${stderr.slice(-500)}`);
|
|
5235
5242
|
}
|