Visual QA checkpoint. Verifies UI changes in the extension/backend via quick smoke flows, screenshots, and console/network checks. Use when: 'visual QA', 'UI looks wrong', 'screenshot', 'verify in Chrome'.
Verifies UI changes via smoke tests, screenshots, and console checks.
/plugin marketplace add ggprompts/tabzchrome/plugin install conductor@tabzchrome-marketplaceThis skill is limited to using the following tools:
Lightweight visual smoke test for UI-facing changes.
Writes result to .checkpoints/visual-qa.json.
This checkpoint should only be run by the conductor AFTER merging changes to main.
Workers on git worktrees cannot run visual-qa because:
npm run dev instances on same portCorrect workflow:
/conductor:visual-qa on main branchextension/ and no *.css, *.tsx, *.jsx) → PASS (skipped).CHANGED=$( (git diff --name-only main...HEAD 2>/dev/null || true) ; git diff --name-only 2>/dev/null || true ; git diff --cached --name-only 2>/dev/null || true )
CHANGED=$(echo "$CHANGED" | sed '/^$/d' | sort -u)
if echo "$CHANGED" | grep -qE '^(extension/)|(\.tsx$)|(\.jsx$)|(\.css$)'; then
NEEDS_VISUAL=1
else
NEEDS_VISUAL=0
fi
BEFORE any browser work, create YOUR OWN tab group with a random 3-digit suffix.
This is mandatory because:
# 1. Generate random ID
SESSION_ID="Claude-$(shuf -i 100-999 -n 1)"
# 2. Create group
mcp-cli call tabz/tabz_create_group '{"title": "'$SESSION_ID'", "color": "cyan"}'
# Returns: {"groupId": 123, ...}
# 3. Open URLs into YOUR group (use returned groupId)
mcp-cli call tabz/tabz_open_url '{"url": "https://example.com", "groupId": 123}'
# 4. Always use explicit tabId from your group - NEVER rely on active tab
If NEEDS_VISUAL=1, do the quickest relevant check:
If you have Tabz MCP available, you can use it (preferred):
tabz_get_console_logs (errors)tabz_screenshot (capture)tabz_enable_network_capture + tabz_get_network_requests (API failures)Always pass explicit tabId - never rely on "active tab":
# Get your tab's ID from your group
mcp-cli call tabz/tabz_screenshot '{"tabId": YOUR_TAB_ID}'
mcp-cli call tabz/tabz_get_console_logs '{"tabId": YOUR_TAB_ID}'
If Tabz MCP isn't available, do a manual check and note it.
mkdir -p .checkpoints
cat > .checkpoints/visual-qa.json << EOF
{
"checkpoint": "visual-qa",
"timestamp": "$(date -Iseconds)",
"passed": ${PASSED},
"needs_visual": ${NEEDS_VISUAL},
"summary": "${SUMMARY}"
}
EOF
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.