Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/fredabila/orcbot/firecrawl-clinpx skills add fredabila/orcbot --skill firecrawl-cligit clone --depth 1 https://github.com/fredabila/orcbotWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00081 | $0.01488 |
| Opus 5 | $0.00041 | $0.00744 |
| Sonnet 5 | $0.00016 | $0.00298 |
| Haiku 4.5 | $0.00008 | $0.00149 |
Grade A, and why
firecrawl-cli scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Firecrawl CLI Skill
Overview
Firecrawl provides a cloud browser and AI extraction layer on top of any website. Unlike OrcBot's local Playwright browser, Firecrawl runs browser sessions on remote infrastructure, handles bot-protection (Cloudflare, reCAPTCHA, etc.), and can return pre-formatted markdown or structured JSON without you parsing HTML.
Browser Decision Guide
Always choose the right browser for the job:
| Situation | Use |
|---|---|
| Simple page, just need to read content | browser_navigate (Playwright, free, fast) |
| Need to click buttons, fill forms, interact | browser_navigate + browser_click + browser_type |
| Page is bot-protected, Cloudflare, requires JS | firecrawl_scrape |
| Need clean markdown without any DOM work | firecrawl_scrape |
| Need bulk content from many pages | firecrawl_crawl |
| Need structured JSON from web data | firecrawl_agent |
| Need to drive a session step by step in cloud | firecrawl_browser |
Do NOT replace working browser_navigate calls with firecrawl_scrape just because firecrawl is installed. Use firecrawl when local Playwright fails or when the task specifically benefits from cloud execution.
Setup
# Install the CLI globally
npm install -g firecrawl-cli
# Authenticate (choose one)
firecrawl login # interactive browser login
firecrawl login --api-key fc-YOUR-KEY # direct API key
# Verify
firecrawl --status
For a self-hosted Firecrawl instance (no API key needed):
export FIRECRAWL_API_URL=http://localhost:3002
Skills Available
After this skill is activated OrcBot has access to these callable tools:
firecrawl_scrape(url, format?, options?)
Extract content from a URL via cloud browser. Default format is markdown.
# Get clean markdown
firecrawl_scrape("https://example.com")
# Get all links from a page
firecrawl_scrape("https://example.com", "links")
# Extract main content only, skip navs and footers
firecrawl_scrape("https://example.com", "markdown", {only_main_content: true})
# Wait 3s for JS to render, then scrape
firecrawl_scrape("https://spa.example.com", "markdown", {wait_for: 3000})
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 175 lines · 81 tokens per session scan A 5e789ae969e6
firecrawl-cli is a skill published in the GitHub repository fredabila/orcbot (11 stars, last pushed 5mo ago), licensed MIT. It adds 81 tokens to every session and 1,488 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
claude-in-chrome
Automates your Chrome browser to interact with web pages - clicking elements, filling forms, capturing screenshots, reading console logs, and navigating sites. Opens pages in new tabs within your existing Chrome session. Requires site-level permissions before executing (configured in the extension).
canvas
Display, present, and render HTML content on connected Otto nodes (Mac app, iOS, Android). Show on device, preview on mobile, push to screen, or navigate to a URL on any connected node. Use for games, visualizations, dashboards, interactive demos, and live-reloading development previews. Supports presenting, hiding…
browse
Drive a real stealth browser from your shell — act on websites (order food, file an expense, pull data behind a login), with per-person persistent sign-ins via the provider's managed auth (Kernel, Anchor, or Browserbase — picked by which API key you have). Use for ACTING on a site; to just read a page, use curl/wget…
interactive-login
How to complete browser/interactive logins (aws / gh / glab / gcloud). The platform backgrounds the login poller so it survives the human's browser round-trip — and when that does NOT work.
peekaboo
Capture and automate macOS UI with the Peekaboo CLI.
notte
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…