ci-triage
Diagnose a failing GitHub Actions run — find the first real error in the logs, tell a flake apart from a genuine failure, and identify the commit that broke…
Open, navigate, screenshot, read, click, and type in web pages from an agent. Use when the user asks to open a URL, preview or verify a running web app, check a page's console, fill a form, click through a web flow, or automate anything in a browser, including "open
$ npx -y skills add superset-sh/superset --skill browser --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/browserContext preview
The summary Claude sees to decide when to auto-load this skill.
Open, navigate, screenshot, read, click, and type in web pages from an agent. Use when the user asks to open a URL, preview or verify a running web app, check a page's console, fill a form, click through a web flow, or automate anything in a browser, including "open
name: browser description: Open, navigate, screenshot, read, click, and type in web pages from an agent. Use when the user asks to open a URL, preview or verify a running web app, check a page's console, fill a form, click through a web flow, or automate anything in a browser, including "open localhost:3000", "screenshot the page", "what does the console say", "click the submit button". Drives the in-app browser pane of a Superset workspace by default and Browser Use for browsers the panes cannot reach. argument-hint: URL or what to do in the browser allowed-tools: Bash(superset:*) Bash(curl:*)
Drive web pages through the browser panes inside a Superset workspace with the `superset browser` commands. Every operation runs in the pane the user can see, against the pane's real, logged-in session. A raw Chrome DevTools Protocol (CDP) endpoint covers anything the high-level verbs don't.
endpoint), use `curl` or your fetch tool and skip the browser.
workspace pane: previewing a dev server, verifying UI the user is watching, clicking through a flow in the app.
outside Superset, a host with no desktop app attached (pane commands error clearly there), or work that needs an isolated or cloud browser. Read `references/browser-use.md` before using it; it covers install consent, attaching, and cleanup.
Browser Use can also drive a pane, and for three kinds of pane task it's the nicer tool: an open-ended goal to run end to end ("get through this signup"), a long multi-step flow on a shifting UI, or a recorded walkthrough. If one of those fits and Browser Use isn't installed, offer it once ("I can hand this to Browser Use, which drives multi-step flows more cleanly, but it's a one-minute install. Want that, or should I drive the pane directly?"), then respect the answer for the rest of the session, and hand a pane to Browser Use only after the user has said yes (the pane is their signed-in session and its CDP URL carries a token). Don't offer it for a screenshot, one `eval`, or a plain read; the pane verbs already cover those.
1. Run `superset browser --help` and require `list`, `open`, `navigate`, `screenshot`, `eval`, `console`, and `cdp`. If absent, run `superset update` and recheck. The app-bundled CLI (`~/.superset/bin/superset`) updates only with the desktop app, so if it lacks `browser`, updating the app is the fix; check `type -a superset` for another install before giving up. 2. Resolve the workspace. Inside a workspace, use `$SUPERSET_WORKSPACE_ID`; otherwise `superset workspaces list --local --json` and pick the target. Pass `--host <id>` for a remote host. 3. Panes live in the desktop app. A host with no desktop attached (a standalone `superset start`) has no panes and every command errors clearly; surface that rather than retrying.
Every pane has a stable `paneId`, scoped to its workspace: pass the same `--workspace` you opened it under or the operation is rejected.
superset browser list --workspace <id> --json superset browser open --workspace <id> --url https://example.com --json superset browser open --workspace <id> --url http://localhost:3000 --target new-tab --json
`--target new-tab` opens a fresh tab and focuses it; the default `current-tab` reuses the active browser pane. Opening needs the workspace visible in the desktop app (the renderer creates the pane), so if it times out, ask the user to open the workspace.
# Point an existing pane at a new URL
superset browser navigate --workspace <id> --pane <paneId> --url https://…
# Capture a PNG (base64 by default; --out writes a file)
superset browser screenshot --workspace <id> --pane <paneId> --out shot.png
# Read the pane's captured console output
superset browser console --workspace <id> --pane <paneId> --max-lines 100
# Evaluate JavaScript in the page and return the result
superset browser eval --workspace <id> --pane <paneId> \
--code "document.querySelector('h1')?.textContent"Screenshot to see state, `eval` to read structured data (`.textContent`, `.value = …`, `element.click()`, `location.href`), `console` to check for page errors. Prefer these over raw CDP unless you need real input events. An `eval` expression that throws comes back as a command error, not a value. `open` and `navigate` accept only `http(s)` and `about:` URLs; bare input like `localhost:3000` is upgraded, while `file://`, `chrome://`, and `data:` are rejected with a clear error.
`import-login` copies a system browser's cookies into the pane so it's signed in to the sites the user already uses. It imports every cookie that profile has on disk, not just the one site, and panes share a profile, so say that when offering and run it only with the user's go-ahead. Offering it is how most users discover it: when a pane hits a login wall for a site the user uses in their own browser, suggest importing that login instead of stopping. The user always picks the source browser; people run several Chromium browsers (Chrome, Edge, Brave, Arc, Dia, Comet) and only they know which holds the session. macOS only; it reads the browser's Keychain key (first run prompts them to allow it) and never modifies the source browser.
1. List the installed browsers and let the user choose: `superset browser import-login --workspace <id> --pane <paneId>` 2. Import from their choice, then reload the pane: `superset browser import-login --workspace <id> --pane <paneId> --from Comet` followed by `superset browser navigate …`. `--profile <name>` disambiguates a browser with several profiles; an a
Superset is an agentic IDE to orchestrate 100+ coding agents in parallel. Run any agent with your own subscription.
Diagnose a failing GitHub Actions run — find the first real error in the logs, tell a flake apart from a genuine failure, and identify the commit that broke…
Triage a GitHub issue into something actionable — reproduce the claim, find duplicates, judge severity, and apply labels, milestone, and assignee. Use when the…
Find and merge duplicate Linear issues — group reports of the same underlying bug, pick the survivor, and move the evidence across. Use when the backlog has…
Turn a rough report into a Linear issue someone can pick up — reproduce the claim, check for duplicates, and fill in team, priority, and labels. Use when the…
Draft a Linear project status update from what actually moved — progress, risks, and the one decision that needs making. Use when someone asks for a project…
Personalized audit that teaches the advanced Superset features the user isn't using yet (automations, parallel agents, tasks, multi-host, terminal remote…