@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 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
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  variantsRoot
4
- } from "./chunk-LVA2OQSR.js";
4
+ } from "./chunk-X6MDBKED.js";
5
5
  import {
6
6
  findChrome,
7
7
  screenshot
@@ -2,13 +2,14 @@
2
2
 
3
3
  // src/session/commands.ts
4
4
  var COMMANDS = [
5
- { name: "dev", description: "start/stop the project dev server" },
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" },