thumbgate 1.27.19 → 1.27.20

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.
Files changed (87) hide show
  1. package/.claude/commands/dashboard.md +15 -0
  2. package/.claude/commands/thumbgate-blocked.md +27 -0
  3. package/.claude/commands/thumbgate-dashboard.md +15 -0
  4. package/.claude/commands/thumbgate-doctor.md +30 -0
  5. package/.claude/commands/thumbgate-guard.md +36 -0
  6. package/.claude/commands/thumbgate-protect.md +30 -0
  7. package/.claude/commands/thumbgate-rules.md +30 -0
  8. package/.claude-plugin/plugin.json +1 -1
  9. package/.well-known/mcp/server-card.json +1 -1
  10. package/README.md +0 -3
  11. package/adapters/claude/.mcp.json +2 -2
  12. package/adapters/gcp/dfcx-webhook-gate.js +295 -0
  13. package/adapters/letta/README.md +41 -0
  14. package/adapters/letta/thumbgate-letta-adapter.js +133 -0
  15. package/adapters/mcp/server-stdio.js +1 -1
  16. package/adapters/opencode/opencode.json +1 -1
  17. package/adapters/policy-engine/ethicore-guardian-client.js +68 -0
  18. package/adapters/policy-engine/thumbgate-policy-engine-adapter.js +260 -0
  19. package/bench/observability-eval-suite.json +26 -0
  20. package/bin/cli.js +27 -1
  21. package/bin/dashboard-cli.js +7 -0
  22. package/bin/postinstall.js +14 -23
  23. package/commands/dashboard.md +15 -0
  24. package/commands/thumbgate-dashboard.md +15 -0
  25. package/package.json +225 -100
  26. package/public/about.html +162 -0
  27. package/public/agent-manager.html +179 -0
  28. package/public/agents-cost-savings.html +153 -0
  29. package/public/ai-malpractice-prevention.html +818 -0
  30. package/public/assets/brand/github-social-preview.png +0 -0
  31. package/public/assets/brand/thumbgate-icon-512.png +0 -0
  32. package/public/assets/brand/thumbgate-icon-pro-512.png +0 -0
  33. package/public/assets/brand/thumbgate-icon-team-512.png +0 -0
  34. package/public/assets/brand/thumbgate-logo-1200x360.png +0 -0
  35. package/public/assets/brand/thumbgate-logo-transparent.svg +28 -0
  36. package/public/assets/brand/thumbgate-mark-inline-v3.svg +18 -0
  37. package/public/assets/brand/thumbgate-mark-pro.svg +23 -0
  38. package/public/assets/brand/thumbgate-mark-team.svg +26 -0
  39. package/public/assets/brand/thumbgate-mark.svg +21 -0
  40. package/public/assets/brand/thumbgate-wordmark.svg +20 -0
  41. package/public/assets/claude-thumbgate-statusbar.svg +8 -0
  42. package/public/assets/codex-thumbgate-statusbar-test.svg +9 -0
  43. package/public/assets/legal-intake-control-flow.svg +66 -0
  44. package/public/brand/thumbgate-mark.svg +19 -0
  45. package/public/brand/thumbgate-og.svg +16 -0
  46. package/public/chatgpt-app.html +330 -0
  47. package/public/codex-enterprise.html +123 -0
  48. package/public/diagnostic.html +345 -0
  49. package/public/index.html +2 -2
  50. package/public/install.html +193 -0
  51. package/public/js/buyer-intent.js +672 -0
  52. package/public/numbers.html +2 -2
  53. package/public/pricing.html +399 -0
  54. package/scripts/action-receipts.js +324 -0
  55. package/scripts/activation-quickstart.js +187 -0
  56. package/scripts/agent-operations-planner.js +621 -0
  57. package/scripts/ai-component-inventory.js +367 -0
  58. package/scripts/async-eval-observability.js +236 -0
  59. package/scripts/audit.js +65 -0
  60. package/scripts/aws-blocks-guardrails.js +272 -0
  61. package/scripts/classifier-routing.js +130 -0
  62. package/scripts/dashboard-chat.js +332 -0
  63. package/scripts/feedback-aggregate.js +281 -0
  64. package/scripts/feedback-sanitizer.js +105 -0
  65. package/scripts/hook-stop-anti-claim.js +301 -0
  66. package/scripts/install-shim.js +87 -0
  67. package/scripts/mcp-oauth.js +293 -0
  68. package/scripts/noop-detect.js +285 -0
  69. package/scripts/parallel-workflow-orchestrator.js +293 -0
  70. package/scripts/plan-gate.js +243 -0
  71. package/scripts/plausible-domain-config.js +99 -0
  72. package/scripts/qa-scenario-planner.js +136 -0
  73. package/scripts/repeat-metric.js +137 -0
  74. package/scripts/secret-fixture-tokens.js +61 -0
  75. package/scripts/secret-redaction.js +166 -0
  76. package/scripts/self-harness-optimizer.js +141 -0
  77. package/scripts/self-healing-check.js +193 -0
  78. package/scripts/self-protection.js +90 -0
  79. package/scripts/silent-failure-cluster.js +531 -0
  80. package/scripts/statusline-cache-read.js +57 -0
  81. package/scripts/sync-telemetry-from-prod.js +374 -0
  82. package/scripts/tool-contract-validator.js +76 -0
  83. package/scripts/trajectory-scorer.js +63 -0
  84. package/scripts/verify-marketing-pages-deployed.js +212 -0
  85. package/scripts/visitor-journey.js +172 -0
  86. package/.claude-plugin/marketplace.json +0 -85
  87. package/adapters/chatgpt/openapi.yaml +0 -1707
@@ -0,0 +1,105 @@
1
+ 'use strict';
2
+
3
+ const crypto = require('crypto');
4
+
5
+ const TRANSPORT_KEYS = new Set([
6
+ 'hookeventname',
7
+ 'hook_event_name',
8
+ 'sessionid',
9
+ 'session_id',
10
+ 'transcriptpath',
11
+ 'transcript_path',
12
+ 'timestamp',
13
+ 'createdat',
14
+ 'created_at',
15
+ 'updatedat',
16
+ 'updated_at',
17
+ 'cwd',
18
+ 'pid',
19
+ 'processid',
20
+ 'process_id',
21
+ 'promptid',
22
+ 'prompt_id',
23
+ 'traceid',
24
+ 'trace_id',
25
+ 'requestid',
26
+ 'request_id',
27
+ 'installid',
28
+ 'install_id',
29
+ 'visitorsessionid',
30
+ 'visitor_session_id',
31
+ 'toolinput',
32
+ 'tool_input',
33
+ ]);
34
+
35
+ const TRANSPORT_WORDS = new Set([
36
+ ...TRANSPORT_KEYS,
37
+ 'hook',
38
+ 'event',
39
+ 'userpromptsubmit',
40
+ 'user_prompt_submit',
41
+ 'pretooluse',
42
+ 'pre_tool_use',
43
+ 'posttooluse',
44
+ 'post_tool_use',
45
+ 'claude',
46
+ 'codex',
47
+ 'projects',
48
+ 'redacted',
49
+ 'tmp',
50
+ 'private',
51
+ 'folders',
52
+ 'json',
53
+ ]);
54
+
55
+ function stripEphemeralText(text) {
56
+ if (!text || typeof text !== 'string') return '';
57
+ return String(text)
58
+ .replace(/["']?(?:hook_?event_?name|session_?id|transcript_?path|timestamp|created_?at|updated_?at|cwd|pid|process_?id|prompt_?id|trace_?id|request_?id|install_?id|visitor_?session_?id)["']?\s*[:=]\s*["']?[^"',}\]\s]+["']?/gi, ' ')
59
+ .replace(/\/(?:private\/)?tmp\/[^\s"',}\]]+/gi, ' ')
60
+ .replace(/\/var\/folders\/[^\s"',}\]]+/gi, ' ')
61
+ .replace(/\/Users\/[^/\s]+\/\.(?:claude|codex|thumbgate)\/[^\s"',}\]]+/gi, ' ')
62
+ .replace(/\/Users\/[^/\s]+\/\.config\/thumbgate\/[^\s"',}\]]+/gi, ' ')
63
+ .replace(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/gi, ' ')
64
+ .replace(/\b[0-9a-f]{24,}\b/gi, ' ')
65
+ .replace(/\b\d{4}-\d{2}-\d{2}t\d{2}:\d{2}:\d{2}(?:\.\d+)?z?\b/gi, ' ')
66
+ .replace(/\b\d{10,13}\b/g, ' ')
67
+ .replace(/:\d{4,5}\b/g, ':PORT');
68
+ }
69
+
70
+ function transportWordsOnly(text) {
71
+ const tokens = String(text || '')
72
+ .toLowerCase()
73
+ .replace(/[^a-z0-9_ -]/g, ' ')
74
+ .split(/\s+/)
75
+ .filter((token) => token.length >= 3);
76
+ if (tokens.length === 0) return true;
77
+ return tokens.every((token) => TRANSPORT_WORDS.has(token));
78
+ }
79
+
80
+ function sanitizeFeedbackText(text) {
81
+ const stripped = stripEphemeralText(text)
82
+ .replace(/\/Users\/[^\s/]+/g, '/Users/redacted')
83
+ .replace(/\s+/g, ' ')
84
+ .trim();
85
+ if (transportWordsOnly(stripped)) return '';
86
+ return stripped;
87
+ }
88
+
89
+ function actionFingerprint(parts) {
90
+ const raw = Array.isArray(parts) ? parts.join(' ') : String(parts || '');
91
+ const stable = sanitizeFeedbackText(raw)
92
+ .toLowerCase()
93
+ .replace(/[^a-z0-9._:/ -]/g, ' ')
94
+ .replace(/\s+/g, ' ')
95
+ .trim();
96
+ if (!stable || transportWordsOnly(stable)) return null;
97
+ return crypto.createHash('sha256').update(stable).digest('hex').slice(0, 16);
98
+ }
99
+
100
+ module.exports = {
101
+ TRANSPORT_WORDS,
102
+ sanitizeFeedbackText,
103
+ actionFingerprint,
104
+ transportWordsOnly,
105
+ };
@@ -0,0 +1,301 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+
4
+ /**
5
+ * Stop hook: anti-claim enforcement.
6
+ *
7
+ * Scans the assistant's most recent turn (assistant text + same-turn tool_use
8
+ * blocks) and blocks the "deployed / live / done / fixed / ready" claim
9
+ * unless that same turn included a proof tool call (curl / grep / test).
10
+ *
11
+ * Why: CLAUDE.md anti-lying directive ("Never claim fix done until
12
+ * committed+pushed. Never claim 'ready' without running e2e.") was
13
+ * aspirational, not enforced. Per CEO 2026-05-13 feedback after a session in
14
+ * which 5+ unverified claims slipped through, this is the harness-level
15
+ * enforcement that ends the recurring trust-burn pattern. ThumbGate-on-
16
+ * ThumbGate dogfood — we are the prevention-rule generator and a perfect
17
+ * customer for our own gate.
18
+ *
19
+ * Wires through .claude/settings.json Stop hooks list. Always exits 0
20
+ * (informational): the goal is to surface a system reminder in the next
21
+ * turn so the agent corrects mid-conversation rather than to hard-block
22
+ * the turn that already happened.
23
+ *
24
+ * Stdin: Claude Code passes the hook payload as JSON on stdin. We read
25
+ * `transcript_path` to locate the JSONL session log and scan the last
26
+ * assistant message.
27
+ *
28
+ * Stdout: any text printed is shown to the agent on the next turn.
29
+ */
30
+
31
+ const fs = require('node:fs');
32
+
33
+ // Lie-phrase patterns. These match common "claim of completion" wording
34
+ // the agent emits without verification. Word-boundary anchored to avoid
35
+ // false positives ("ready-made", "live-streaming", etc).
36
+ const CLAIM_PATTERNS = [
37
+ /\bis\s+live\b/i,
38
+ /\bnow\s+live\b/i,
39
+ /\bgoing\s+live\b/i,
40
+ /\bdeployed\b(?!\s*(yet|to\s+staging|on\s+a\s+branch))/i,
41
+ /\b(?:is|are|it'?s)\s+(?:now\s+)?(?:fully\s+)?(?:fixed|resolved|merged|shipped)\b/i,
42
+ /\bproduction[-\s]ready\b/i,
43
+ /\beverything\s+(?:is\s+)?(?:done|working|ready)\b/i,
44
+ /\b(?:github|repo|repository)\s+(?:about|metadata|description|topics?)\b.*\b(?:updated|verified|fixed|match(?:es|ed)?)\b/i,
45
+ /\b(?:about|metadata|description|topics?)\b.*\b(?:updated|verified|fixed|match(?:es|ed)?)\b.*\b(?:github|repo|repository)\b/i,
46
+ // Added 2026-06-11 after a cross-project failure analysis: these completion
47
+ // claims ("all green / stable / verified / race over / tests pass") were
48
+ // asserted without proof and slipped past the original set. The proof-gate
49
+ // below suppresses them whenever the SAME turn ran a verification tool, so a
50
+ // "verified" claim backed by a test/curl/Read stays silent.
51
+ /\b(?:all\s+)?(?:tests?|checks?|ci)\s+(?:are\s+)?(?:now\s+)?passing\b/i,
52
+ /\ball\s+(?:tests?|checks?)\s+pass(?:ed)?\b/i,
53
+ /\bverified\b/i,
54
+ /\bconfirmed\b/i,
55
+ /\b(?:is|are|it'?s|now)\s+stable\b/i,
56
+ /\ball\s+clear\b/i,
57
+ /\bgood\s+to\s+go\b/i,
58
+ /\brace\s+(?:is\s+)?over\b/i,
59
+ /\bno\s+longer\s+racing\b/i,
60
+ ];
61
+
62
+ // Proof-of-verification patterns. If the SAME turn included one of these
63
+ // tool calls or shell command tokens, the claim is considered backed and
64
+ // the hook stays silent.
65
+ const PROOF_PATTERNS = [
66
+ /\bcurl\b/,
67
+ /\bgh\s+pr\s+(?:view|checks|status)\b/,
68
+ /\bgh\s+run\s+view\b/,
69
+ /\bgh\s+api\b/,
70
+ /\bnode\s+--test\b/,
71
+ /\bnpm\s+(?:run\s+)?test\b/,
72
+ /\bnpm\s+pack\b/,
73
+ /\bjest\b/,
74
+ /\bmocha\b/,
75
+ /\bpytest\b/,
76
+ /\bplaywright\b/,
77
+ /\bgrep\b/,
78
+ /\bstripe\b/,
79
+ /\bplaid\b/,
80
+ /\bshopify\b/,
81
+ /\bsquare\b/,
82
+ /\bquickbooks\b/,
83
+ /Read\s*\(/, // Claude Code Read tool call
84
+ /Bash\s*\(/, // Claude Code Bash tool call
85
+ ];
86
+
87
+ const COMMERCIAL_CLAIM_SUBJECTS = [
88
+ 'money',
89
+ 'payment',
90
+ 'charge',
91
+ 'checkout',
92
+ 'revenue',
93
+ 'price',
94
+ 'pricing',
95
+ 'invoice',
96
+ 'billing',
97
+ 'tax',
98
+ 'sales tax',
99
+ 'inventory',
100
+ 'stock',
101
+ 'permission',
102
+ 'access',
103
+ 'customer facing',
104
+ ];
105
+
106
+ const COMMERCIAL_CLAIM_STATES = [
107
+ 'correct',
108
+ 'accurate',
109
+ 'verified',
110
+ 'valid',
111
+ 'matches',
112
+ 'working',
113
+ 'fixed',
114
+ 'resolved',
115
+ 'calculated',
116
+ 'configured',
117
+ ];
118
+
119
+ const GREEN_CLAIM_PHRASES = [
120
+ 'all green',
121
+ 'all tests green',
122
+ 'all checks green',
123
+ 'all the tests green',
124
+ 'all the checks green',
125
+ 'all tests are green',
126
+ 'all checks are green',
127
+ ];
128
+
129
+ function normalizeClaimText(text) {
130
+ return String(text || '')
131
+ .toLowerCase()
132
+ .replace(/[-_]+/g, ' ')
133
+ .replace(/[^a-z0-9]+/g, ' ')
134
+ .replace(/\s+/g, ' ')
135
+ .trim();
136
+ }
137
+
138
+ function containsPhrase(normalizedText, phrase) {
139
+ return ` ${normalizedText} `.includes(` ${phrase} `);
140
+ }
141
+
142
+ function findTokenListClaim(text, subjects, states, label) {
143
+ const normalized = normalizeClaimText(text);
144
+ if (!normalized) return null;
145
+ const subject = subjects.find((candidate) => containsPhrase(normalized, candidate));
146
+ const state = states.find((candidate) => containsPhrase(normalized, candidate));
147
+ return subject && state ? `${label}: ${subject} ${state}` : null;
148
+ }
149
+
150
+ function findGreenClaim(text) {
151
+ const normalized = normalizeClaimText(text);
152
+ return GREEN_CLAIM_PHRASES.find((phrase) => containsPhrase(normalized, phrase)) || null;
153
+ }
154
+
155
+ function readLastAssistantTurn(transcriptPath) {
156
+ if (!transcriptPath || !fs.existsSync(transcriptPath)) return null;
157
+ let content;
158
+ try {
159
+ content = fs.readFileSync(transcriptPath, 'utf8');
160
+ } catch {
161
+ return null;
162
+ }
163
+ const lines = content.trim().split('\n');
164
+ // Walk backwards to find the last assistant message
165
+ for (let i = lines.length - 1; i >= 0; i--) {
166
+ const raw = lines[i].trim();
167
+ if (!raw) continue;
168
+ let entry;
169
+ try {
170
+ entry = JSON.parse(raw);
171
+ } catch {
172
+ continue;
173
+ }
174
+ if (entry.type === 'assistant' && entry.message) {
175
+ return entry.message;
176
+ }
177
+ }
178
+ return null;
179
+ }
180
+
181
+ function extractText(message) {
182
+ if (!message || !Array.isArray(message.content)) return '';
183
+ return message.content
184
+ .filter((b) => b && typeof b.text === 'string')
185
+ .map((b) => b.text)
186
+ .join('\n');
187
+ }
188
+
189
+ function extractToolUseSummary(message) {
190
+ if (!message || !Array.isArray(message.content)) return '';
191
+ return message.content
192
+ .filter((b) => b?.type === 'tool_use')
193
+ .map((b) => {
194
+ const name = b.name || 'tool';
195
+ let summary = '';
196
+ if (b.input && typeof b.input === 'object') {
197
+ if (typeof b.input.command === 'string') summary = b.input.command;
198
+ else if (typeof b.input.file_path === 'string') summary = b.input.file_path;
199
+ else if (typeof b.input.query === 'string') summary = b.input.query;
200
+ else summary = JSON.stringify(b.input).slice(0, 200);
201
+ }
202
+ return `${name}: ${summary}`;
203
+ })
204
+ .join('\n');
205
+ }
206
+
207
+ function findClaim(text) {
208
+ const commercialClaim = findTokenListClaim(
209
+ text,
210
+ COMMERCIAL_CLAIM_SUBJECTS,
211
+ COMMERCIAL_CLAIM_STATES,
212
+ 'commercial truth',
213
+ );
214
+ if (commercialClaim) return commercialClaim;
215
+ const greenClaim = findGreenClaim(text);
216
+ if (greenClaim) return greenClaim;
217
+ for (const p of CLAIM_PATTERNS) {
218
+ const m = text.match(p);
219
+ if (m) return m[0];
220
+ }
221
+ return null;
222
+ }
223
+
224
+ function hasProof(combined) {
225
+ return PROOF_PATTERNS.some((p) => p.test(combined));
226
+ }
227
+
228
+ function readStdinSync() {
229
+ try {
230
+ return fs.readFileSync(0, 'utf8');
231
+ } catch {
232
+ return '';
233
+ }
234
+ }
235
+
236
+ function main() {
237
+ const raw = readStdinSync();
238
+ let payload = {};
239
+ try {
240
+ payload = raw ? JSON.parse(raw) : {};
241
+ } catch {
242
+ payload = {};
243
+ }
244
+
245
+ const transcriptPath = payload.transcript_path || process.env.CLAUDE_TRANSCRIPT_PATH;
246
+ const message = readLastAssistantTurn(transcriptPath);
247
+ if (!message) return; // no transcript visible; nothing to check
248
+
249
+ const text = extractText(message);
250
+ const toolUseSummary = extractToolUseSummary(message);
251
+ const claim = findClaim(text);
252
+ if (!claim) return; // no completion claim made; silent
253
+
254
+ const proofText = `${text}\n${toolUseSummary}`;
255
+ if (hasProof(proofText)) return; // claim backed by proof in same turn
256
+
257
+ // Strict mode (THUMBGATE_STRICT_ENFORCEMENT=1): hard-block the stop. Emit a
258
+ // Stop-hook block decision so Claude Code does NOT end the turn — the agent
259
+ // must run the verification (or retract) before it can stop. Default mode
260
+ // stays soft (a reminder for the next turn) so we don't break existing wiring.
261
+ if (process.env.THUMBGATE_STRICT_ENFORCEMENT === '1') {
262
+ const reason = `ThumbGate anti-claim gate (strict): you claimed completion ("${claim}") without a proof tool call in the same message. Run the verification (curl / grep / test / Read) and restate with the proof, or retract — do not end the turn on an unverified claim.`;
263
+ process.stdout.write(JSON.stringify({ decision: 'block', reason }) + '\n');
264
+ return;
265
+ }
266
+
267
+ // Default (soft): surface a system reminder for the NEXT turn. Do not hard-block.
268
+ const reminder = [
269
+ '⚠️ ThumbGate anti-claim gate: previous turn claimed completion',
270
+ ` ("${claim}") without a proof tool call in the same message.`,
271
+ ' Per CLAUDE.md anti-lying: never claim "done / live / deployed / fixed /',
272
+ ' verified / all green / stable" or commercial truth (money / tax / inventory /',
273
+ ' permissions / customer-facing state) without curl / grep / test / source-of-truth output in the SAME turn.',
274
+ ' If the work really is verified, re-state the claim with the proof.',
275
+ ' If not, retract and run the verification before re-asserting.',
276
+ ].join('\n');
277
+ process.stdout.write(reminder + '\n');
278
+ }
279
+
280
+ // Path-resolve check instead of `require.main === module`. SonarCloud's
281
+ // strict type inference (rule S3403) flags the === form as always-false
282
+ // in CommonJS, and CLAUDE.md "Hard-Won Lessons" pins the path-based form
283
+ // as the portable fix (incident 2026-04-21 / PR #1115). Resolve BOTH sides
284
+ // so the comparison is between two normalized absolute paths.
285
+ const path = require('node:path');
286
+ if (path.resolve(process.argv[1] || '') === path.resolve(__filename)) {
287
+ try {
288
+ main();
289
+ } catch {
290
+ // never crash the agent
291
+ }
292
+ }
293
+
294
+ module.exports = {
295
+ CLAIM_PATTERNS,
296
+ PROOF_PATTERNS,
297
+ findClaim,
298
+ hasProof,
299
+ extractText,
300
+ extractToolUseSummary,
301
+ };
@@ -0,0 +1,87 @@
1
+ 'use strict';
2
+
3
+ /**
4
+ * install-shim.js — Install a stable shim at ~/.thumbgate/bin/thumbgate-hook
5
+ *
6
+ * The shim is a tiny shell script that resolves the cached ThumbGate runtime
7
+ * first, so hook commands in settings.local.json stay stable across projects
8
+ * and agent restarts.
9
+ *
10
+ * The shim checks for a cached runtime binary first (fast path), and falls
11
+ * back to `npx --yes thumbgate@latest` (slow path, first-time self-install).
12
+ */
13
+
14
+ const fs = require('fs');
15
+ const path = require('path');
16
+ const os = require('os');
17
+
18
+ const SHIM_DIR = path.join(os.homedir(), '.thumbgate', 'bin');
19
+ const SHIM_PATH = path.join(SHIM_DIR, 'thumbgate-hook');
20
+ const RUNTIME_BIN = path.join(os.homedir(), '.thumbgate', 'runtime', 'node_modules', '.bin', 'thumbgate');
21
+
22
+ /**
23
+ * The shim script. Key design choices:
24
+ * - Uses `exec` to replace the shell process (no zombie processes)
25
+ * - Fast path: if cached runtime binary exists, exec it directly
26
+ * - Slow path: npx --yes thumbgate@latest (first-time auto-installs)
27
+ * - No default self-mutation: background upgrades are opt-in via
28
+ * THUMBGATE_SHIM_AUTO_UPDATE=1 so source checkouts, enterprise pins, and
29
+ * dogfood runtimes cannot be overwritten by a hook side effect.
30
+ */
31
+ function shimContent() {
32
+ const escapedRuntimeBin = JSON.stringify(RUNTIME_BIN);
33
+ const escapedRuntimeDir = JSON.stringify(path.join(os.homedir(), '.thumbgate', 'runtime'));
34
+
35
+ return `#!/usr/bin/env bash
36
+ # ThumbGate hook shim — DO NOT EDIT
37
+ # Installed by: thumbgate init
38
+ # Purpose: stable hook entry point that runs the cached ThumbGate runtime
39
+ # Pattern: Volta-style stable shim (see https://volta.sh)
40
+
41
+ set -euo pipefail
42
+
43
+ RUNTIME_BIN=${escapedRuntimeBin}
44
+ RUNTIME_DIR=${escapedRuntimeDir}
45
+
46
+ # Fast path: cached runtime binary exists and is executable
47
+ if [ -x "$RUNTIME_BIN" ]; then
48
+ # Optional background upgrade. Disabled by default so hooks never mutate a
49
+ # source checkout, enterprise pin, or dogfood runtime behind the operator's back.
50
+ if [ "\${THUMBGATE_SHIM_AUTO_UPDATE:-0}" = "1" ]; then
51
+ ( nohup npm install --prefix "$RUNTIME_DIR" --no-save --omit=dev thumbgate@latest >/dev/null 2>&1 & ) 2>/dev/null || true
52
+ fi
53
+ exec "$RUNTIME_BIN" "$@"
54
+ fi
55
+
56
+ # Slow path: no cached binary — install + exec via npx
57
+ mkdir -p "$RUNTIME_DIR"
58
+ exec npx --yes --package thumbgate@latest -- thumbgate "$@"
59
+ `;
60
+ }
61
+
62
+ function installShim() {
63
+ fs.mkdirSync(SHIM_DIR, { recursive: true });
64
+ fs.writeFileSync(SHIM_PATH, shimContent(), { mode: 0o755 });
65
+ return SHIM_PATH;
66
+ }
67
+
68
+ function shimInstalled() {
69
+ try {
70
+ return fs.existsSync(SHIM_PATH) && (fs.statSync(SHIM_PATH).mode & 0o111) !== 0;
71
+ } catch {
72
+ return false;
73
+ }
74
+ }
75
+
76
+ function shimPath() {
77
+ return SHIM_PATH;
78
+ }
79
+
80
+ module.exports = {
81
+ installShim,
82
+ shimInstalled,
83
+ shimPath,
84
+ shimContent,
85
+ SHIM_DIR,
86
+ SHIM_PATH,
87
+ };