An AI-powered agent that reviews documentation websites using the Browser Use Cloud API and provides critical feedback for improvements.
- 🤖 AI-Powered Analysis: Uses GPT-4o through Browser Use Cloud API for intelligent, contextual feedback
- ☁️ Cloud-Based Automation: Leverages Browser Use Cloud API for reliable, scalable browser automation
- 📊 Comprehensive Scoring: Rates pages on content quality, structure, UX, and technical accuracy
- 📈 Site-Wide Analytics: Provides overall site statistics and improvement recommendations
- 📄 Detailed Reports: Generates JSON reports with actionable insights
- 🔍 Multi-Page Review: Automatically discovers and reviews all documentation pages
- 🚫 No Local Browser Required: Uses cloud infrastructure for browser automation
- ⚡ Multiple Review Modes: Choose between one-shot (fast), multi-step (detailed), or exhaustive (complete site crawling)
- 🕷️ Web Crawling: Exhaustive mode discovers ALL pages by recursively following links across the entire site
- 🔑 Single API Key: Only requires Browser Use API token - no separate OpenAI key needed
- 👀 Live Automation Viewing: Watch browser automation live via public share URLs
pip install -r requirements.txtCopy the configuration template:
cp config.template.env .envEdit .env and add your API token:
BROWSER_USE_API_TOKEN=your_browser_use_api_token_here
Getting Your API Token:
- Browser Use API Token: Sign up at browser-use.com to get your API token
# Default: Multi-step approach
python docs_reviewer.py
# Or use the command-line interface
python run_review.py
# Try the one-shot approach (faster, but less detailed)
python run_review.py --approach one-shot
# EXHAUSTIVE MODE: Discover and review ALL pages on the site
python run_review.py --exhaustive
# Exhaustive with one-shot: AI organically explores entire site in single task
python run_review.py --exhaustive --approach one-shot
# Review a custom site with specific settings
python run_review.py https://docs.example.com --max-pages 15 --approach multi-stepThe tool will automatically review the Browser Use documentation at https://docs.browser-use.com/introduction and generate a comprehensive report.
Using the Browser Use Cloud API instead of the local library provides several advantages:
- 🚀 No Setup Required: No need to install or manage local browsers
- ☁️ Scalable Infrastructure: Cloud-based automation handles complex sites reliably
- 🔒 Built-in Features: Automatic proxy rotation, CAPTCHA solving, and ad blocking
- ⚡ Better Performance: Optimized cloud infrastructure for faster execution
- 🛡️ Security: Isolated browser sessions prevent local system interference
- 💻 Cross-Platform: Works on any system without browser dependencies
- 🤖 Integrated AI: Built-in GPT-4o eliminates need for separate OpenAI API key
Choose between two analysis methods:
- Best for: Quick overviews, initial assessments
- How it works: Single browser task reviews entire site in one go
- Pros: Faster execution, fewer API calls, good for sites with <10 pages
- Cons: Less detailed per-page analysis, may hit step/token limits on large sites
- Best for: Comprehensive analysis, detailed feedback
- How it works: Separate tasks for link discovery, individual page review, and overall analysis
- Pros: Detailed per-page insights, handles large sites better, more reliable
- Cons: Takes longer, more API calls
- Best for: Complete site analysis, finding all documentation gaps
- Two sub-modes:
- 🚀 One-Shot: AI organically explores and reviews entire site in single task
- 🔄 Multi-Step: Pre-crawls to discover pages, then reviews each individually
- Pros: Finds every single page, comprehensive coverage analysis, identifies missing documentation
- Cons: Takes much longer, uses many more API calls, may hit safety limits on very large sites
# One-shot for quick assessment
python run_review.py --approach one-shot
# Multi-step for comprehensive review (default)
python run_review.py --approach multi-step
# Exhaustive crawling for complete site analysis
python run_review.py --exhaustiveThe tool automatically enables public sharing for all browser automation tasks, allowing you to watch the AI agent work in real-time:
- 🔗 Public Share URLs: Direct links to view automation execution
- 📺 Live Updates: See the browser navigate, extract content, and analyze pages
- ⏱️ Long-Running Tasks: Tasks can take up to 15 minutes for comprehensive reviews
- 📱 Any Device: View automation from any browser, no login required
When you run a review, you'll see output like:
Task created: abc123...
🔗 Public share: https://browser-use.com/share/abc123...
📺 Live view: https://browser-use.com/live/abc123...
Status: running
The script is pre-configured to review the Browser Use documentation:
from docs_reviewer import DocumentationReviewer
import asyncio
async def review_docs():
# API token can be set via environment variable or passed directly
reviewer = DocumentationReviewer()
# One-shot approach
results = await reviewer.review_documentation_site(
"https://docs.browser-use.com/introduction",
max_pages=10,
approach="one-shot"
)
# Multi-step approach (default)
results = await reviewer.review_documentation_site(
"https://docs.browser-use.com/introduction",
max_pages=15,
approach="multi-step"
)
print(f"Reviewed {results['total_pages_reviewed']} pages")
asyncio.run(review_docs())# Basic usage (defaults to Browser Use docs)
python run_review.py
# Review a specific site
python run_review.py https://docs.example.com
# Use one-shot approach for quick review
python run_review.py https://docs.example.com --approach one-shot
# Limit pages and use multi-step approach
python run_review.py https://docs.example.com --max-pages 20 --approach multi-step
# EXHAUSTIVE: Multi-step crawling (discover all pages first, then review each)
python run_review.py https://docs.example.com --exhaustive
# EXHAUSTIVE: One-shot organic exploration (AI discovers and reviews in one task)
python run_review.py https://docs.example.com --exhaustive --approach one-shot
# Exhaustive with safety limit (stops after finding 50 pages)
python run_review.py https://docs.example.com --exhaustive --max-pages 50
# Get help
python run_review.py --helpmax_pages: Maximum number of pages to review (default: 10-20 depending on approach)approach: Review method - "one-shot" or "multi-step" (default: "multi-step")browser_use_token: Your Browser Use API token (includes AI analysis)
The AI reviewer evaluates each page based on:
- Clarity and readability
- Completeness of information
- Accuracy and up-to-date content
- Example quality and relevance
- Logical flow and hierarchy
- Proper heading structure
- Information architecture
- Content categorization
- Navigation effectiveness
- Search functionality
- Breadcrumbs and wayfinding
- Mobile responsiveness
- Loading performance
- Code examples correctness
- API documentation accuracy
- Implementation details
- Version consistency
The tool generates:
- Individual Page Reviews: Detailed analysis of each page with scores and recommendations
- Overall Site Review: Comprehensive site-wide analysis and strategic recommendations
- JSON Report: Machine-readable output saved to
documentation_review_[timestamp].json
View your review results in a beautiful, interactive web interface! The included web app displays your JSON reports in a clean, navigable format.
# Easy way (automatically opens browser)
python view_results.py
# Or start manually
python app.pyThen open your browser to: http://localhost:5002
- 📂 File Browser: Automatically discovers all review JSON files
- 📊 Rich Summaries: Shows key metrics, scores, and metadata for each review
- 🎨 Pretty Formatting: Clean, modern interface with color-coded scores
- 📱 Responsive Design: Works on desktop and mobile
- 🔍 Detailed Views: Click any file to see comprehensive, formatted results
- 📄 Raw JSON Access: Option to view original JSON data
- 🏷️ Smart Tagging: Visual badges for review approach and status
- ⚡ Fast Navigation: Easy browsing between different review reports
- 📸 Media Gallery: Beautiful display of automation screenshots and recordings
- 🎬 Automation Artifacts: View GIFs, screenshots, and files from browser automation
- 🖼️ Lightbox Viewer: Click screenshots for full-size viewing
- 📥 File Downloads: Download any captured media or generated files
- Overview Dashboard: All your review files with quick stats
- Detailed Page Analysis: Individual page scores and feedback
- Site-Wide Insights: Overall analysis and recommendations
- Score Visualizations: Color-coded metrics (🟢 Good, 🟡 Medium, 🔴 Needs Work)
- Media Gallery: Screenshots and recordings from browser automation
- AI-Generated Content: Enhanced analysis saved by the AI agent
- Collapsible Sections: Organize content for easy reading
- Interactive Elements: Lightbox image viewer, expandable sections
The web interface makes it easy to:
- Compare different review runs
- Share results with team members
- Identify patterns across multiple sites
- Track improvements over time
The web viewer displays:
- Clean file listing with metadata and scores
- Detailed page-by-page analysis with color-coded ratings
- Beautiful media gallery with automation screenshots and GIFs
- Interactive lightbox for viewing images in full size
- AI-generated analysis sections with enhanced insights
- Site-wide recommendations and strategic analysis
- Raw JSON data (collapsible for technical users)
✅ Review completed!
📊 Pages reviewed: 12
📄 Full report saved to: documentation_review_1704123456.json
📈 Average score: 7.8/10
🎯 Score distribution: {'excellent (8-10)': 5, 'good (6-7)': 4, 'needs_improvement (4-5)': 2, 'poor (1-3)': 1, 'failed (0)': 0}
📋 Quick Summary:
• Browser Use - Introduction: 9/10
• Quick Start Guide: 8/10
• API Reference: 7/10
• Examples: 6/10
• Advanced Usage: 8/10
... and 7 more pages
The generated JSON report includes:
{
"start_url": "https://docs.browser-use.com/introduction",
"total_pages_reviewed": 12,
"page_reviews": [
{
"url": "...",
"title": "...",
"review": {
"score": 8,
"content_quality": {"score": 8, "feedback": "..."},
"structure_organization": {"score": 7, "feedback": "..."},
"user_experience": {"score": 9, "feedback": "..."},
"technical_accuracy": {"score": 8, "feedback": "..."},
"critical_issues": ["..."],
"recommendations": ["..."],
"positive_aspects": ["..."]
}
}
],
"overall_review": {
"statistics": {...},
"site_analysis": "...",
"priority_recommendations": ["..."]
}
}- Python 3.8+
- Browser Use API token (from browser-use.com)
requests>=2.31.0- HTTP requests for Browser Use Cloud APIpython-dotenv>=1.0.0- Environment variable managementbeautifulsoup4>=4.12.0- HTML parsing utilities
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
MIT License - see LICENSE file for details