@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 +3 -0
- package/dist/App-HWMVSRMF.js +23 -0
- package/dist/{cdp-OYRHOPVP.js → cdp-PBQKXC6R.js} +1 -1
- package/dist/{chunk-O2S6PAJE.js → chunk-7CAGWFAQ.js} +1 -1
- package/dist/chunk-7MOKOZOR.js +1415 -0
- package/dist/{chunk-XEQ6JXXL.js → chunk-AUJJGMZG.js} +1 -1
- package/dist/{chunk-X2RZJT4L.js → chunk-HC4E42SV.js} +11 -5
- package/dist/chunk-M25IQ7C7.js +587 -0
- package/dist/chunk-NX7XQY2X.js +147 -0
- package/dist/{chunk-D7Q3M6PA.js → chunk-ZSDCMYZR.js} +6 -6
- package/dist/cli.js +260 -2113
- package/dist/{preview-XREFPMHX.js → preview-WT34NVCH.js} +3 -3
- package/dist/remote-6O6FPTUF.js +114 -0
- package/dist/{sandbox-J2NCPYHJ.js → sandbox-MK7Q2YNO.js} +1 -1
- package/dist/shots-OKWOYF7F.js +2 -2
- package/dist/{state-QOS7WCZO.js → state-PLY7YAD2.js} +1 -1
- package/dist/variants-3IEP7DFY.js +1 -1
- package/package.json +1 -1
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
|
+
};
|
|
@@ -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 });
|