← ClaudeAtlas

gstacklisted

Fast headless browser for QA testing and site dogfooding. Navigate any URL, interact with elements, verify page state, diff before/after actions, take annotated screenshots, check responsive layouts, test forms and uploads, handle dialogs, and assert element states. ~100ms per command. Use when you need to test a feature, verify a deployment, dogfood a user flow, or file a bug with evidence.
waseemnasir2k26/skynetlabs-all-claude-code · ★ 0 · AI & Automation · score 65
Install: claude install-skill waseemnasir2k26/skynetlabs-all-claude-code
# gstack browse: QA Testing & Dogfooding Persistent headless Chromium. First call auto-starts (~3s), then ~100-200ms per command. Auto-shuts down after 30 min idle. State persists between calls (cookies, tabs, sessions). ## SETUP (run this check BEFORE any browse command) ```bash BROWSE_OUTPUT=$(browse/bin/find-browse 2>/dev/null || ~/.claude/skills/gstack/browse/bin/find-browse 2>/dev/null) B=$(echo "$BROWSE_OUTPUT" | head -1) META=$(echo "$BROWSE_OUTPUT" | grep "^META:" || true) if [ -n "$B" ]; then echo "READY: $B" [ -n "$META" ] && echo "$META" else echo "NEEDS_SETUP" fi ``` If `NEEDS_SETUP`: 1. Tell the user: "gstack browse needs a one-time build (~10 seconds). OK to proceed?" Then STOP and wait. 2. Run: `cd <SKILL_DIR> && ./setup` 3. If `bun` is not installed: `curl -fsSL https://bun.sh/install | bash` If you see `META:UPDATE_AVAILABLE`: 1. Parse the JSON payload to get `current`, `latest`, and `command`. 2. Tell the user: "A gstack update is available (current: X, latest: Y). OK to update?" 3. **STOP and wait for approval.** 4. Run the command from the META payload. 5. Re-run the setup check above to get the updated binary path. ## IMPORTANT - Use the compiled binary via Bash: `$B <command>` - NEVER use `mcp__claude-in-chrome__*` tools. They are slow and unreliable. - Browser persists between calls — cookies, login sessions, and tabs carry over. - Dialogs (alert/confirm/prompt) are auto-accepted by default — no browser lockup. ## Binary paths Always reso