@burtson-labs/bandit-stealth-cli 1.7.96 → 1.7.98
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 +6 -2
- package/dist/cli.js +582 -541
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,6 +57,8 @@ That's it. No API keys. No cloud services. The agent reads your code, searches,
|
|
|
57
57
|
- **Skills system** — agent activates specialized skills based on your prompt, and can create its own
|
|
58
58
|
- **Background subagents** — long investigations spawn detached; status bar shows `bg:N running`; you keep talking; synopsis auto-injects when ready (`/tasks` to inspect, drill down, or cancel)
|
|
59
59
|
- **`watch_command`** — run a dev server / `--watch` test runner for a bounded window, agent reacts to what came out
|
|
60
|
+
- **`find_directory`** — cross-repo discovery; ask "open the auth-api repo" and the agent sweeps `~/Documents/GitHub`, `~/GitHub`, `~/Projects`, `~/code`, `~/dev`, `~/repos`, `~/work`, `~/src`, plus the workspace parent — no "where is that repo?" round-trips
|
|
61
|
+
- **Installs CLIs on demand** — ask Bandit to install `ripgrep`, `httpie`, the GitHub CLI, etc. and it picks the right package manager (`brew`, `npm install -g`, `pip install`, `cargo install`, `gem install`, `go install`) and runs it through the permission gate
|
|
60
62
|
- **Plan execution** — structured multi-step plans for complex refactors
|
|
61
63
|
- **Session persistence** — every REPL session saved as JSONL under `~/.bandit/sessions/` for later resume
|
|
62
64
|
- **Project memory** — drop a `BANDIT.md` or `CLAUDE.md` at your workspace root and it's auto-loaded into the system prompt
|
|
@@ -79,10 +81,11 @@ Type `?` on an empty prompt for the at-a-glance overlay; `/help` for the full li
|
|
|
79
81
|
| `/login <key>` | Save a Bandit Cloud API key to `~/.bandit/config.json` (also `/login`, `/login clear`) |
|
|
80
82
|
| `/usage` | Bandit Cloud session + weekly usage limits (`/usage check` for one-line ⚠ flag) |
|
|
81
83
|
| `/model [name]` | Switch model mid-session |
|
|
82
|
-
| `/
|
|
84
|
+
| `/ollama [url]` | Show or set the Ollama endpoint — `/ollama default` resets to `http://localhost:11434` |
|
|
85
|
+
| `/think on`, `/think off`, `/think auto` | Override per-model thinking-mode default |
|
|
83
86
|
| `/theme [name]` | Pick a color palette (`/theme` lists; saved to global config) |
|
|
84
87
|
| `/skills` | List loaded skills |
|
|
85
|
-
| `/session list
|
|
88
|
+
| `/session list`, `/session resume <id>`, `/session new` | Manage sessions |
|
|
86
89
|
| `/memory` | Show auto-loaded `BANDIT.md` / `CLAUDE.md` |
|
|
87
90
|
| `/config` | Show effective config + path (secrets redacted) |
|
|
88
91
|
| `/clear` | Reset conversation (keeps session id) |
|
|
@@ -132,6 +135,7 @@ Pull one with `ollama pull <model>`. Bandit auto-detects each model's capabiliti
|
|
|
132
135
|
| `bandit-logic` (cloud) | Bandit gateway (API key) | **Default for cloud.** Agent-tuned wrapper around Qwen 3.6 27B with thinking mode. Best reliability on multi-step agent tasks — what we recommend trying first. |
|
|
133
136
|
| `qwen3.6:27b` | Local / Mac 48GB+, high-VRAM GPU (~17 GB) | **Best local pick.** Same family as `bandit-logic`, runs offline. Probes the filesystem instead of asking for clarification — real agent behavior. |
|
|
134
137
|
| `gemma4:26b` | Local / Mac 32GB+ (~17 GB) | Solid alternative when Qwen 3.6 is too heavy for your hardware. Multimodal, 128K context. |
|
|
138
|
+
| `gemma4:e4b` | Local / laptop-class (~3 GB) | Lightweight pick that punches above its weight. Validated on real Bandit runs — clean tool sequencing (`ls` → narrow → `read_file`), no hallucinated paths. Right pick when you want a local agent that doesn't pin your fans. |
|
|
135
139
|
| `gemma4:31b` | Local / Mac 64GB+, GPU node | Bigger context, better reasoning for complex refactors. |
|
|
136
140
|
| `qwen2.5-coder:7b` | Local / Mac (~4.7 GB) | Fast lightweight pick. Native tool calling. Best for "given context, do X" tasks rather than autonomous discovery. |
|
|
137
141
|
| `devstral:latest` | Local / Mac 32GB+ | Mistral's agent-tuned model — strong tool use. |
|