@ijfw/install 1.1.0 → 1.1.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.
@@ -0,0 +1,36 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 520" font-family="ui-monospace,Menlo,Consolas,monospace">
2
+ <defs>
3
+ <linearGradient id="bg" x1="0" y1="0" x2="0" y2="1">
4
+ <stop offset="0" stop-color="#0d1117"/>
5
+ <stop offset="1" stop-color="#010409"/>
6
+ </linearGradient>
7
+ </defs>
8
+ <rect width="1200" height="520" fill="url(#bg)" rx="10"/>
9
+ <circle cx="26" cy="26" r="7" fill="#ff5f56"/>
10
+ <circle cx="48" cy="26" r="7" fill="#ffbd2e"/>
11
+ <circle cx="70" cy="26" r="7" fill="#27c93f"/>
12
+ <text x="600" y="32" fill="#7d8590" text-anchor="middle" font-size="13">ijfw cross audit</text>
13
+
14
+ <text x="30" y="80" fill="#7d8590" font-size="14">$</text>
15
+ <text x="50" y="80" fill="#e6edf3" font-size="14">ijfw cross audit src/auth.js</text>
16
+
17
+ <text x="30" y="118" fill="#d29922" font-size="14">[ijfw] Trident fired. Codex + Gemini + Claude swarm in parallel.</text>
18
+ <text x="30" y="142" fill="#7d8590" font-size="13"> duration ~14.2s budget $0.08 / $2.00 receipt saved</text>
19
+
20
+ <rect x="30" y="170" width="1140" height="60" rx="6" fill="#0b4429" stroke="#238636" stroke-width="1"/>
21
+ <text x="50" y="195" fill="#3fb950" font-size="15" font-weight="bold">⦿ CONSENSUS (3 findings, all auditors agree)</text>
22
+ <text x="50" y="216" fill="#d1d7de" font-size="13"> Line 42: token is not revoked on logout - HIGH - fix before ship</text>
23
+
24
+ <rect x="30" y="250" width="1140" height="60" rx="6" fill="#3c2e05" stroke="#9e6a03" stroke-width="1"/>
25
+ <text x="50" y="275" fill="#d29922" font-size="15" font-weight="bold">◐ CONTESTED (1 finding, auditors disagree)</text>
26
+ <text x="50" y="296" fill="#d1d7de" font-size="13"> Line 88: bcrypt cost factor 10 vs 12 - judgment call (latency vs hardness)</text>
27
+
28
+ <rect x="30" y="330" width="1140" height="60" rx="6" fill="#21262d" stroke="#30363d" stroke-width="1"/>
29
+ <text x="50" y="355" fill="#58a6ff" font-size="15" font-weight="bold">◇ CLAUDE SWARM (silent-failure-hunter, pr-test-analyzer)</text>
30
+ <text x="50" y="376" fill="#d1d7de" font-size="13"> Missing test: refresh-token rotation edge case under concurrent requests</text>
31
+
32
+ <text x="30" y="430" fill="#7d8590" font-size="13">Receipt: ~/.ijfw/receipts/2026-04-19_auth.js.json</text>
33
+ <text x="30" y="452" fill="#7d8590" font-size="13">Share: ijfw receipt last</text>
34
+
35
+ <text x="600" y="495" fill="#484f58" font-size="12" text-anchor="middle" font-style="italic">Placeholder illustration. Replace with a real terminal capture.</text>
36
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ijfw/install",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "One-command installer for IJFW -- the AI efficiency layer. One install, every AI coding agent, zero config.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,20 +11,22 @@
11
11
  "files": [
12
12
  "dist",
13
13
  "src/install.ps1",
14
+ "docs/GUIDE.md",
15
+ "docs/guide/assets",
14
16
  "README.md",
15
17
  "CHANGELOG.md",
16
18
  "LICENSE"
17
19
  ],
18
20
  "scripts": {
19
- "build": "esbuild src/install.js src/uninstall.js src/ijfw.js --bundle --platform=node --target=node18 --outdir=dist --format=esm --banner:js='#!/usr/bin/env node' && chmod +x dist/install.js dist/uninstall.js dist/ijfw.js",
21
+ "build": "rm -rf docs && mkdir -p docs/guide && cp ../docs/GUIDE.md docs/GUIDE.md && cp -r ../docs/guide/assets docs/guide/assets && esbuild src/install.js src/uninstall.js src/ijfw.js --bundle --platform=node --target=node18 --outdir=dist --format=esm --banner:js='#!/usr/bin/env node' && chmod +x dist/install.js dist/uninstall.js dist/ijfw.js",
20
22
  "test": "node --test test.js",
21
23
  "preflight": "node dist/ijfw.js preflight",
22
24
  "pack:check": "npm pack --dry-run",
23
25
  "prepublishOnly": "npm run build && npm run preflight"
24
26
  },
25
- "dependencies": {},
26
27
  "devDependencies": {
27
- "esbuild": "^0.25.0"
28
+ "esbuild": "^0.25.0",
29
+ "marked": "^18.0.2"
28
30
  },
29
31
  "engines": {
30
32
  "node": ">=18"