Được TopGit lập chỉ mục từ metadata GitHub: ntegrals/openbrowser có 9.5k sao, viết chủ yếu bằng TypeScript. Let AI agents browse the web. An autonomous toolkit for browser-based AI agents.
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
AI-powered autonomous web browsing framework for TypeScript.
Give an AI agent a browser. It clicks, types, navigates, and extracts data — autonomously completing tasks on any website. Built on Playwright with first-class support for OpenAI, Anthropic, and Google models.
Production-ready since v1.0. Contributions welcome.
Why Open Browser?
Autonomous agents: Describe a task in natural language, and an AI agent navigates the web to complete it — clicking, typing, scrolling, and extracting data without manual scripting
Multi-model support: Works with OpenAI, Anthropic, and Google out of the box via the Vercel AI SDK — swap models with a single flag
Interactive REPL: Drop into a live browser session and issue commands interactively — great for debugging, prototyping, and exploration
Sandboxed execution: Run agents in resource-limited environments with CPU/memory monitoring, timeouts, and domain restrictions
Open source: MIT licensed, fully extensible, bring your own API keys
Quick Start
# Install dependencies
bun install
# Set up your API keys
cp .env.example .env
# Edit .env with your API keys
# Run an agent
bun run open-browser run "Find the top story on Hacker News and summarize it"
# Or open a browser interactively
bun run open-browser interactive
Command-line interface for running agents and browser commands
@open-browser/sandbox
Sandboxed execution with resource limits and monitoring
CLI Commands
Run an AI Agent
open-browser run <task> [options]
Describe what you want done. The agent figures out the rest.
# Search and extract information
open-browser run "Find the price of the MacBook Pro on apple.com"
# Fill out forms
open-browser run "Sign up for the newsletter on example.com with [email protected]"
# Multi-step workflows
open-browser run "Go to GitHub, find the open-browser repo, and star it"
Option
Description
-m, --model <model>
Model to use (default: gpt-4o)
-p, --provider <provider>
Provider: openai, anthropic, google
--headless / --no-headless
Show or hide the browser window
--max-steps <n>
Max agent steps (default: 25)
-v, --verbose
Show detailed step info
--no-cost
Hide cost tracking
Browser Commands
open-browser open <url> # Open a URL
open-browser click <selector> # Click an element
open-browser type <selector> <text> # Type into an input
open-browser screenshot [output] # Capture a screenshot
open-browser eval <expression> # Run JavaScript on the page
open-browser extract <goal> # Extract content as markdown
open-browser state # Show current URL, title, and tabs
open-browser sessions # List active browser sessions
Interactive REPL
open-browser interactive
Drop into a live browser> prompt with full control:
browser> open https://news.ycombinator.com
browser> extract "top 5 stories with titles and points"
browser> click .morelink
browser> screenshot front-page.png
browser> help
Using as a Library
import { Agent, createViewport, createModel } from 'open-browser'
const viewport = await createViewport({ headless: true })
const model = createModel('openai', 'gpt-4o')
const agent = new Agent({
viewport,
model,
task: 'Go to example.com and extract the main heading',
settings: {
stepLimit: 50,
enableScreenshots: true,
},
})
const result = await agent.run()
console.log(result)
Sandboxed Execution
Run agents with resource limits and monitoring:
import { Sandbox } from '@open-browser/sandbox'
const sandbox = new Sandbox({
timeout: 300_000, // 5 minute timeout
maxMemoryMB: 512, // Memory limit
allowedDomains: ['example.com'],
stepLimit: 100,
captureOutput: true,
})
const result = await sandbox.run({
task: 'Complete the checkout form',
model: languageModel,
})
console.log(result.metrics) // steps, URLs visited, CPU time
ntegrals/openbrowser thuộc nhóm AI Tools trên TopGit, cùng 6 topic GitHub. Trang Trending và Topics liệt kê các repo cùng số sao và cùng ngôn ngữ để so sánh.
Đọc thêm về ntegrals/openbrowser ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/ntegrals/openbrowser là nguồn chính thức.
ntegrals/openbrowser có bao nhiêu sao?
ntegrals/openbrowser có 9.5k sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/ntegrals/openbrowser. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
ntegrals/openbrowser có những chủ đề gì?
GitHub topics của ntegrals/openbrowser: "ai-agents", "automation", "claude", "playwright", "puppeteer", "sandbox". TopGit xếp repo vào nhóm AI Tools.
ntegrals/openbrowser còn đang phát triển không?
Commit gần nhất trên ntegrals/openbrowser là 4 tháng trước (theo timestamp GitHub). Repo có 863 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
ntegrals/openbrowser viết bằng ngôn ngữ gì?
ntegrals/openbrowser chủ yếu viết bằng TypeScript. Trường "language" của GitHub dựa trên phần lớn byte ở nhánh mặc định.
Vì sao ntegrals/openbrowser được xếp vào nhóm AI Tools?
TopGit xếp ntegrals/openbrowser vào nhóm AI Tools dựa trên GitHub topics và mô tả của repo (gắn thẻ: "ai-agents", "automation", "claude"). Việc phân loại dựa trên metadata thật của repo, không phải đoán theo cảm tính biên tập.
Đọc đầy đủ README ở tab phía trên.
Muốn nghe thêm một ý kiến về openbrowser?
Hỏi một AI đọc được trang này — một cú bấm là có ngay nhận định về openbrowser.