browser-use
Installation
SKILL.md
Browser-Use Skill
Agentic browser controller. YOU are the agent — observe page state via ARIA snapshots, reason about what to do, execute actions, repeat until done.
Quick Start
# Launch session
curl -s -X POST http://127.0.0.1:8500/ -H 'Content-Type: application/json' \
-d '{"op":"launch","tier":1,"url":"https://example.com"}'
# Snapshot (get ARIA tree with @e1, @e2 refs)
curl -s -X POST http://127.0.0.1:8500/ -H 'Content-Type: application/json' \
-d '{"op":"snapshot","session_id":"<id>","compact":true}'
# Click element
curl -s -X POST http://127.0.0.1:8500/ -H 'Content-Type: application/json' \
-d '{"op":"action","session_id":"<id>","action":"click","params":{"ref":"@e1"}}'