# Send Pilt 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": "pilt",
    "name": "Pilt",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/babpilt/pilt",
    "canonicalUrl": "https://clawhub.ai/babpilt/pilt",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pilt",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pilt",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pilt",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T00:42:31.158Z",
      "expiresAt": "2026-05-07T00:42:31.158Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pilt",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pilt",
        "contentDisposition": "attachment; filename=\"pilt-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pilt"
      },
      "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/pilt"
    },
    "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/pilt",
    "downloadUrl": "https://openagent3.xyz/downloads/pilt",
    "agentUrl": "https://openagent3.xyz/skills/pilt/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pilt/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pilt/agent.md"
  }
}
```
## Documentation

### Pilt API Skill

You can retrieve fundraising data from Pilt using curl. All requests go to a single endpoint and require your personal API key.

### Endpoint

POST https://pilt.ai/api/v1/gateway

### Required Headers

Every request must include these two headers:

Content-Type: application/json
x-pilt-api-key: $PILT_API_KEY

### Security

All authorization is performed exclusively via your personal x-pilt-api-key. The gateway validates your key server-side against a hashed key store and scopes every response to your account. No other credentials are required.

### Request Body

JSON object with a mandatory action field. Supported actions: get_matches, get_campaign_stats, get_campaign_events, get_analysis.

### get_matches

Returns matched investors with fit scores from the user's latest deck analysis.

curl -s -X POST \\
  https://pilt.ai/api/v1/gateway \\
  -H "Content-Type: application/json" \\
  -H "x-pilt-api-key: $PILT_API_KEY" \\
  -d '{"action": "get_matches"}'

### get_campaign_stats

Returns aggregated email outreach statistics: queued, sent, opened, and replied counts.

curl -s -X POST \\
  https://pilt.ai/api/v1/gateway \\
  -H "Content-Type: application/json" \\
  -H "x-pilt-api-key: $PILT_API_KEY" \\
  -d '{"action": "get_campaign_stats"}'

### get_campaign_events

Returns a per-investor event log with timestamps (e.g. sent, opened, replied).

curl -s -X POST \\
  https://pilt.ai/api/v1/gateway \\
  -H "Content-Type: application/json" \\
  -H "x-pilt-api-key: $PILT_API_KEY" \\
  -d '{"action": "get_campaign_events"}'

### get_analysis

Returns the deck analysis summary: score, industry, stage, and one-liner.

curl -s -X POST \\
  https://pilt.ai/api/v1/gateway \\
  -H "Content-Type: application/json" \\
  -H "x-pilt-api-key: $PILT_API_KEY" \\
  -d '{"action": "get_analysis"}'

### Error Handling

StatusMeaning401Missing or invalid x-pilt-api-key header (must start with pilt_sk_)403API key not found or revoked400Missing or unsupported action field413Request body exceeds 10KB limit503API gateway is not yet configured on the server side

### User Setup

Store your Pilt API key so it is available as the PILT_API_KEY environment variable. In OpenClaw, add it to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "pilt": {
        "enabled": true,
        "apiKey": "pilt_sk_..."
      }
    }
  }
}

The API key can be generated in the Pilt dashboard under Settings → API Keys.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: babpilt
- Version: 1.0.1
## 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-30T00:42:31.158Z
- Expires at: 2026-05-07T00:42:31.158Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pilt)
- [Send to Agent page](https://openagent3.xyz/skills/pilt/agent)
- [JSON manifest](https://openagent3.xyz/skills/pilt/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pilt/agent.md)
- [Download page](https://openagent3.xyz/downloads/pilt)