pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element…
Develop and contribute to the PinchTab project. Use when working on PinchTab source code, adding features, fixing bugs, running tests, or preparing PRs. Triggers on "work on pinchtab", "pinchtab development", "contribute to pinchtab", "fix pinchtab bug", "add pinchtab feature".
$ npx -y skills add pinchtab/pinchtab --skill pinchtab-dev --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pinchtab-devContext preview
The summary Claude sees to decide when to auto-load this skill.
Develop and contribute to the PinchTab project. Use when working on PinchTab source code, adding features, fixing bugs, running tests, or preparing PRs. Triggers on "work on pinchtab", "pinchtab development", "contribute to pinchtab", "fix pinchtab bug", "add pinchtab feature".
name: pinchtab-dev description: Develop and contribute to the PinchTab project. Use when working on PinchTab source code, adding features, fixing bugs, running tests, or preparing PRs. Triggers on "work on pinchtab", "pinchtab development", "contribute to pinchtab", "fix pinchtab bug", "add pinchtab feature".
PinchTab is a browser control server for AI agents — Small Go binary with HTTP API.
Run everything from the repository root (a clone of `github.com/pinchtab/pinchtab`).
All development commands run via `./dev`:
| Command | Description | |---------|-------------| | `./dev build` | Build the application | | `./dev dev` | Build & run | | `./dev dashboard` | Hot-reload dashboard development (Vite + Go) | | `./dev run` | Run the application | | `./dev check` | All checks (Go + Dashboard + Plugin) | | `./dev check go` | Go checks only | | `./dev check dashboard` | Dashboard checks only | | `./dev test unit` | Go unit tests | | `./dev test dashboard` | Dashboard unit tests | | `./dev e2e basic` | Basic suite (api + cli + infra) | | `./dev e2e extended` | Extended suite (all extended) | | `./dev e2e smoke` | Smoke suite | | `./dev smoke` | Host Docker smoke checks (`--browser=chrome\|cloak\|all`) | | `./dev e2e test "<name>"` | Run a single E2E test by `start_test` name | | `./dev all` | check + test + e2e extended (pre-push gate) | | `./dev binaries` | Build the full release binary matrix into dist/ | | `./dev doctor` | Setup dev environment |
cmd/pinchtab/ CLI entry point
internal/
bridge/ Chrome CDP communication
handlers/ HTTP API handlers
server/ HTTP server
dashboard/ Embedded React dashboard
config/ Configuration
routes/ API route catalogue
assets/ Embedded assets (stealth.js)
dashboard/ React dashboard source (Vite + TypeScript)
tests/e2e/ E2E runner, fixtures, scenarios/{api,cli,infra,plugin}/1. **Create branch** from `main`:
git checkout main && git pull git checkout -b feat/my-feature # or fix/my-bug
2. **Make changes** — follow code patterns in existing files
3. **Run checks locally**:
./dev all # check + test + e2e (one-shot pre-push gate) # …or individually: ./dev check # Lint + format + typecheck ./dev test unit # Go unit tests ./dev e2e basic # E2E tests (Docker required)
4. **Commit** with conventional commits, usually scoped — `fix(extract): … (PIN-394)`:
5. **Push and create PR**
| File | Purpose | |------|---------| | `internal/assets/stealth.js` | Bot detection evasion (light/medium/full levels) | | `internal/bridge/bridge.go` | Chrome CDP bridge | | `internal/handlers/*.go` | HTTP API endpoints | | `dashboard/src/` | React dashboard source | | `internal/routes/routes.go` | API route catalogue | | `tests/e2e/scenarios/api/` | API E2E tests | | `tests/e2e/scenarios/cli/` | CLI E2E tests |
./dev test unit # All Go tests go test ./internal/handlers # Specific package
./dev e2e basic # Basic suite (api + cli + infra) ./dev e2e api # API basic tests ./dev e2e cli # CLI basic tests ./dev e2e infra # Infra basic tests ./dev e2e api-extended # API extended tests (multi-instance) ./dev e2e cli-extended # CLI extended tests ./dev e2e infra-extended # Infra extended tests (multi-instance) ./dev e2e extended # Full extended suite (all extended tests) ./dev smoke # Host Docker smoke checks (not an e2e suite) # Run specific test file(s) with filter (second argument) ./dev e2e api clipboard # Run only clipboard-basic.sh ./dev e2e api-extended tabs # Run tabs-extended.sh ./dev e2e cli browser # Run browser-basic.sh in CLI suite # Run a single test by its start_test name (fastest debug loop) ./dev e2e test "click with humanize: click input by ref" ./dev e2e test "scroll (down)" ./dev e2e test "low-level mouse"
The scenario filter is one plain substring (no regex, no `|`) matched against scenario file names, groups, tiers, helpers and tags. Requires Docker daemon running.
Use this when iterating on one specific E2E failure. The runner:
1. Greps `tests/e2e/scenarios/**/*.sh` for `start_test "...<name substring>..."`. 2. Auto-picks the suite (`api`/`cli`/`infra`/`plugin`) and `-extended` variant (or `smoke` for `*-smoke.sh`) from the matching scenario file's path. 3. Builds the images (`compose build`, then `up`) and runs, inside that scenario file, **only the `start_test`...`end_test` blocks whose name contains the substring** — the scenario preamble (helper sourcing, `FIXTURES_URL`, etc.) is preserved, every other test in the file is skipped.
Note
High-performance browser automation bridge and multi-instance orchestrator with advanced stealth injection and real-time dashboard.
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element…
Use this skill when a task needs browser automation through PinchTab: open a website, inspect interactive elements, click through flows, fill out forms, scrape…
Run the PinchTab optimization loop (Docker, 3 blind subagents on the runner's HIGH model, 108 steps across 47 groups) against chrome, cloak, ghost-chrome, or…
Run the PinchTab stealth-score sweep against 15 bot-detection / fingerprint sites (sannysoft, rebrowser, deviceandbrowserinfo, iphey, whoer, browserscan,…