Quickstart: Build Your First BrowsingBee Skill in 5 Minutes
This is the fastest path from zero to a working skill. By the end you'll have a named workflow you can run from your terminal — and from any AI agent — with one command.
1. Install the CLI
This gives you the global browsingbee command.
2. Create a skill
In the dashboard, create a new skill. Give it a short name (this is how you'll call it) and a target URL where the workflow starts.
3. Add your steps
Build the flow out of the core actions. A typical "log in and read a number" skill looks like this:
4. Run it
You'll get JSON back with exactly what you extracted:
{
"status": "success",
"skillId": "sign-in-skill",
"extracted": {
"welcome": "Hello, Jane"
}
}5. Wire it into your agent
Because the output is structured JSON, your agent just shells out to browsingbee run <skill>, parses the result, and keeps going. No browser code lives in your agent — the skill is the contract.
Build a library of skills, one per web app you want your agents to drive. Then read How BrowsingBee Works for the full picture.
Happy building. 🐝