@kody-ade/kody-engine-lite 0.1.124 → 0.1.126
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 -4
- package/dist/bin/cli.js +1000 -423
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -78,6 +78,7 @@ Create a new GitHub issue (e.g., "Setup Kody") and comment:
|
|
|
78
78
|
This analyzes your codebase with an LLM and generates:
|
|
79
79
|
- **Project memory** (`.kody/memory/` — architecture and conventions)
|
|
80
80
|
- **Customized step files** (`.kody/steps/` — repo-aware prompts for every stage)
|
|
81
|
+
- **Tools template** (`.kody/tools.yml` — configure external tools like Playwright, see [Tools](docs/TOOLS.md))
|
|
81
82
|
- **GitHub labels** for lifecycle tracking (14 labels)
|
|
82
83
|
|
|
83
84
|
### 4. Use
|
|
@@ -150,15 +151,15 @@ kody-engine-lite rerun --issue-number 42 --from verify
|
|
|
150
151
|
- **Decision Memory** — architectural decisions extracted from reviews persist across tasks ([details](docs/FEATURES.md#decision-memory))
|
|
151
152
|
- **Auto-Learning** — extracts coding conventions from each successful run ([details](docs/FEATURES.md#auto-learning-memory))
|
|
152
153
|
- **Retrospective** — analyzes each run, identifies patterns, suggests improvements ([details](docs/FEATURES.md#retrospective-system))
|
|
153
|
-
- **Anthropic-Compatible Models** — route through LiteLLM to use other providers like MiniMax, Gemini, etc. ([setup guide](docs/LITELLM.md))
|
|
154
|
+
- **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))
|
|
154
155
|
|
|
155
156
|
## Documentation
|
|
156
157
|
|
|
157
|
-
**Understand Kody:** [About](docs/ABOUT.md) · [Tech Stack](docs/TECH-STACK.md) · [Features](docs/FEATURES.md) · [Pipeline](docs/PIPELINE.md) · [Comparison](docs/COMPARISON.md)
|
|
158
|
+
**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)
|
|
158
159
|
|
|
159
|
-
**Set up & use:** [CLI](docs/CLI.md) · [Configuration](docs/CONFIGURATION.md) · [Bootstrap](docs/BOOTSTRAP.md) · [LiteLLM](docs/LITELLM.md)
|
|
160
|
+
**Set up & use:** [CLI](docs/CLI.md) · [Configuration](docs/CONFIGURATION.md) · [Bootstrap](docs/BOOTSTRAP.md) · [Tools](docs/TOOLS.md) · [LiteLLM](docs/LITELLM.md)
|
|
160
161
|
|
|
161
|
-
**Reference:** [
|
|
162
|
+
**Reference:** [FAQ](docs/FAQ.md) · [Model Compatibility](docs/model-compatibility.md)
|
|
162
163
|
|
|
163
164
|
## License
|
|
164
165
|
|