@kimbho/kimbho-cli 0.1.7 → 0.1.8
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 -1
- package/dist/index.cjs +5456 -3934
- package/dist/index.cjs.map +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ From a packed tarball:
|
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
24
|
npm run pack:cli
|
|
25
|
-
npm install -g ./kimbho-kimbho-cli
|
|
25
|
+
npm install -g ./kimbho-kimbho-cli-<version>.tgz
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
## Usage
|
|
@@ -54,6 +54,8 @@ Useful shell commands:
|
|
|
54
54
|
/plan build a coding agent
|
|
55
55
|
/run scaffold a SaaS starter
|
|
56
56
|
/resume --execute --max-auto-tasks 2 --max-repair-attempts 2
|
|
57
|
+
/approve
|
|
58
|
+
/deny
|
|
57
59
|
/review
|
|
58
60
|
/quit
|
|
59
61
|
```
|
|
@@ -67,6 +69,7 @@ build a landing page for a small storefront
|
|
|
67
69
|
That prompt now runs through the agent execution path, streams live task and tool activity while it executes, and then prints the saved session summary instead of returning a plain chat answer.
|
|
68
70
|
During an active shell run, `Ctrl+C` now requests a pause instead of killing the shell; use `/resume` to continue the saved session.
|
|
69
71
|
Shell runs now also show a compact live run board with active tasks, budgets, token usage, and the latest runtime note while execution is in flight.
|
|
72
|
+
When a run pauses for an approval-required action, use `/approve` or `/deny` to resolve the pending request and continue the saved session.
|
|
70
73
|
|
|
71
74
|
LM Studio example:
|
|
72
75
|
|
|
@@ -90,6 +93,7 @@ If multiple specialist tasks are ready at the same time, Kimbho now schedules th
|
|
|
90
93
|
Those concurrent integrations are now serialized, so overlapping edits do not race generic patch application anymore.
|
|
91
94
|
If a direct integration fails, Kimbho now replays the specialist diff on top of the latest workspace snapshot in a retry sandbox, reapplies a refreshed patch when that drift is mergeable, and preserves the original patch artifact when it is not.
|
|
92
95
|
When the replay path still cannot land, Kimbho now writes an integration-conflict bundle with the relevant patch paths, conflicting files, failure output, and operator next steps.
|
|
96
|
+
If that failure originates from a specialist task, Kimbho now rewrites the task into an `integrator` handoff instead of leaving it as a raw blocked patch failure.
|
|
93
97
|
Kimbho also has managed background process tools and live HTTP verification: `process.start`, `process.list`, `process.logs`, `process.stop`, and `http.fetch`.
|
|
94
98
|
Kimbho now also has browser-session tools for headless Chrome verification: `browser.open`, `browser.inspect`, `browser.click`, `browser.fill`, `browser.list`, and `browser.close`.
|
|
95
99
|
Shell runs now surface model-usage telemetry when the provider returns token counts.
|