@burtson-labs/bandit-stealth-cli 1.7.302 → 1.7.303

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.
Files changed (3) hide show
  1. package/README.md +3 -3
  2. package/dist/cli.js +907 -898
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -68,8 +68,8 @@ That's it. No API keys. No cloud services. The agent reads your code, searches,
68
68
  - **`!`-prefix shell escape** — `!cmd` runs straight in your shell with full TTY access. First-use confirmation gate; per-call yellow box every time after so you can't miss the bypass. Catastrophic patterns (`rm -rf`, `mkfs`, `dd if=`) blocked even here
69
69
  - **Plan execution** — structured multi-step plans for complex refactors
70
70
  - **Session persistence** — every REPL session saved as JSONL under `~/.bandit/sessions/` for later resume
71
- - **Turn traces** — every agent turn writes a JSONL trace under `.bandit/turns`; `/trace` turns it into a readable timeline of prompts, permission requests/decisions, tool calls, retries, native-tool fallbacks, errors, and final output
72
- - **`/insights` HTML report** — local-only activity report: tool stats, top-touched files, languages, longest streak, peak day, error patterns, optional AI summary, mailto share
71
+ - **Turn traces** — every agent turn writes a JSONL trace under `.bandit/turns`; `/trace` turns the latest trace into a readable timeline, `/trace list` browses recent workspace/global turns, and `/trace failed` filters recovery/debugging runs
72
+ - **`/insights` HTML report** — local-only activity report: reads global sessions plus workspace/global turn logs, reconstructs cross-repo wins, surfaces bigger arcs and outcome snippets, then adds tool stats, top-touched files, languages, streak, peak day, error patterns, optional AI summary, and mailto share
73
73
  - **Model behavior profiles** — `/profile` shows how Bandit treats the active model: native vs text tools, fallback policy, safe context budget, thinking default, parallel-tool limits, and known failure modes
74
74
  - **Project memory** — drop a `BANDIT.md` or `CLAUDE.md` at your workspace root and it's auto-loaded into the system prompt
75
75
  - **File + image mentions** — `@path` auto-inlines files; images are either sent multimodally or OCR'd locally (Apple Vision / tesseract)
@@ -104,7 +104,7 @@ Type `?` on an empty prompt for the at-a-glance overlay; `/help` for the full li
104
104
  | `/clear` | Reset conversation (keeps session id) |
105
105
  | `/compact` | Trim old tool results to fit the context window |
106
106
  | `/rewind [id]` | Restore a file from a per-edit checkpoint |
107
- | `/trace`, `/trace list`, `/trace <id>` | Inspect turn traces from `.bandit/turns` |
107
+ | `/trace`, `/trace list`, `/trace failed`, `/trace <id>` | Inspect turn traces from workspace/global `.bandit/turns` |
108
108
  | `/tasks` | List background subagent tasks (`/tasks <id>` drill-down, `/tasks cancel <id>`) |
109
109
  | `/plan <goal>` | Heuristic plan first, y/N to execute |
110
110
  | `/init` | Scaffold `BANDIT.md` from a repo scan |