# Send TinyFish Web Agent 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": "tinyfish-web-agent",
    "name": "TinyFish Web Agent",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/simantak-dabhade/tinyfish-web-agent",
    "canonicalUrl": "https://clawhub.ai/simantak-dabhade/tinyfish-web-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tinyfish-web-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tinyfish-web-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "scripts/extract.sh",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "tinyfish-web-agent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T04:02:35.874Z",
      "expiresAt": "2026-05-11T04:02:35.874Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tinyfish-web-agent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tinyfish-web-agent",
        "contentDisposition": "attachment; filename=\"tinyfish-web-agent-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "tinyfish-web-agent"
      },
      "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/tinyfish-web-agent"
    },
    "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/tinyfish-web-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/tinyfish-web-agent",
    "agentUrl": "https://openagent3.xyz/skills/tinyfish-web-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tinyfish-web-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tinyfish-web-agent/agent.md"
  }
}
```
## Documentation

### TinyFish Web Agent

Requires: TINYFISH_API_KEY environment variable

### Pre-flight Check (REQUIRED)

Before making any API call, always run this first to verify the key is available:

[ -n "$TINYFISH_API_KEY" ] && echo "TINYFISH_API_KEY is set" || echo "TINYFISH_API_KEY is NOT set"

If the key is not set, you MUST stop and ask the user to add their API key. Do NOT fall back to other tools or approaches — the task requires TinyFish.

Tell the user:

You need a TinyFish API key. Get one at: https://agent.tinyfish.ai/api-keys
Then set it so the agent can use it:
Option 1 — Environment variable (works everywhere):
export TINYFISH_API_KEY="your-key-here"

Option 2 — Claude Code settings (Claude Code only):
Add to ~/.claude/settings.local.json:
{
  "env": {
    "TINYFISH_API_KEY": "your-key-here"
  }
}

Do NOT proceed until the key is confirmed available.

### Best Practices

Specify JSON format: Always describe the exact structure you want returned
Parallel calls: When extracting from multiple independent sites, make separate parallel calls instead of combining into one prompt

### Basic Extract/Scrape

Extract data from a page. Specify the JSON structure you want:

curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \\
  -H "X-API-Key: $TINYFISH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://example.com",
    "goal": "Extract product info as JSON: {\\"name\\": str, \\"price\\": str, \\"in_stock\\": bool}"
  }'

### Multiple Items

Extract lists of data with explicit structure:

curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \\
  -H "X-API-Key: $TINYFISH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://example.com/products",
    "goal": "Extract all products as JSON array: [{\\"name\\": str, \\"price\\": str, \\"url\\": str}]"
  }'

### Stealth Mode

For bot-protected sites, add "browser_profile": "stealth" to the request body:

curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \\
  -H "X-API-Key: $TINYFISH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://protected-site.com",
    "goal": "Extract product data as JSON: {\\"name\\": str, \\"price\\": str, \\"description\\": str}",
    "browser_profile": "stealth"
  }'

### Proxy

Route through a specific country by adding "proxy_config" to the body:

curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \\
  -H "X-API-Key: $TINYFISH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://geo-restricted-site.com",
    "goal": "Extract pricing data as JSON: {\\"item\\": str, \\"price\\": str, \\"currency\\": str}",
    "browser_profile": "stealth",
    "proxy_config": {"enabled": true, "country_code": "US"}
  }'

### Output

The SSE stream returns data: {...} lines. The final result is the event where type == "COMPLETE" and status == "COMPLETED" — the extracted data is in the resultJson field. Claude reads the raw SSE output directly; no script-side parsing is needed.

### Parallel Extraction

When extracting from multiple independent sources, make separate parallel curl calls instead of combining into one prompt:

Good - Parallel calls:

# Compare pizza prices - run these simultaneously
curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \\
  -H "X-API-Key: $TINYFISH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://pizzahut.com",
    "goal": "Extract pizza prices as JSON: [{\\"name\\": str, \\"price\\": str}]"
  }'

curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \\
  -H "X-API-Key: $TINYFISH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://dominos.com",
    "goal": "Extract pizza prices as JSON: [{\\"name\\": str, \\"price\\": str}]"
  }'

Bad - Single combined call:

# Don't do this - less reliable and slower
curl -N -s -X POST "https://agent.tinyfish.ai/v1/automation/run-sse" \\
  -H "X-API-Key: $TINYFISH_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "url": "https://pizzahut.com",
    "goal": "Extract prices from Pizza Hut and also go to Dominos..."
  }'

Each independent extraction task should be its own API call. This is faster (parallel execution) and more reliable.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: simantak-dabhade
- Version: 1.0.2
## 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-05-04T04:02:35.874Z
- Expires at: 2026-05-11T04:02:35.874Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tinyfish-web-agent)
- [Send to Agent page](https://openagent3.xyz/skills/tinyfish-web-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/tinyfish-web-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tinyfish-web-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/tinyfish-web-agent)