glassbox 0.10.1 → 0.10.2-beta.1
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 -1
- package/dist/cli.js +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ That's it. Data stays local. Works in any git repo.
|
|
|
39
39
|
|
|
40
40
|
<br>
|
|
41
41
|
|
|
42
|
-
<img src="assets/demo
|
|
42
|
+
<img src="assets/demo.svg" alt="Glassbox: triage by AI risk, annotate a diff, and let Claude Code apply the fix — the full review loop" width="720">
|
|
43
43
|
|
|
44
44
|
</div>
|
|
45
45
|
|
package/dist/cli.js
CHANGED
|
@@ -22909,7 +22909,7 @@ async function main() {
|
|
|
22909
22909
|
console.log("AI service test mode enabled \u2014 using mock AI responses");
|
|
22910
22910
|
}
|
|
22911
22911
|
if (debug) {
|
|
22912
|
-
console.log(`[debug] Build timestamp: ${"2026-05-
|
|
22912
|
+
console.log(`[debug] Build timestamp: ${"2026-05-25T08:36:26.737Z"}`);
|
|
22913
22913
|
}
|
|
22914
22914
|
if (projectDir !== null) {
|
|
22915
22915
|
process.chdir(projectDir);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "glassbox",
|
|
3
|
-
"version": "0.10.1",
|
|
3
|
+
"version": "0.10.2-beta.1",
|
|
4
4
|
"description": "A local code review tool for AI-generated code. Review diffs, annotate lines, and export structured feedback that AI tools can act on.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"test:e2e": "npx playwright test",
|
|
44
44
|
"test:e2e:docker": "bash scripts/test-e2e-docker.sh",
|
|
45
45
|
"test:smoke": "bash tests/smoke/smoke-test.sh",
|
|
46
|
+
"demo:capture": "npm run build:client && tsx scripts/demo/capture-demo.ts",
|
|
46
47
|
"lint": "eslint src/",
|
|
47
48
|
"clean": "rm -rf dist node_modules/.cache",
|
|
48
49
|
"release": "bash scripts/release.sh",
|
|
@@ -69,6 +70,7 @@
|
|
|
69
70
|
"@types/node": "^22.0.0",
|
|
70
71
|
"@vitest/coverage-v8": "^4.1.0",
|
|
71
72
|
"c8": "^11.0.0",
|
|
73
|
+
"domotion-svg": "0.5.0",
|
|
72
74
|
"esbuild": "^0.27.3",
|
|
73
75
|
"eslint": "^9.39.3",
|
|
74
76
|
"eslint-plugin-import-x": "^4.16.1",
|