@kody-ade/kody-engine-lite 0.1.61 → 0.1.63
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 +8 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ Most AI coding tools are **autocomplete** (Copilot) or **chat-based** (Cursor, C
|
|
|
40
40
|
└──────────────────────────┬──────────────────────────────────┘
|
|
41
41
|
│
|
|
42
42
|
┌────────────▼────────────┐
|
|
43
|
-
│ LOW? skip to
|
|
43
|
+
│ LOW? skip to ③ │
|
|
44
44
|
│ MEDIUM? continue │
|
|
45
45
|
│ HIGH? continue │
|
|
46
46
|
└────────────┬────────────┘
|
|
@@ -124,10 +124,10 @@ This analyzes your project and generates:
|
|
|
124
124
|
- **Config** (`kody.config.json` — auto-detected quality commands, git, GitHub settings)
|
|
125
125
|
- **Project memory** (`.kody/memory/` — architecture and conventions)
|
|
126
126
|
- **Customized step files** (`.kody/steps/` — see below)
|
|
127
|
-
- **GitHub labels** for lifecycle tracking
|
|
128
|
-
|
|
129
127
|
Then commits and pushes everything.
|
|
130
128
|
|
|
129
|
+
> **Note:** GitHub labels for lifecycle tracking are created automatically during `@kody bootstrap`.
|
|
130
|
+
|
|
131
131
|
### 4. Use
|
|
132
132
|
|
|
133
133
|
Comment on any GitHub issue:
|
|
@@ -246,10 +246,11 @@ name: build
|
|
|
246
246
|
| Doc | What's in it |
|
|
247
247
|
|-----|-------------|
|
|
248
248
|
| [Pipeline](docs/PIPELINE.md) | Stage details, shared sessions, complexity skipping, artifacts |
|
|
249
|
+
| [Bootstrap](docs/BOOTSTRAP.md) | Project memory, step files, labels — what bootstrap generates and when to run it |
|
|
249
250
|
| [Features](docs/FEATURES.md) | Risk gate, diagnosis, sessions, retrospective, auto-learn, labels |
|
|
250
251
|
| [LiteLLM](docs/LITELLM.md) | Non-Anthropic model setup, auto-start, tested providers |
|
|
251
252
|
| [Configuration](docs/CONFIGURATION.md) | Full config reference, env vars, workflow setup |
|
|
252
|
-
| [Comparison](docs/COMPARISON.md) | vs Copilot, Devin, Cursor, Cline, SWE-agent
|
|
253
|
+
| [Comparison](docs/COMPARISON.md) | vs Copilot, Devin, Cursor, Cline, OpenHands, SWE-agent |
|
|
253
254
|
| [Architecture](docs/ARCHITECTURE.md) | Source tree, state machine diagram, development guide |
|
|
254
255
|
| [FAQ](docs/FAQ.md) | Common questions about usage, models, security, cost |
|
|
255
256
|
|
package/dist/bin/cli.js
CHANGED
|
@@ -2033,7 +2033,14 @@ Updated existing PR: ${existingPr.url}
|
|
|
2033
2033
|
PR #${existingPr.number}
|
|
2034
2034
|
`);
|
|
2035
2035
|
} else {
|
|
2036
|
-
|
|
2036
|
+
let pr = createPR(head, base, title, body);
|
|
2037
|
+
if (!pr) {
|
|
2038
|
+
const recovered = getPRForBranch(head);
|
|
2039
|
+
if (recovered) {
|
|
2040
|
+
logger.info(` PR recovered after create error: ${recovered.url}`);
|
|
2041
|
+
pr = recovered;
|
|
2042
|
+
}
|
|
2043
|
+
}
|
|
2037
2044
|
if (pr) {
|
|
2038
2045
|
if (ctx.input.issueNumber && !ctx.input.local) {
|
|
2039
2046
|
try {
|