Browser debugging with agent-browser CLI. Use when: - User mentions "screenshot", "visual bug", "inspect element" - User asks "what does it look like", "see the page" - Need to debug browser rendering, layout, or visual issues - User wants to test UI in browser - E2E debugging or visual verification
Scanned 2/12/2026
Install via CLI
openskills install darkroomengineering/cc-settings---
name: debug
description: |
Browser debugging with agent-browser CLI. Use when:
- User mentions "screenshot", "visual bug", "inspect element"
- User asks "what does it look like", "see the page"
- Need to debug browser rendering, layout, or visual issues
- User wants to test UI in browser
- E2E debugging or visual verification
context: fork
allowed-tools: [Bash]
---
# Browser Debugging with agent-browser
AI-optimized browser automation for visual debugging.
## Commands
```bash
# Navigate to a URL
agent-browser navigate http://localhost:3000
# Take screenshot
agent-browser screenshot
# Get accessibility tree (AI-optimized DOM)
agent-browser snapshot
# Click element by accessibility ref
agent-browser click @e5
# Type text
agent-browser type @e3 "search query"
# Get page info
agent-browser info
```
## Workflow
1. **Navigate** to the target URL
2. **Screenshot** to see current state
3. **Snapshot** to get accessibility tree with element refs
4. **Interact** using element refs (@e1, @e2, etc.)
5. **Screenshot** again to verify changes
## Element References
The accessibility tree gives each element a unique ref:
```
@e1: button "Submit"
@e2: textbox "Email"
@e3: link "Home"
```
Use these refs for reliable element targeting.
## Common Debugging Tasks
### Visual Bug
```bash
agent-browser navigate http://localhost:3000/broken-page
agent-browser screenshot
# Analyze screenshot for visual issues
```
### Interactive Testing
```bash
agent-browser navigate http://localhost:3000/form
agent-browser snapshot
agent-browser type @e2 "test@example.com"
agent-browser click @e5
agent-browser screenshot
```
### Layout Inspection
```bash
agent-browser navigate http://localhost:3000
agent-browser snapshot
# Analyze accessibility tree for structure
```
## Prerequisites
Requires `agent-browser` CLI:
```bash
npm i -g agent-browser@0.8.3
```
## Output
Return findings:
- **Visual state**: What the page looks like
- **Issues found**: Layout problems, missing elements
- **Accessibility tree**: Key element structure
- **Recommendations**: How to fix issues
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.
Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.
Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.
Run a single Terminal-Bench problem through Paperclip in a bounded, human-in-the-loop improvement cycle until the smoke passes, the board rejects the next fix, the iteration budget is exhausted, or a real blocker is named. Each iteration runs a bounded smoke against an isolated Paperclip App worktree, captures artifacts, diagnoses the exact stop point with `/diagnose-why-work-stopped`, requests board confirmation before any product fix, then reruns against the same worktree. Use whenever an i...