Files
Garry Tan c6e6a21d1a refactor: AI slop reduction with cross-model quality review (v0.16.3.0) (#941)
* refactor: add error-handling utility module with selective catches

safeUnlink (ignores ENOENT), safeKill (ignores ESRCH), isProcessAlive
(extracted from cli.ts with Windows support), and json() Response helper.
All catches check err.code and rethrow unexpected errors instead of
swallowing silently. Unit tests cover happy path + error code paths.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* refactor: replace defensive try/catches in server.ts with utilities

Replace ~12 try/catch sites with safeUnlink/safeKill calls in shutdown,
emergencyCleanup, killAgent, and log cleanup. Convert empty catches to
selective catches with error code checks. Remove needless welcome page
try/catches (fs.existsSync doesn't need wrapping). Reduces slop-scan
empty-catch locations from 11 to 8 and error-swallowing from 24 to 18.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* refactor: extract isProcessAlive and replace try/catches in cli.ts

Move isProcessAlive to shared error-handling module. Replace ~20
try/catch sites with safeUnlink/safeKill in killServer, connect,
disconnect, and cleanup flows. Convert empty catches to selective
catches. Reduces slop-scan empty-catch from 22 to 2 locations.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* refactor: remove unnecessary return await in content-security and read-commands

Remove 6 redundant return-await patterns where there's no enclosing
try block. Eliminates all defensive.async-noise findings from these files.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* chore: add slop-scan config to exclude vendor files

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* refactor: replace empty catches with selective error handling in sidebar-agent

Convert 8 empty catch blocks to selective catches that check err.code
(ESRCH for process kills, ENOENT for file ops). Import safeUnlink for
cancel file cleanup. Unexpected errors now propagate instead of being
silently swallowed.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* refactor: replace empty catches and mark pass-through wrappers in browser-manager

Convert 12 empty catch blocks to selective catches: filesystem ops check
ENOENT/EACCES, browser ops check for closed/Target messages, URL parsing
checks TypeError. Add 'alias for active session' comments above 6
pass-through wrapper methods to document their purpose (and exempt from
slop-scan pass-through-wrappers rule).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* refactor: selective catches in gstack-global-discover

Convert 8 defensive catch blocks to selective error handling. Filesystem
ops check ENOENT/EACCES, process ops check exit status. Unexpected errors
now propagate instead of returning silent defaults.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* refactor: selective catches in write-commands, cdp-inspector, meta-commands, snapshot

Convert ~27 empty/obscuring catches to selective error handling across 4
browse source files. CDP ops check for closed/Target/detached messages,
DOM ops check TypeError/DOMException, filesystem ops check ENOENT/EACCES,
JSON parsing checks SyntaxError. Remove dead code in cdp-inspector where
try/catch wrapped synchronous no-ops.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* refactor: selective catches in Chrome extension files

Convert empty catches and error-swallowing patterns across inspector.js,
content.js, background.js, and sidepanel.js. DOM catches filter
TypeError/DOMException, chrome API catches filter Extension context
invalidated, network catches filter Failed to fetch. Unexpected errors
now propagate.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* fix: restore isProcessAlive boolean semantics, add safeUnlinkQuiet, remove unused json()

isProcessAlive now catches ALL errors and returns false (pure boolean
probe). Callers use it in if/while conditions without try/catch, so
throwing on EPERM was a behavior change that could crash the CLI.
Windows path gets its safety catch restored.

safeUnlinkQuiet added for best-effort cleanup paths where throwing on
non-ENOENT errors (like EPERM during shutdown) would abort cleanup.

json() removed — dead code, never imported anywhere.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* fix: use safeUnlinkQuiet in shutdown and cleanup paths

Shutdown, emergency cleanup, and disconnect paths should never throw
on file deletion failures. Switched from safeUnlink (throws on EPERM)
to safeUnlinkQuiet (swallows all errors) in these best-effort paths.
Normal operation paths (startup, lock release) keep safeUnlink.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* revert: remove brittle string-matching catches and alias comments in browser-manager

Revert 6 catches that matched error messages via includes('closed'),
includes('Target'), etc. back to empty catches. These fire-and-forget
operations (page.close, bringToFront, dialog dismiss) genuinely don't
care about any error type. String matching on error messages is brittle
and will break on Playwright version bumps.

Remove 6 'alias for active session' comments that existed solely to
game slop-scan's pass-through-wrapper exemption rule.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* revert: remove brittle string-matching catches in extension files

Revert error-swallowing fixes in background.js and sidepanel.js that
matched error messages via includes('Failed to fetch'), includes(
'Extension context invalidated'), etc. In Chrome extensions, uncaught
errors crash the entire extension. The original catch-and-log pattern
is the correct choice for extension code where any error is non-fatal.

content.js and inspector.js changes kept — their TypeError/DOMException
catches are typed, not string-based.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* docs: add slop-scan usage guidelines to CLAUDE.md

Instructions for using slop-scan to improve genuine code quality, not
to game metrics or hide that we're AI-coded. Documents what to fix
(empty catches on file/process ops, typed exception narrows, return
await) and what NOT to fix (string-matching on error messages, linter
gaming comments, tightening extension/cleanup catches). Includes
utility function reference and baseline score tracking.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* chore: add slop-scan as diagnostic in test suite

Runs slop-scan after bun test as a non-blocking diagnostic. Prints
the summary (top files, hotspots) so you see the number without it
gating anything. Available standalone via bun run slop.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* feat: slop-diff shows only NEW findings introduced on this branch

Runs slop-scan on HEAD and the merge-base, diffs results with
line-number-insensitive fingerprinting so shifted code doesn't create
false positives. Uses git worktree for clean base comparison. Shows
net new vs removed findings. Runs automatically after bun test.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* docs: design doc for slop-scan integration in /review and /ship

Deferred plan for surfacing slop-diff findings automatically during
code review and shipping. Documents integration points, auto-fix vs
skip heuristics, and implementation notes.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* chore: bump version and changelog (v0.16.3.0)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-10 17:13:15 -10:00

379 lines
12 KiB
JavaScript

/**
* gstack browse — content script
*
* Receives ref data from background worker via chrome.runtime.onMessage.
* Renders @ref overlay badges on the page (CDP mode only — positions are accurate).
* In headless mode, shows a floating ref panel instead (positions unknown).
*/
let overlayContainer = null;
let statusPill = null;
let pillFadeTimer = null;
let refCount = 0;
// ─── Connection Status Pill ──────────────────────────────────
function showStatusPill(connected, refs) {
refCount = refs || 0;
if (!statusPill) {
statusPill = document.createElement('div');
statusPill.id = 'gstack-status-pill';
statusPill.style.cursor = 'pointer';
statusPill.addEventListener('click', () => {
// Ask background to open the side panel
chrome.runtime.sendMessage({ type: 'openSidePanel' });
});
document.body.appendChild(statusPill);
}
if (!connected) {
statusPill.style.display = 'none';
return;
}
const refText = refCount > 0 ? ` · ${refCount} refs` : '';
statusPill.innerHTML = `<span class="gstack-pill-dot"></span> gstack${refText}`;
statusPill.style.display = 'flex';
statusPill.style.opacity = '1';
// Fade to subtle after 3s
clearTimeout(pillFadeTimer);
pillFadeTimer = setTimeout(() => {
statusPill.style.opacity = '0.3';
}, 3000);
}
function hideStatusPill() {
if (statusPill) {
statusPill.style.display = 'none';
}
}
function ensureContainer() {
if (overlayContainer) return overlayContainer;
overlayContainer = document.createElement('div');
overlayContainer.id = 'gstack-ref-overlays';
overlayContainer.style.cssText = 'position: fixed; top: 0; left: 0; width: 0; height: 0; z-index: 2147483647; pointer-events: none;';
document.body.appendChild(overlayContainer);
return overlayContainer;
}
function clearOverlays() {
if (overlayContainer) {
overlayContainer.innerHTML = '';
}
}
function renderRefBadges(refs) {
clearOverlays();
if (!refs || refs.length === 0) return;
const container = ensureContainer();
for (const ref of refs) {
// Try to find the element using accessible name/role for positioning
// In CDP mode, we could use bounding boxes from the server
// For now, use a floating panel approach
const badge = document.createElement('div');
badge.className = 'gstack-ref-badge';
badge.textContent = ref.ref;
badge.title = `${ref.role}: "${ref.name}"`;
container.appendChild(badge);
}
}
function renderRefPanel(refs) {
clearOverlays();
if (!refs || refs.length === 0) return;
const container = ensureContainer();
const panel = document.createElement('div');
panel.className = 'gstack-ref-panel';
const header = document.createElement('div');
header.className = 'gstack-ref-panel-header';
header.textContent = `gstack refs (${refs.length})`;
header.style.cssText = 'pointer-events: auto; cursor: move;';
panel.appendChild(header);
const list = document.createElement('div');
list.className = 'gstack-ref-panel-list';
for (const ref of refs.slice(0, 30)) { // Show max 30 in panel
const row = document.createElement('div');
row.className = 'gstack-ref-panel-row';
const idSpan = document.createElement('span');
idSpan.className = 'gstack-ref-panel-id';
idSpan.textContent = ref.ref;
const roleSpan = document.createElement('span');
roleSpan.className = 'gstack-ref-panel-role';
roleSpan.textContent = ref.role;
const nameSpan = document.createElement('span');
nameSpan.className = 'gstack-ref-panel-name';
nameSpan.textContent = '"' + ref.name + '"';
row.append(idSpan, document.createTextNode(' '), roleSpan, document.createTextNode(' '), nameSpan);
list.appendChild(row);
}
if (refs.length > 30) {
const more = document.createElement('div');
more.className = 'gstack-ref-panel-more';
more.textContent = `+${refs.length - 30} more`;
list.appendChild(more);
}
panel.appendChild(list);
container.appendChild(panel);
}
// ─── Basic Inspector Picker (CSP fallback) ──────────────────
// When inspector.js can't be injected (CSP, chrome:// pages), content.js
// provides a basic element picker using getComputedStyle + CSSOM.
let basicPickerActive = false;
let basicPickerOverlay = null;
let basicPickerLastEl = null;
let basicPickerSavedOutline = '';
const BASIC_KEY_PROPERTIES = [
'display', 'position', 'top', 'right', 'bottom', 'left',
'width', 'height', 'min-width', 'max-width', 'min-height', 'max-height',
'margin-top', 'margin-right', 'margin-bottom', 'margin-left',
'padding-top', 'padding-right', 'padding-bottom', 'padding-left',
'border-top-width', 'border-right-width', 'border-bottom-width', 'border-left-width',
'color', 'background-color', 'background-image',
'font-family', 'font-size', 'font-weight', 'line-height',
'text-align', 'text-decoration',
'overflow', 'overflow-x', 'overflow-y',
'opacity', 'z-index',
'flex-direction', 'justify-content', 'align-items', 'flex-wrap', 'gap',
'grid-template-columns', 'grid-template-rows',
'box-shadow', 'border-radius', 'transform',
];
function captureBasicData(el) {
const computed = getComputedStyle(el);
const rect = el.getBoundingClientRect();
const computedStyles = {};
for (const prop of BASIC_KEY_PROPERTIES) {
computedStyles[prop] = computed.getPropertyValue(prop);
}
const boxModel = {
content: { width: rect.width, height: rect.height },
padding: {
top: parseFloat(computed.paddingTop) || 0,
right: parseFloat(computed.paddingRight) || 0,
bottom: parseFloat(computed.paddingBottom) || 0,
left: parseFloat(computed.paddingLeft) || 0,
},
border: {
top: parseFloat(computed.borderTopWidth) || 0,
right: parseFloat(computed.borderRightWidth) || 0,
bottom: parseFloat(computed.borderBottomWidth) || 0,
left: parseFloat(computed.borderLeftWidth) || 0,
},
margin: {
top: parseFloat(computed.marginTop) || 0,
right: parseFloat(computed.marginRight) || 0,
bottom: parseFloat(computed.marginBottom) || 0,
left: parseFloat(computed.marginLeft) || 0,
},
};
// Matched CSS rules via CSSOM (same-origin only)
const matchedRules = [];
try {
for (const sheet of document.styleSheets) {
try {
const rules = sheet.cssRules || sheet.rules;
if (!rules) continue;
for (const rule of rules) {
if (rule.type !== CSSRule.STYLE_RULE) continue;
try {
if (el.matches(rule.selectorText)) {
const properties = [];
for (let i = 0; i < rule.style.length; i++) {
const prop = rule.style[i];
properties.push({
name: prop,
value: rule.style.getPropertyValue(prop),
priority: rule.style.getPropertyPriority(prop),
});
}
matchedRules.push({
selector: rule.selectorText,
properties,
source: sheet.href || 'inline',
});
}
} catch (e) { if (!(e instanceof TypeError) && !(e instanceof DOMException)) throw e; }
}
} catch (e) { if (!(e instanceof DOMException)) throw e; }
}
} catch (e) { if (!(e instanceof TypeError) && !(e instanceof DOMException)) throw e; }
return { computedStyles, boxModel, matchedRules };
}
function basicBuildSelector(el) {
if (el.id) {
const sel = '#' + CSS.escape(el.id);
try { if (document.querySelectorAll(sel).length === 1) return sel; } catch (e) { if (!(e instanceof TypeError) && !(e instanceof DOMException)) throw e; }
}
const parts = [];
let current = el;
while (current && current !== document.body && current !== document.documentElement) {
let part = current.tagName.toLowerCase();
if (current.id) {
parts.unshift('#' + CSS.escape(current.id));
break;
}
if (current.className && typeof current.className === 'string') {
const classes = current.className.trim().split(/\s+/).filter(c => c.length > 0);
if (classes.length > 0) part += '.' + classes.map(c => CSS.escape(c)).join('.');
}
const parent = current.parentElement;
if (parent) {
const siblings = Array.from(parent.children).filter(s => s.tagName === current.tagName);
if (siblings.length > 1) {
part += `:nth-child(${Array.from(parent.children).indexOf(current) + 1})`;
}
}
parts.unshift(part);
current = current.parentElement;
}
return parts.join(' > ');
}
function basicPickerHighlight(el) {
// Restore previous element
if (basicPickerLastEl && basicPickerLastEl !== el) {
basicPickerLastEl.style.outline = basicPickerSavedOutline;
}
if (el) {
basicPickerSavedOutline = el.style.outline;
el.style.outline = '2px solid rgba(59, 130, 246, 0.6)';
basicPickerLastEl = el;
}
}
function basicPickerCleanup() {
if (basicPickerLastEl) {
basicPickerLastEl.style.outline = basicPickerSavedOutline;
basicPickerLastEl = null;
basicPickerSavedOutline = '';
}
basicPickerActive = false;
document.removeEventListener('mousemove', onBasicMouseMove, true);
document.removeEventListener('click', onBasicClick, true);
document.removeEventListener('keydown', onBasicKeydown, true);
}
function onBasicMouseMove(e) {
if (!basicPickerActive) return;
e.preventDefault();
e.stopPropagation();
const el = document.elementFromPoint(e.clientX, e.clientY);
if (el && el !== basicPickerLastEl) {
basicPickerHighlight(el);
}
}
function onBasicClick(e) {
if (!basicPickerActive) return;
e.preventDefault();
e.stopPropagation();
const el = e.target;
const basicData = captureBasicData(el);
const selector = basicBuildSelector(el);
const tagName = el.tagName.toLowerCase();
const id = el.id || null;
const classes = el.className && typeof el.className === 'string'
? el.className.trim().split(/\s+/).filter(c => c.length > 0)
: [];
basicPickerCleanup();
chrome.runtime.sendMessage({
type: 'inspectResult',
data: {
selector,
tagName,
id,
classes,
basicData,
mode: 'basic',
boxModel: basicData.boxModel,
computedStyles: basicData.computedStyles,
matchedRules: basicData.matchedRules,
},
});
}
function onBasicKeydown(e) {
if (e.key === 'Escape') {
basicPickerCleanup();
chrome.runtime.sendMessage({ type: 'pickerCancelled' });
}
}
function startBasicPicker() {
basicPickerActive = true;
document.addEventListener('mousemove', onBasicMouseMove, true);
document.addEventListener('click', onBasicClick, true);
document.addEventListener('keydown', onBasicKeydown, true);
}
// Do NOT dispatch gstack-extension-ready here — the extension being loaded
// does not mean the sidebar is open. The welcome page arrow hint should only
// hide when the sidebar is actually open. We dispatch it when we receive
// a 'sidebarOpened' message from background.js.
// Listen for messages from background worker
chrome.runtime.onMessage.addListener((msg) => {
// Sidebar actually opened — now hide the welcome page arrow hint
if (msg.type === 'sidebarOpened') {
document.dispatchEvent(new CustomEvent('gstack-extension-ready'));
return;
}
if (msg.type === 'startBasicPicker') {
startBasicPicker();
return;
}
if (msg.type === 'stopBasicPicker') {
basicPickerCleanup();
return;
}
if (msg.type === 'refs' && msg.data) {
const refs = msg.data.refs || [];
const mode = msg.data.mode;
if (refs.length === 0) {
clearOverlays();
showStatusPill(true, 0);
return;
}
// CDP mode: could use bounding boxes (future)
// For now: floating panel for all modes
renderRefPanel(refs);
showStatusPill(true, refs.length);
}
if (msg.type === 'clearRefs') {
clearOverlays();
showStatusPill(true, 0);
}
if (msg.type === 'connected') {
showStatusPill(true, refCount);
}
if (msg.type === 'disconnected') {
hideStatusPill();
clearOverlays();
}
});