@burtson-labs/bandit-stealth-cli 1.7.65 → 1.7.67
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 +31 -7
- package/dist/cli.js +85 -85
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,30 +50,54 @@ That's it. No API keys. No cloud services. The agent reads your code, searches,
|
|
|
50
50
|
|
|
51
51
|
## What it does
|
|
52
52
|
|
|
53
|
-
- **Agentic tool use** —
|
|
53
|
+
- **Agentic tool use** — reads files, searches code, runs commands, writes changes
|
|
54
54
|
- **Unified-diff approval gate** — every `write_file` / `apply_edit` shows a colored diff before touching disk
|
|
55
|
-
- **Pre-write validation** — TypeScript, Python, JSON, C#
|
|
56
|
-
- **
|
|
55
|
+
- **Pre-write validation** — TypeScript, Python, JSON, C# syntax-checked before the agent can write
|
|
56
|
+
- **Post-write validation** — JSON edits are re-parsed after write; failure feeds back to the agent on the next turn so it self-corrects without you flagging it
|
|
57
|
+
- **Skills system** — agent activates specialized skills based on your prompt, and can create its own
|
|
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
|
+
- **`watch_command`** — run a dev server / `--watch` test runner for a bounded window, agent reacts to what came out
|
|
57
60
|
- **Plan execution** — structured multi-step plans for complex refactors
|
|
58
61
|
- **Session persistence** — every REPL session saved as JSONL under `~/.bandit/sessions/` for later resume
|
|
59
62
|
- **Project memory** — drop a `BANDIT.md` or `CLAUDE.md` at your workspace root and it's auto-loaded into the system prompt
|
|
60
63
|
- **File + image mentions** — `@path` auto-inlines files; images are either sent multimodally or OCR'd locally (Apple Vision / tesseract)
|
|
61
64
|
- **Clipboard paste** — `Ctrl+V` in the REPL pastes an image straight from your clipboard
|
|
62
65
|
- **Hooks** — `PreToolUse` / `PostToolUse` / `Stop` shell hooks via `.bandit/settings.json`
|
|
66
|
+
- **Themes** — 6 palettes with `/theme`, including colorblind-friendly + ANSI-only options for SSH/CI logs
|
|
67
|
+
- **Cross-platform** — macOS, Linux, Windows; Windows `.cmd`/`.bat` shims (npm/npx/pnpm/tsc) resolved correctly
|
|
68
|
+
- **Update-aware** — fire-and-forget npm-registry check at boot; `update vX.Y.Z available` shows in the status bar when a newer CLI is published
|
|
63
69
|
|
|
64
70
|
---
|
|
65
71
|
|
|
66
72
|
## Slash commands
|
|
67
73
|
|
|
74
|
+
Type `?` on an empty prompt for the at-a-glance overlay; `/help` for the full list.
|
|
75
|
+
|
|
68
76
|
| Command | Does |
|
|
69
77
|
|---|---|
|
|
70
|
-
| `/help` |
|
|
71
|
-
| `/
|
|
72
|
-
| `/
|
|
78
|
+
| `/help` | Full slash-command list |
|
|
79
|
+
| `/login <key>` | Save a Bandit Cloud API key to `~/.bandit/config.json` (also `/login`, `/login clear`) |
|
|
80
|
+
| `/usage` | Bandit Cloud session + weekly usage limits (`/usage check` for one-line ⚠ flag) |
|
|
81
|
+
| `/model [name]` | Switch model mid-session |
|
|
82
|
+
| `/think on\|off\|auto` | Override per-model thinking-mode default |
|
|
83
|
+
| `/theme [name]` | Pick a color palette (`/theme` lists; saved to global config) |
|
|
73
84
|
| `/skills` | List loaded skills |
|
|
74
85
|
| `/session list` / `resume <id>` / `new` | Manage sessions |
|
|
75
86
|
| `/memory` | Show auto-loaded `BANDIT.md` / `CLAUDE.md` |
|
|
76
|
-
| `/config` | Show effective config (secrets redacted) |
|
|
87
|
+
| `/config` | Show effective config + path (secrets redacted) |
|
|
88
|
+
| `/clear` | Reset conversation (keeps session id) |
|
|
89
|
+
| `/compact` | Trim old tool results to fit the context window |
|
|
90
|
+
| `/rewind [id]` | Restore a file from a per-edit checkpoint |
|
|
91
|
+
| `/tasks` | List background subagent tasks (`/tasks <id>` drill-down, `/tasks cancel <id>`) |
|
|
92
|
+
| `/plan <goal>` | Heuristic plan first, y/N to execute |
|
|
93
|
+
| `/init` | Scaffold `BANDIT.md` from a repo scan |
|
|
94
|
+
| `/commit` | Draft a conventional-commit message from the staged diff |
|
|
95
|
+
| `/review [focus]` | Code review of staged changes or branch-vs-main, ends with 🟢/🟡/🔴 |
|
|
96
|
+
| `/refactor <target>` | Concrete refactor suggestions with before/after snippets |
|
|
97
|
+
| `/test <target>` | Generate tests in the project's existing framework |
|
|
98
|
+
| `/explain <target>` | Plain-English walkthrough of a file or function |
|
|
99
|
+
| `/onboard` | New-developer setup checklist for the repo |
|
|
100
|
+
| `/changelog [range]` | Release notes drafted from `git log` |
|
|
77
101
|
| `/exit` | Quit |
|
|
78
102
|
|
|
79
103
|
---
|