@aayambansal/squint 0.4.6 → 0.4.7

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
@@ -174,6 +174,9 @@ squint doctor --probe # run every engine end to end, verify auth act
174
174
  flagged from the live page, and on Next 16+ the framework's own `/_next/mcp`
175
175
  channel feeds structured errors straight into the fix loop. `/context` itemizes
176
176
  the injected-context bill per source, with staleness warnings.
177
+ - **Detachable sessions**: `squint serve` owns the session on a unix socket;
178
+ `squint attach` joins from any terminal (observer seats for teammates, driver
179
+ seat inherited on detach). Crash-proof, ssh-friendly, no cloud.
177
180
  - **Persistent checks**: assertions the engine verifies once persist as
178
181
  `.squint/checks/*.js` and replay against the live page every turn — one-off
179
182
  verifications compound into repo-versioned regression checks.
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ App
4
+ } from "./chunk-M25IQ7C7.js";
5
+ import "./chunk-43NQNIJY.js";
6
+ import "./chunk-7MOKOZOR.js";
7
+ import "./chunk-ARDV4XH6.js";
8
+ import "./chunk-AUJJGMZG.js";
9
+ import "./chunk-YHRAOBI2.js";
10
+ import "./chunk-QCHBDP46.js";
11
+ import "./chunk-YGSF2TSO.js";
12
+ import "./chunk-VH7OOFQP.js";
13
+ import "./chunk-K5QJMSJH.js";
14
+ import "./chunk-WAJXATCO.js";
15
+ import "./chunk-62JNF5M2.js";
16
+ import "./chunk-ZSDCMYZR.js";
17
+ import "./chunk-7CAGWFAQ.js";
18
+ import "./chunk-HC4E42SV.js";
19
+ import "./chunk-IMDRXXFU.js";
20
+ import "./chunk-KVYGPLWW.js";
21
+ export {
22
+ App
23
+ };
@@ -4,7 +4,7 @@ import {
4
4
  hasWebSocket,
5
5
  pixelDiffPct,
6
6
  runFlow
7
- } from "./chunk-X2RZJT4L.js";
7
+ } from "./chunk-HC4E42SV.js";
8
8
  export {
9
9
  cdpCapture,
10
10
  hasWebSocket,
@@ -3,7 +3,7 @@
3
3
  // src/state/state.ts
4
4
  import fs from "fs";
5
5
  import path from "path";
6
- var IGNORED = ["preview/", "state.json", "variants/", "sandbox/", "sandbox.patch", "transcripts/"];
6
+ var IGNORED = ["preview/", "state.json", "variants/", "sandbox/", "sandbox.patch", "transcripts/", "daemon.sock"];
7
7
  function ensureSquintIgnore(cwd) {
8
8
  const dir = path.join(cwd, ".squint");
9
9
  fs.mkdirSync(dir, { recursive: true });