@kimbho/kimbho-cli 0.1.20 → 0.1.21
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 +16 -2
- package/dist/index.cjs +11564 -3337
- package/dist/index.cjs.map +4 -4
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -30,9 +30,15 @@ npm install -g ./kimbho-kimbho-cli-<version>.tgz
|
|
|
30
30
|
```bash
|
|
31
31
|
kimbho
|
|
32
32
|
kimbho shell
|
|
33
|
+
kimbho "explain this repo"
|
|
34
|
+
kimbho exec --json "explain this repo"
|
|
35
|
+
kimbho completion bash
|
|
33
36
|
kimbho --help
|
|
34
37
|
kimbho init
|
|
35
38
|
kimbho plan "build a coding agent"
|
|
39
|
+
kimbho fork --last
|
|
40
|
+
kimbho resume --list
|
|
41
|
+
kimbho -c 'approvalMode="auto"' -c 'brains.coder.providerId="echo"' "hello"
|
|
36
42
|
kimbho /models openrouter --search claude --limit 10
|
|
37
43
|
```
|
|
38
44
|
|
|
@@ -81,7 +87,7 @@ LM Studio example:
|
|
|
81
87
|
|
|
82
88
|
`run` now auto-executes the supported ready-task frontier and persists session events. Specialist tasks are executed through a bounded model-driven tool loop that can list files, search source contents, read files, write files, apply patches, inspect git diff, run verification commands, and emit resumable transcripts. `resume --execute` continues that frontier from the latest session snapshot.
|
|
83
89
|
Kimbho also has repo intelligence tools (`repo.index`, `repo.query`) so agents can reason over symbols, routes, schemas, packages, and import edges instead of relying only on raw file reads.
|
|
84
|
-
For empty workspaces, Kimbho now has deterministic scaffold presets for `static-landing`, `node-cli-typescript`, `next-prisma-postgres`, and `kimbho-cli-monorepo`, so the scaffold task can generate a real starter app without needing preexisting repo state or a prior `.kimbho/config.
|
|
90
|
+
For empty workspaces, Kimbho now has deterministic scaffold presets for `static-landing`, `node-cli-typescript`, `next-prisma-postgres`, and `kimbho-cli-monorepo`, so the scaffold task can generate a real starter app without needing preexisting repo state or a prior `.kimbho/config.toml`.
|
|
85
91
|
For existing repositories, specialists now preload deterministic repo context before the first model action: `repo.index`, `repo.query`, and a small set of repo-defining file reads are injected automatically into the transcript and prompt context.
|
|
86
92
|
When resuming the current saved session, that saved session context is also injected into the next specialist run so the model does not restart from zero.
|
|
87
93
|
After the agent changes workspace state, it now has to pass a verification step before the task can finish.
|
|
@@ -106,9 +112,17 @@ kimbho run "fix the failing test suite" --max-agent-steps 10 --max-repair-attemp
|
|
|
106
112
|
kimbho resume --execute --max-auto-tasks 2 --max-repair-attempts 3
|
|
107
113
|
```
|
|
108
114
|
|
|
115
|
+
Useful parity-oriented flags:
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
kimbho --profile local-dev "summarize this repo"
|
|
119
|
+
kimbho -c 'sandboxMode="read-only"' exec --output-format json "explain the current diff"
|
|
120
|
+
kimbho --add-dir ../shared-lib --full-auto run "wire the shared package into this app"
|
|
121
|
+
```
|
|
122
|
+
|
|
109
123
|
## Notes
|
|
110
124
|
|
|
111
125
|
- The published CLI bundles the internal Kimbho packages so installation does not depend on the monorepo layout.
|
|
112
|
-
- Brain and provider configuration is stored in `.kimbho/config.
|
|
126
|
+
- Brain and provider configuration is stored in `.kimbho/config.toml` with optional `.kimbho/config.local.toml` overrides.
|
|
113
127
|
- Use `kimbho models use <model> --provider <id> --set-default` to select a provider model for the whole system.
|
|
114
128
|
- Use `kimbho brains assign --role <role> ...` only when you intentionally want an advanced per-role override.
|