@kimbho/kimbho-cli 0.1.0

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 ADDED
@@ -0,0 +1,41 @@
1
+ # Kimbho CLI
2
+
3
+ Kimbho CLI is a terminal-native coding agent for planning, execution, and verification.
4
+
5
+ ## Install
6
+
7
+ From npm after publication:
8
+
9
+ ```bash
10
+ npm install -g @kimbho/kimbho-cli
11
+ ```
12
+
13
+ From a local checkout:
14
+
15
+ ```bash
16
+ npm install
17
+ npm run build
18
+ npm install -g ./packages/cli
19
+ ```
20
+
21
+ From a packed tarball:
22
+
23
+ ```bash
24
+ npm run pack:cli
25
+ npm install -g ./kimbho-kimbho-cli-0.1.0.tgz
26
+ ```
27
+
28
+ ## Usage
29
+
30
+ ```bash
31
+ kimbho --help
32
+ kimbho init
33
+ kimbho plan "build a coding agent"
34
+ kimbho /models openrouter --search claude --limit 10
35
+ ```
36
+
37
+ ## Notes
38
+
39
+ - The published CLI bundles the internal Kimbho packages so installation does not depend on the monorepo layout.
40
+ - Brain and provider configuration is stored in `.kimbho/config.json`.
41
+ - Use `kimbho models use <model> --provider <id> --role coder --set-default` to select a provider model and assign it to a brain role.