@kimbho/kimbho-cli 0.1.1 → 0.1.3
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 +9 -0
- package/dist/index.cjs +1204 -221
- package/dist/index.cjs.map +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,12 +42,21 @@ Useful shell commands:
|
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
44
|
/status
|
|
45
|
+
/providers
|
|
46
|
+
/providers add openrouter
|
|
47
|
+
/providers use openrouter-main
|
|
48
|
+
/brain coder
|
|
49
|
+
/models claude
|
|
50
|
+
/select 1
|
|
45
51
|
/model
|
|
46
52
|
/plan build a coding agent
|
|
47
53
|
/run scaffold a SaaS starter
|
|
54
|
+
/resume --execute --max-auto-tasks 2
|
|
48
55
|
/quit
|
|
49
56
|
```
|
|
50
57
|
|
|
58
|
+
`run` now auto-executes the supported ready-task frontier and persists session events. `resume --execute` continues that frontier from the latest session snapshot.
|
|
59
|
+
|
|
51
60
|
## Notes
|
|
52
61
|
|
|
53
62
|
- The published CLI bundles the internal Kimbho packages so installation does not depend on the monorepo layout.
|