From fd93f406f2d741907084dbb83eea62bb86d8df8f Mon Sep 17 00:00:00 2001 From: Varun Nuthalapati Date: Thu, 28 May 2026 23:19:25 -0700 Subject: [PATCH] docs: add 30-second quick-start callout above Performance section New users hit ~160 lines of motivation, comparisons, and benchmarks before reaching the Quick Start section. Add a short TL;DR code block immediately after the demo video so first-time visitors can copy-paste and run without scrolling. Links back to the full Quick Start section for the complete setup guide. Closes #20 --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 22bd91e..e974983 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,20 @@ https://github.com/user-attachments/assets/4ed94cd5-11be-4daa-b2d7-1260a803baca --- +## ⚡ 30-second start + +```bash +pip install -e . +playwright install chromium +export OPENAI_API_KEY=sk-... # or ANTHROPIC_API_KEY / OPENROUTER_API_KEY +python -m webwright.run.cli -c base.yaml -c model_openai.yaml \ + -t "Go to github.com and find the trending repos" +``` + +> New here? Jump straight to [Quick Start](#-quick-start) for the full setup guide. + +--- + ## 📊 Performance State-of-the-art on two real-website benchmarks with a 100-step budget — see the [blog post](https://www.microsoft.com/en-us/research/articles/webwright-a-terminal-is-all-you-need-for-web-agents/) for full details.