browser-act
Automate web browsers with stealth mode and captcha solving
AI agents need reliable browser automation for web scraping, form filling, and data extraction. browser-act provides a structured CLI with anti-detection capabilities and built-in captcha solving.
تنزيل ZIP المهارة
رفع في Claude
اذهب إلى Settings → Capabilities → Skills → Upload skill
فعّل وابدأ الاستخدام
اختبرها
استخدام "browser-act". browser-act stealth-extract https://news.ycombinator.com
النتيجة المتوقعة:
Returns page content as markdown with titles, scores, and comments extracted
استخدام "browser-act". browser-act state
النتيجة المتوقعة:
Returns indexed list: [1] input 'Search', [3] button 'Submit', [5] link 'About'
استخدام "browser-act". browser-act navigate https://example.com && browser-act wait stable && browser-act screenshot
النتيجة المتوقعة:
Opens page, waits for stability, returns screenshot path
التدقيق الأمني
مخاطر منخفضةStatic analysis detected 283 potential issues, primarily false positives from markdown documentation of CLI commands. The skill uses a structured CLI interface for browser automation with transparent security documentation. All external command patterns are well-defined CLI invocations, not arbitrary shell execution. Network access is limited to documented cloud services for captcha solving. Filesystem access is scoped to browser profile directories. Human oversight mechanisms (policies, human-assist-url) provide appropriate safeguards.
عوامل الخطر
⚙️ الأوامر الخارجية (1)
🌐 الوصول إلى الشبكة (1)
📁 الوصول إلى نظام الملفات (1)
درجة الجودة
ماذا يمكنك بناءه
Extract product data from e-commerce sites
Automate scraping product listings, prices, and reviews from websites with anti-scraping protection. Use stealth mode to avoid detection.
Fill forms and submit data automatically
Navigate multi-step forms, handle dropdowns and checkboxes, and submit data. Credential-based logins require human confirmation first.
Monitor changing web content
Take periodic screenshots or extract text to detect changes on monitored pages. Use parallel sessions to check multiple sites.
جرّب هذه الموجهات
Extract the main content from {url} and return it as markdownOpen {url} in a new browser, find the login form, wait for it to load, and show me what fields are availableNavigate to {url}, click the element labeled '{element}', wait for the page to stabilize, then extract all headingsOpen {url}, attempt to solve any captcha present, then continue with the login flowأفضل الممارسات
- Run wait stable and state after any action that changes the page content
- Use stealth-extract for simple content retrieval without session overhead
- Check references/policies.md at the start of every task for human assist triggers
تجنب
- Do not fill credentials unless explicitly provided by the user
- Do not chain commands that require parsing intermediate output
- Do not assume element indices remain valid after page navigation