import { Heading } from '@/components/Heading' import { useLanguage } from '@/i18n/context' export default function Overview() { const { isZh } = useLanguage() return (

Overview

{isZh ? 'page-agent 是一个完全基于 Web 技术的 GUI Agent,简单几步,让你的网站拥有 AI 操作员。' : 'page-agent is a purely web-based GUI Agent. Gives your website an AI operator in simple steps.'}

{/* Status Badges */}
MIT License TypeScript Downloads Bundle Size GitHub stars
{isZh ? '什么是 page-agent?' : 'What is page-agent?'}

{isZh ? 'page-agent 是一个页面内嵌式 GUI Agent。与传统的浏览器自动化工具不同,page-agent 面向网站开发者,而非爬虫或Agent客户端开发者;将 Agent 集成到你的网站中,让用户可以通过自然语言与页面进行交互。' : 'page-agent is an embedded GUI Agent. Unlike traditional browser automation tools, page-agent is built for web developers and web applications first. Integrate it into your site to let users interact with pages through natural language.'}

{isZh ? '核心特性' : 'Core Features'}

{isZh ? '🧠 智能 DOM 理解' : '🧠 Smart DOM Analysis'}

{isZh ? '基于 DOM 分析,高强度脱水。无需视觉识别,纯文本实现精准操作。' : 'DOM-based analysis with high-intensity dehydration. No visual recognition needed. Pure text for fast and precise operations.'}

{isZh ? '🔒 安全可控' : '🔒 Secure & Controllable'}

{isZh ? '支持操作黑白名单、数据脱敏保护。注入自定义知识库,让 AI 按你的规则工作。' : 'Supports operation allowlists, data masking protection. Inject custom knowledge to make AI work by your rules.'}

{isZh ? '⚡ 零后端部署' : '⚡ Zero Backend'}

{isZh ? 'CDN 或 NPM 引入,自定义 LLM 接入点。' : 'CDN or NPM import with custom LLM endpoints.'}

{isZh ? '♿ 普惠智能' : '♿ Accessible Intelligence'}

{isZh ? '为复杂 B端系统、管理后台提供自然语言入口。让每个用户都能轻松上手。' : 'Provides natural language interface for complex B2B systems and admin panels. Makes software easy for everyone.'}

{isZh ? '与 browser-use 的区别' : 'vs. browser-use'}
page-agent browser-use
{isZh ? '部署方式' : 'Deployment'} {isZh ? '页面内嵌组件' : 'Embedded component'} {isZh ? '外部工具' : 'External tool'}
{isZh ? '操作范围' : 'Scope'} {isZh ? '当前页面' : 'Current page'} {isZh ? '整个浏览器' : 'Entire browser'}
{isZh ? '目标用户' : 'Target Users'} {isZh ? '网站开发者' : 'Web developers'} {isZh ? '爬虫/Agent 开发者' : 'Scraper/Agent developers'}
{isZh ? '使用场景' : 'Use Case'} {isZh ? '用户体验增强' : 'UX enhancement'} {isZh ? '自动化任务' : 'Automation tasks'}
{isZh ? '应用场景' : 'Use Cases'}
) }