@wrongstack/cli 0.277.1 → 0.280.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 +7 -1
- package/dist/index.js +21197 -19009
- package/dist/index.js.map +1 -1
- package/package.json +17 -13
package/README.md
CHANGED
|
@@ -10,13 +10,16 @@ Most users don't depend on this package directly — they install [`wrongstack`]
|
|
|
10
10
|
npm install -g wrongstack
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
The `wrongstack` umbrella package transitively installs `@wrongstack/cli` along with `core`, `runtime`, `providers`, `tools`, `mcp`, `plug-lsp`, `telegram`, `tui`, and
|
|
13
|
+
The `wrongstack` umbrella package transitively installs `@wrongstack/cli` along with `core`, `runtime`, `providers`, `tools`, `mcp`, `plug-lsp`, `telegram`, `tui`, `webui`, and optional desktop support.
|
|
14
14
|
|
|
15
15
|
## Commands
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
wstack # interactive REPL — no flags = default
|
|
19
19
|
wstack --tui # Ink-based TUI
|
|
20
|
+
wstack desktop # Electron desktop app (same as --desktop)
|
|
21
|
+
wstack webui # project WebUI (same as --webui)
|
|
22
|
+
wstack hq # project-independent HQ dashboard (same as --hq)
|
|
20
23
|
wstack --yolo # auto-approve normal project work; destructive calls still prompt
|
|
21
24
|
wstack "refactor src/auth.ts" # one-shot query (no interactive loop)
|
|
22
25
|
|
|
@@ -95,6 +98,9 @@ API keys are encrypted at rest with AES-256-GCM and the key file at `~/.wrongsta
|
|
|
95
98
|
| Flag | Effect |
|
|
96
99
|
|------|--------|
|
|
97
100
|
| `--tui` / `--no-tui` | Force/disable Ink TUI |
|
|
101
|
+
| `--desktop` | Open WrongStack Desktop (also `wstack desktop`) |
|
|
102
|
+
| `--webui` | Serve the project WebUI (also `wstack webui`) |
|
|
103
|
+
| `--hq` | Start the project-independent HQ dashboard (also `wstack hq`) |
|
|
98
104
|
| `--yolo` | Auto-approve normal in-project tool calls |
|
|
99
105
|
| `--confirm-destructive` | Deprecated; destructive confirmations are always on in YOLO |
|
|
100
106
|
| `--yolo-destructive` | Deprecated compatibility flag; destructive calls still prompt |
|