# Send PhantomBuster 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": "phantombuster",
    "name": "PhantomBuster",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/capt-marbles/phantombuster",
    "canonicalUrl": "https://clawhub.ai/capt-marbles/phantombuster",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/phantombuster",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=phantombuster",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "pb.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "phantombuster",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T01:55:47.038Z",
      "expiresAt": "2026-05-14T01:55:47.038Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=phantombuster",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=phantombuster",
        "contentDisposition": "attachment; filename=\"phantombuster-1.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "phantombuster"
      },
      "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/phantombuster"
    },
    "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/phantombuster",
    "downloadUrl": "https://openagent3.xyz/downloads/phantombuster",
    "agentUrl": "https://openagent3.xyz/skills/phantombuster/agent",
    "manifestUrl": "https://openagent3.xyz/skills/phantombuster/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/phantombuster/agent.md"
  }
}
```
## Documentation

### PhantomBuster Skill

Control your PhantomBuster automation agents from the command line.

### Setup

Get your API key from Workspace Settings
Set the environment variable:
export PHANTOMBUSTER_API_KEY=your-api-key-here

### Usage

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

### List Agents

See all your configured PhantomBuster agents.

python3 pb.py list
python3 pb.py list --json  # JSON output

### Launch an Agent

Start a phantom by ID or name.

python3 pb.py launch <agent-id>
python3 pb.py launch <agent-id> --argument '{"search": "CEO fintech"}'

### Get Agent Output

Fetch the results/output from the most recent run.

python3 pb.py output <agent-id>
python3 pb.py output <agent-id> --json  # Raw JSON

### Check Agent Status

See if an agent is running, finished, or errored.

python3 pb.py status <agent-id>

### Abort Running Agent

Stop an agent that's currently running.

python3 pb.py abort <agent-id>

### Get Agent Details

Full details about a specific agent.

python3 pb.py get <agent-id>

### Fetch Result Data

Download the actual result data (CSV) from an agent's latest run.

python3 pb.py fetch-result <agent-id>
python3 pb.py fetch-result <agent-id> > output.csv

This downloads the result.csv file from the agent's S3 storage, perfect for integrating PhantomBuster data into your workflows.

### Example Prompts

"List my PhantomBuster agents"
"Launch my LinkedIn Sales Navigator scraper"
"Get the output from agent 12345"
"Check if my Twitter follower phantom is still running"
"Abort the currently running agent"

### Common Phantoms

PhantomBuster offers many pre-built automations:

LinkedIn Sales Navigator Search — Extract leads from searches
LinkedIn Profile Scraper — Get profile data
Twitter Follower Collector — Scrape followers
Instagram Profile Scraper — Get IG profile data
Google Maps Search Export — Extract business listings

### Rate Limits

PhantomBuster has execution time limits based on your plan. The API itself is not heavily rate-limited, but agent execution consumes your plan's minutes.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: capt-marbles
- Version: 1.2.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-05-07T01:55:47.038Z
- Expires at: 2026-05-14T01:55:47.038Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/phantombuster)
- [Send to Agent page](https://openagent3.xyz/skills/phantombuster/agent)
- [JSON manifest](https://openagent3.xyz/skills/phantombuster/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/phantombuster/agent.md)
- [Download page](https://openagent3.xyz/downloads/phantombuster)