Launch Chromium instances with real-device fingerprints via standard Playwright APIs. Each browser gets a unique, consistent digital identity - undetectable by anti-bot systems.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionanti-detect-browserExecute the skills CLI command in your project's root directory to begin installation:
Fetches anti-detect-browser from antibrow/anti-detect-browser-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate anti-detect-browser. Access via /anti-detect-browser in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
2
total installs
2
this week
0
upvotes
Run in your terminal
2
installs
2
this week
—
stars
Launch Chromium instances with real-device fingerprints via standard Playwright APIs. Each browser gets a unique, consistent digital identity - undetectable by anti-bot systems.
anti-detect-browserhttps://antibrow.comhttps://antibrow.com/api/v1/https://antibrow.com/docsnpm install anti-detect-browser
import { AntiDetectBrowser } from 'anti-detect-browser'
// Get your API key at https://antibrow.com
const ab = new AntiDetectBrowser({ key: 'your-api-key' })
const { browser, page } = await ab.launch({
fingerprint: { tags: ['Windows 10', 'Chrome'] },
profile: 'my-account-01',
proxy: 'http://user:pass@host:port',
})
// Standard Playwright API from here — zero learning curve
await page.goto('https://example.com')
await browser.close()
A profile saves cookies, localStorage, and session data across launches. Same profile name = same stored state next time.
// First launch — fresh session
const { page } = await ab.launch({ profile: 'shop-01' })
await page.goto('https://shop.example.com/login')
// ... login ...
await browser.close()
// Later — session restored, already logged in
const { page: p2 } = await ab.launch({ profile: 'shop-01' })
await p2.goto('https://shop.example.com/dashboard') // no login needed
Each launch fetches a real fingerprint collected from actual devices. Over 30 categories (Canvas, WebGL, Audio, Fonts, WebRTC, WebGPU, etc.) with 500+ individual parameters.
// Windows Chrome, version 130+
await ab.launch({
fingerprint: { tags: ['Windows 10', 'Chrome'], minBrowserVersion: 130 },
})
// Mac Safari
await ab.launch({
fingerprint: { tags: ['Apple Mac', 'Safari'] },
})
// Mobile Android
await ab.launch({
fingerprint: { tags: ['Android', 'Mobile', 'Chrome'] },
})
Available filter tags: Microsoft Windows, Apple Mac, Android, Linux, iPad, iPhone, Edge, Chrome, Safari, Firefox, Desktop, Mobile, Windows 7, Windows 8, Windows 10
When running many browsers simultaneously, each window gets a floating label, title prefix, and unique theme color.
await ab.launch({
profile: 'twitter-main',
label: '@myhandle', // floating label + window title
color: '#e74c3c', // unique window border color
})
Route each browser through a different proxy for geo-targeting or IP rotation.
await ab.launch({
proxy: 'socks5://user:[email protected]:1080',
fingerprint: { tags: ['Windows 10', 'Chrome'] },
profile: 'us-account',
})
Monitor headless sessions from the https://antibrow.com dashboard. Useful for debugging AI agent actions or letting team members observe.
const { liveView } = await ab.launch({
headless: true,
liveView: true,
})
console.log('Watch live:', liveView.viewUrl)
// Share this URL — anyone with access can see the browser screen
Already have Playwright scripts? Add fingerprints without changing your workflow.
import { chromium } from 'playwright'
import { applyFingerprint } from 'anti-detect-browser'
const browser = await chromium.launch()
const context = await browser.newContext()
await applyFingerprint(context, {
key: 'your-api-key',
fingerprint: { tags: ['Windows 10', 'Chrome'] },
profile: 'my-profile',
})
const page = await context.newPage()
await page.goto('https://example.com')
Run as an MCP server so AI agents can launch and control fingerprint browsers via tool calls.
{
"mcpServers": {
"anti-detect-browser": {
"command": "npx",
"args": ["anti-detect-browser", "--mcp"],
"env": { "ANTI_DETECT_BROWSER_KEY": "your-api-key" }
}
}
}
Available tools:
| Tool | What it does |
|---|---|
launch_browser |
Start a new fingerprint browser session |
close_browser |
Close a running session |
navigate |
Go to a URL |
screenshot |
Capture the current screen |
click / fill |
Interact with page elements |
evaluate |
Run JavaScript on the page |
get_content |
Extract text from the page or a specific element |
start_live_view |
Stream the browser screen to https://antibrow.com dashboard |
stop_live_view |
Stop live streaming |
list_sessions |
List all running browser instances |
list_profiles |
List all saved profiles |
const accounts = [
{ profile: 'twitter-1', label: '@brand_main', color: '#1DA1F2' },
{ profile: 'twitter-2', label: '@support', color: '#FF6B35' },
{ profile: 'twitter-3', label: '@personal', color: '#6C5CE7' },
]
for (const acct of accounts) {
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
manaflow-ai/cmux
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
Registry listing for anti-detect-browser matched our evaluation — installs cleanly and behaves as described in the markdown.
anti-detect-browser fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
anti-detect-browser is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend anti-detect-browser for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: anti-detect-browser is the kind of skill you can hand to a new teammate without a long onboarding doc.
anti-detect-browser fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
anti-detect-browser reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend anti-detect-browser for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
I recommend anti-detect-browser for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
anti-detect-browser reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 72