Browser automation skills for Codex via native skill discovery. Clone and symlink.
- Git
- Chrome or Chromium installed
- Python 3.12+ with uv
-
Clone the repository:
git clone https://github.com/billy-enrizky/openbrowser-ai.git ~/.codex/openbrowser -
Create the skills symlink:
mkdir -p ~/.agents/skills ln -s ~/.codex/openbrowser/plugin/skills ~/.agents/skills/openbrowser
Windows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.agents\skills" cmd /c mklink /J "$env:USERPROFILE\.agents\skills\openbrowser" "$env:USERPROFILE\.codex\openbrowser\plugin\skills"
-
Install OpenBrowser CLI:
uv tool install openbrowser-ai openbrowser-ai install
-
Restart Codex to discover the skills.
ls -la ~/.agents/skills/openbrowserYou should see a symlink pointing to the openbrowser plugin skills directory.
| Skill | Description |
|---|---|
web-scraping |
Extract structured data from websites, handle pagination |
form-filling |
Fill forms, login flows, multi-step wizards |
e2e-testing |
Test web apps by simulating user interactions |
page-analysis |
Analyze page content, structure, metadata |
accessibility-audit |
Audit pages for WCAG compliance |
file-download |
Download files (PDFs, CSVs) using browser session |
cd ~/.codex/openbrowser && git pullSkills update instantly through the symlink.
rm ~/.agents/skills/openbrowserOptionally delete the clone: rm -rf ~/.codex/openbrowser