@aayambansal/squint 0.4.5 → 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 +6 -0
- package/dist/App-HWMVSRMF.js +23 -0
- package/dist/{cdp-Q4H6ZHPT.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-ZLEP2TWF.js → chunk-ARDV4XH6.js} +5 -1
- package/dist/{chunk-XEQ6JXXL.js → chunk-AUJJGMZG.js} +1 -1
- package/dist/{chunk-RQHOE5MV.js → chunk-HC4E42SV.js} +50 -2
- package/dist/chunk-M25IQ7C7.js +587 -0
- package/dist/chunk-NX7XQY2X.js +147 -0
- package/dist/{chunk-CV5WVKHU.js → chunk-ZSDCMYZR.js} +58 -18
- package/dist/cli.js +261 -2099
- package/dist/{contextDoctor-U3YTDFVG.js → contextDoctor-A26C2ZDN.js} +1 -1
- package/dist/{preview-ZUCVWGZG.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/{skills-6NZP67QT.js → skills-POB4ZZY5.js} +1 -1
- 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,12 @@ 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.
|
|
180
|
+
- **Persistent checks**: assertions the engine verifies once persist as
|
|
181
|
+
`.squint/checks/*.js` and replay against the live page every turn — one-off
|
|
182
|
+
verifications compound into repo-versioned regression checks.
|
|
177
183
|
- **Visual approval**: engines ask before contested changes — the request renders
|
|
178
184
|
with its screenshot, `/yes` / `/no` answer it, the ledger remembers.
|
|
179
185
|
- **The design ledger**: `/decide` (plus chosen variants, rollbacks, accepted
|
|
@@ -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 });
|