@kimbho/kimbho-cli 0.1.0 → 0.1.2
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 +17 -0
- package/dist/index.cjs +1070 -148
- package/dist/index.cjs.map +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,12 +28,29 @@ npm install -g ./kimbho-kimbho-cli-0.1.0.tgz
|
|
|
28
28
|
## Usage
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
+
kimbho
|
|
32
|
+
kimbho shell
|
|
31
33
|
kimbho --help
|
|
32
34
|
kimbho init
|
|
33
35
|
kimbho plan "build a coding agent"
|
|
34
36
|
kimbho /models openrouter --search claude --limit 10
|
|
35
37
|
```
|
|
36
38
|
|
|
39
|
+
Bare `kimbho` opens the interactive shell. Within that shell, plain-English input is treated as `run <goal>`, and slash commands like `/plan`, `/run`, `/models`, and `/brains` are supported.
|
|
40
|
+
|
|
41
|
+
Useful shell commands:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
/status
|
|
45
|
+
/model
|
|
46
|
+
/plan build a coding agent
|
|
47
|
+
/run scaffold a SaaS starter
|
|
48
|
+
/resume --execute --max-auto-tasks 2
|
|
49
|
+
/quit
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
`run` now auto-executes the supported ready-task frontier and persists session events. `resume --execute` continues that frontier from the latest session snapshot.
|
|
53
|
+
|
|
37
54
|
## Notes
|
|
38
55
|
|
|
39
56
|
- The published CLI bundles the internal Kimbho packages so installation does not depend on the monorepo layout.
|