Deploy browser automations as scheduled, API-callable serverless Functions — plus stealth sessions, vault-backed login, captcha solving, and natural-language agent runs via the Notte CLI. Turns any browser flow into a deterministic Bitterbot-callable endpoint, ideal for crystallized skills + dream-engine cron schedules.
60
72%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Critical
Do not install without reviewing
Fix and improve this skill with Tessl
tessl review fix ./skills/notte/SKILL.mdHosted browser infrastructure with a CLI that does three things the bundled browser tool and Firecrawl cannot:
Crystallized skills and dream-cycle automations both want the same thing: a stable, repeatable browser action the agent can call by name on a schedule. Notte Functions is exactly that.
# 1. Capture an agent's run as deterministic Python (or hand-write it).
notte agents workflow-code # exports the latest agent's steps as Python
notte sessions workflow-code # or export from a CLI session
# 2. Deploy the script as a Function (one-shot — no servers, no infra).
notte functions create --file workflow.py
# → returns function_id
# 3. Run on demand, or schedule.
notte functions run # one-off
notte functions schedule-set --cron "0 */2 * * *" # every 2h, matches dream cycles
notte functions runs # invocation history
notte functions fork # version forward without losing the original
# 4. Or invoke via HTTP from anywhere (skill scripts, gateway hooks, channels).
curl -X POST https://api.notte.cc/functions/{function_id}/runs/start \
-H "Authorization: Bearer $NOTTE_API_KEY" \
-d '{"url":"https://example.com","query":"laptop"}'Why this matters for Bitterbot:
schedule-set aligns directly with dream-engine cron triggers (every 2h consolidation, daily syncs, hourly monitors).notte agents workflow-code is structurally the same pattern as Bitterbot's dream engine crystallizing execution paths — the agent figures out the steps, then the deterministic Function takes over for production.| Need | Use |
|---|---|
| Open a tab, click around, take a snapshot | Bundled browser tool (src/browser/) |
| Pull a single page through a stealth fetch | Firecrawl via web_fetch (docs/tools/firecrawl.md) |
| Crystallize a recurring browser flow into a callable API endpoint | notte functions |
| Schedule a browser flow on a cron (dream-cycle aligned) | notte functions schedule-set |
| Run a multi-step task on an authenticated site | notte session |
| Log in without exposing the password to the LLM | notte vault |
| The bundled browser is being challenged with captcha / Cloudflare / DataDome | notte (--solve-captchas, --proxy) |
| Need a residential / geo-located IP | notte |
| Hand a browsing goal to an agent and get a structured answer | notte agents |
notte does not replace the bundled browser. It's the deployment + infrastructure layer for browser flows that need to outlive a single agent run.
# Install (handled by the install metadata above).
brew tap nottelabs/notte-cli https://github.com/nottelabs/notte-cli.git && brew install notte
# or:
go install github.com/nottelabs/notte-cli/cmd/notte@latest
# Authenticate. Stores the API key in the system keyring.
notte auth login
# or: export NOTTE_API_KEY=...notte sessions start --proxy --solve-captchas
notte page goto "https://news.ycombinator.com"
notte page observe
notte page scrape --instructions "Top 10 story titles, points, and URLs as JSON"
notte sessions stop -yobserve returns interactive element IDs (@B3, @I1, @L9). Use those with click / fill, or fall back to Playwright selectors (#submit, button:has-text('Submit')) — both are accepted.
docs/tools/browser-login.md recommends manual login because automated logins trigger anti-bot defenses and can lock the account. Notte fixes this: store credentials in a vault and the browser auto-fills on matching URLs. The agent never sees the password.
notte vaults create --name "myservice"
notte vaults credentials add --vault-id <vault-id> \
--url "https://myservice.com" \
--email "user@example.com" \
--password "..." \
--mfa-secret "<TOTP_BASE32_SECRET>" # optional TOTP
notte sessions start
notte page goto "https://myservice.com/login"
# Credentials auto-fill from the matching vault entry.This unblocks autonomous flows during dream cycles where there's no user available to log in manually.
For multi-step goals, hand the task to a Notte agent:
notte agents start --task "Find the cheapest non-stop SFO→CDG flight on Sep 14 and return the URL"
notte agents status
notte agents replay # session recording / step traceAgents are cheaper than authoring step-by-step CLI calls when the task has many branches.
| Flag | Effect |
|---|---|
--proxy | Route through Notte's residential proxy pool |
--proxy-country <c> | ISO country code (us, gb, fr, de, …) |
--solve-captchas | Auto-solve reCAPTCHA / hCaptcha / Cloudflare turnstile |
--user-agent <ua> | Pin a specific UA string |
--cdp-url <url> | Bring-your-own remote browser (e.g. Lightpanda) |
--headless=false | Required when --cdp-url points to Lightpanda Cloud |
notte page click "@B3" | "#submit-button"
notte page fill "@I1" "hello" # add --enter to submit
notte page check "#tos"
notte page select "#country" "France"
notte page upload "#file" --file ./report.pdf
notte page download "@L5"
notte page eval-js 'document.title'
notte page screenshot
notte page wait 500
notte page press "Enter" | "Escape" | "Tab"
notte page scroll-down [px] | scroll-up [px]Navigation: goto, back, forward, reload, new-tab, switch-tab, close-tab.
notte page scrape --instructions "Every job posting: title, company, location, salary range" -o json
notte page scrape --instructions "Article body and author" --only-main-contentNote: for routine single-page extraction without auth or anti-bot needs, web_fetch (with Firecrawl) is the lighter path. Use notte page scrape when extraction lives behind login or after a multi-step navigation.
Notte ships an MCP server (notte-mcp). It can be called through the existing mcporter skill without installing the Notte CLI:
NOTTE_API_KEY=... mcporter call --stdio "uv run --with notte-mcp python -m notte_mcp.server" \
notte_scrape url=https://example.com instructions="Extract pricing tiers"Use the CLI by default — the MCP path is mainly useful inside flows already orchestrating MCP calls.
notte sessions start -o json | jq -r '.viewer_url'
# or
notte sessions viewer| Variable | Purpose |
|---|---|
NOTTE_API_KEY | API key (alternative to notte auth login) |
NOTTE_SESSION_ID | Default session for page commands |
NOTTE_API_URL | Override API endpoint |
NOTTE_MCP_SERVER_PROTOCOL | stdio or sse (only for the MCP server) |
observe before click / fill / scrape. Element IDs come from observe output.observe again — IDs are scoped to the current DOM snapshot.notte sessions stop -y skips the prompt. Idle sessions cost API budget.--cdp-url requires --headless=false. Otherwise the CDP server returns 500.@B3 clicking the wrong element? Fall back to a Playwright selector.notte page press "Escape" then notte page wait 500.| Symptom | Fix |
|---|---|
| Site keeps blocking / shows captcha | Restart with --proxy --solve-captchas |
| Empty / partial scrape | Add notte page wait 1000 then re-observe before scrape |
@B3 clicks the wrong thing | Use a Playwright selector (button:has-text('Submit')) |
| Lightpanda CDP returns 500 | Add --headless=false to sessions start |
| Agent stuck on a captcha | Stop session, restart with --solve-captchas |
| 401 / auth errors | Re-run notte auth login or set NOTTE_API_KEY |
e73c717
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.