From 78dcd437df2e0cfde64927d6872e4c17f63d7f4e Mon Sep 17 00:00:00 2001 From: Varun Nuthalapati Date: Thu, 28 May 2026 23:16:14 -0700 Subject: [PATCH] docs: clarify Playwright browser prerequisite for standalone vs skill mode README listed only Chromium, but the Claude Code skill requires Firefox (as documented in SKILL.md). Update the prerequisite bullet and install command to mention both, with context for which mode needs which browser. Closes #11 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 22bd91e..054451d 100644 --- a/README.md +++ b/README.md @@ -170,14 +170,14 @@ python assets/task_showcase/app.py \ ### Prerequisites - Python 3.10+ -- Chromium installed through Playwright +- Playwright browser installed (Chromium for standalone mode; Firefox when using the Claude Code skill) - An API key for your chosen backend (OpenAI, Anthropic, or OpenRouter) ### Install ```bash pip install -e . -playwright install chromium +playwright install chromium # or: playwright install firefox (for Claude Code skill mode) ``` ### Run