# Send Firecrawler to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "firecrawler",
    "name": "Firecrawler",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/capt-marbles/firecrawler",
    "canonicalUrl": "https://clawhub.ai/capt-marbles/firecrawler",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/firecrawler",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=firecrawler",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "fc.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "firecrawler",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T23:13:42.901Z",
      "expiresAt": "2026-05-06T23:13:42.901Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=firecrawler",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=firecrawler",
        "contentDisposition": "attachment; filename=\"firecrawler-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "firecrawler"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/firecrawler"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/firecrawler",
    "downloadUrl": "https://openagent3.xyz/downloads/firecrawler",
    "agentUrl": "https://openagent3.xyz/skills/firecrawler/agent",
    "manifestUrl": "https://openagent3.xyz/skills/firecrawler/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/firecrawler/agent.md"
  }
}
```
## Documentation

### Firecrawl Web Skill

Scrape, search, and crawl the web using Firecrawl.

### Setup

Get your API key from firecrawl.dev/app/api-keys
Set the environment variable:
export FIRECRAWL_API_KEY=fc-your-key-here


Install the SDK:
pip3 install firecrawl

### Usage

All commands use the bundled fc.py script in this skill's directory.

### Get Page as Markdown

Fetch any URL and convert to clean markdown. Handles JavaScript-rendered content.

python3 fc.py markdown "https://example.com"
python3 fc.py markdown "https://example.com" --main-only  # skip nav/footer

### Take Screenshot

Capture a full-page screenshot of any URL.

python3 fc.py screenshot "https://example.com" -o screenshot.png

### Extract Structured Data

Pull specific fields from a page using a JSON schema.

Schema example (schema.json):

{
  "type": "object",
  "properties": {
    "title": { "type": "string" },
    "price": { "type": "number" },
    "features": { "type": "array", "items": { "type": "string" } }
  }
}

python3 fc.py extract "https://example.com/product" --schema schema.json
python3 fc.py extract "https://example.com/product" --schema schema.json --prompt "Extract the main product details"

### Web Search

Search the web and get content from results (may require paid tier).

python3 fc.py search "Python 3.13 new features" --limit 5

### Crawl Documentation

Crawl an entire documentation site. Great for learning new frameworks.

python3 fc.py crawl "https://docs.example.com" --limit 30
python3 fc.py crawl "https://docs.example.com" --limit 50 --output ./docs

Note: Each page costs 1 credit. Set reasonable limits.

### Map Site URLs

Discover all URLs on a website before deciding what to scrape.

python3 fc.py map "https://example.com" --limit 100
python3 fc.py map "https://example.com" --search "api"

### Example Prompts

"Scrape https://blog.example.com/post and summarize it"
"Take a screenshot of stripe.com"
"Extract the name, price, and features from this product page"
"Crawl the Astro docs so you can help me build a site"
"Map all the URLs on docs.stripe.com"

### Pricing

Free tier includes 500 credits. 1 credit = 1 page/screenshot/search query.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: capt-marbles
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T23:13:42.901Z
- Expires at: 2026-05-06T23:13:42.901Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/firecrawler)
- [Send to Agent page](https://openagent3.xyz/skills/firecrawler/agent)
- [JSON manifest](https://openagent3.xyz/skills/firecrawler/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/firecrawler/agent.md)
- [Download page](https://openagent3.xyz/downloads/firecrawler)