@aayambansal/squint 0.2.6 → 0.2.8
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 +1 -0
- package/dist/{chunk-43L4QXCM.js → chunk-5VKUJPOL.js} +1 -1
- package/dist/{chunk-V3M4WQLH.js → chunk-YTO2YRF7.js} +2 -1
- package/dist/cli.js +694 -445
- package/dist/{commands-7DTZB4JE.js → commands-N33DKZKC.js} +1 -1
- package/dist/{preview-UCH7H5R5.js → preview-XGASKUXR.js} +2 -2
- package/dist/{shots-J7JG2FC4.js → shots-FVG4CDVK.js} +3 -3
- package/dist/{variants-2IM274AL.js → variants-UULPQ7Q5.js} +2 -2
- package/package.json +1 -1
- package/dist/{chunk-YZEFBPBJ.js → chunk-CHZE3UHK.js} +4 -4
- package/dist/{chunk-LVA2OQSR.js → chunk-X6MDBKED.js} +3 -3
package/README.md
CHANGED
|
@@ -132,6 +132,7 @@ squint config set models.claude claude-sonnet-5
|
|
|
132
132
|
squint config set autoDev true # dev server starts with the TUI
|
|
133
133
|
squint config set autoFix true # errors auto-route back (max 2 tries)
|
|
134
134
|
squint config set autoCheck false # skip the per-turn typecheck+lint pass
|
|
135
|
+
squint config set autoReview true # big visual change → automatic self-critique
|
|
135
136
|
squint config set theme ocean # amber · ocean · moss · rose · mono
|
|
136
137
|
squint config set bell false # no bell on turn completion
|
|
137
138
|
squint doctor # engines + Chrome + WebSocket check
|
|
@@ -2,13 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
// src/session/commands.ts
|
|
4
4
|
var COMMANDS = [
|
|
5
|
-
{ name: "dev", description: "start/stop the
|
|
5
|
+
{ name: "dev", args: "[restart|logs]", description: "start/stop the dev server; restart or show recent output" },
|
|
6
6
|
{ name: "check", description: "run all quality gates (typecheck, lint, test, build)" },
|
|
7
7
|
{ name: "problems", description: "list open findings from gates, dev server, runtime, a11y" },
|
|
8
8
|
{ name: "fix", args: "[n]", description: "send all open problems to the engine, or just problem n" },
|
|
9
9
|
{ name: "shot", description: "screenshot the app at mobile/tablet/desktop" },
|
|
10
10
|
{ name: "review", args: "[focus]", description: "screenshots + the engine critiques its own rendered work" },
|
|
11
11
|
{ name: "variants", args: "<2-4> <ask>", description: "parallel design explorations; apply/list/clean" },
|
|
12
|
+
{ name: "sandbox", args: "[on|diff|apply|discard]", description: "asks accumulate in a shadow worktree until you apply" },
|
|
12
13
|
{ name: "undo", description: "revert the last ask (files only)" },
|
|
13
14
|
{ name: "checkpoints", description: "list per-ask checkpoints" },
|
|
14
15
|
{ name: "restore", args: "<n>", description: "rewind files to before ask n" },
|