@kimbho/kimbho-cli 0.1.2 → 0.1.4
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 -2
- package/dist/index.cjs +646 -81
- package/dist/index.cjs.map +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,12 +36,18 @@ kimbho plan "build a coding agent"
|
|
|
36
36
|
kimbho /models openrouter --search claude --limit 10
|
|
37
37
|
```
|
|
38
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.
|
|
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. Provider and model selections apply to all agent roles by default.
|
|
40
40
|
|
|
41
41
|
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
|
|
@@ -49,10 +55,19 @@ Useful shell commands:
|
|
|
49
55
|
/quit
|
|
50
56
|
```
|
|
51
57
|
|
|
58
|
+
LM Studio example:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
/providers add lmstudio lmstudio-lan --base-url http://192.168.0.70:1234
|
|
62
|
+
/models
|
|
63
|
+
/select 1
|
|
64
|
+
```
|
|
65
|
+
|
|
52
66
|
`run` now auto-executes the supported ready-task frontier and persists session events. `resume --execute` continues that frontier from the latest session snapshot.
|
|
53
67
|
|
|
54
68
|
## Notes
|
|
55
69
|
|
|
56
70
|
- The published CLI bundles the internal Kimbho packages so installation does not depend on the monorepo layout.
|
|
57
71
|
- Brain and provider configuration is stored in `.kimbho/config.json`.
|
|
58
|
-
- Use `kimbho models use <model> --provider <id> --
|
|
72
|
+
- Use `kimbho models use <model> --provider <id> --set-default` to select a provider model for the whole system.
|
|
73
|
+
- Use `kimbho brains assign --role <role> ...` only when you intentionally want an advanced per-role override.
|