{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pilt",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pilt",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/pilt",
    "agentPageUrl": "https://openagent3.xyz/skills/pilt/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pilt/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pilt/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Pilt API Skill",
        "body": "You can retrieve fundraising data from Pilt using curl. All requests go to a single endpoint and require your personal API key."
      },
      {
        "title": "Endpoint",
        "body": "POST https://pilt.ai/api/v1/gateway"
      },
      {
        "title": "Required Headers",
        "body": "Every request must include these two headers:\n\nContent-Type: application/json\nx-pilt-api-key: $PILT_API_KEY"
      },
      {
        "title": "Security",
        "body": "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."
      },
      {
        "title": "Request Body",
        "body": "JSON object with a mandatory action field. Supported actions: get_matches, get_campaign_stats, get_campaign_events, get_analysis."
      },
      {
        "title": "get_matches",
        "body": "Returns matched investors with fit scores from the user's latest deck analysis.\n\ncurl -s -X POST \\\n  https://pilt.ai/api/v1/gateway \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-pilt-api-key: $PILT_API_KEY\" \\\n  -d '{\"action\": \"get_matches\"}'"
      },
      {
        "title": "get_campaign_stats",
        "body": "Returns aggregated email outreach statistics: queued, sent, opened, and replied counts.\n\ncurl -s -X POST \\\n  https://pilt.ai/api/v1/gateway \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-pilt-api-key: $PILT_API_KEY\" \\\n  -d '{\"action\": \"get_campaign_stats\"}'"
      },
      {
        "title": "get_campaign_events",
        "body": "Returns a per-investor event log with timestamps (e.g. sent, opened, replied).\n\ncurl -s -X POST \\\n  https://pilt.ai/api/v1/gateway \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-pilt-api-key: $PILT_API_KEY\" \\\n  -d '{\"action\": \"get_campaign_events\"}'"
      },
      {
        "title": "get_analysis",
        "body": "Returns the deck analysis summary: score, industry, stage, and one-liner.\n\ncurl -s -X POST \\\n  https://pilt.ai/api/v1/gateway \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-pilt-api-key: $PILT_API_KEY\" \\\n  -d '{\"action\": \"get_analysis\"}'"
      },
      {
        "title": "Error Handling",
        "body": "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"
      },
      {
        "title": "User Setup",
        "body": "Store your Pilt API key so it is available as the PILT_API_KEY environment variable. In OpenClaw, add it to ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"pilt\": {\n        \"enabled\": true,\n        \"apiKey\": \"pilt_sk_...\"\n      }\n    }\n  }\n}\n\nThe API key can be generated in the Pilt dashboard under Settings → API Keys."
      }
    ],
    "body": "Pilt API Skill\n\nYou can retrieve fundraising data from Pilt using curl. All requests go to a single endpoint and require your personal API key.\n\nEndpoint\nPOST https://pilt.ai/api/v1/gateway\n\nRequired Headers\n\nEvery request must include these two headers:\n\nContent-Type: application/json\nx-pilt-api-key: $PILT_API_KEY\nSecurity\n\nAll 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.\n\nRequest Body\n\nJSON object with a mandatory action field. Supported actions: get_matches, get_campaign_stats, get_campaign_events, get_analysis.\n\nActions\nget_matches\n\nReturns matched investors with fit scores from the user's latest deck analysis.\n\ncurl -s -X POST \\\n  https://pilt.ai/api/v1/gateway \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-pilt-api-key: $PILT_API_KEY\" \\\n  -d '{\"action\": \"get_matches\"}'\n\nget_campaign_stats\n\nReturns aggregated email outreach statistics: queued, sent, opened, and replied counts.\n\ncurl -s -X POST \\\n  https://pilt.ai/api/v1/gateway \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-pilt-api-key: $PILT_API_KEY\" \\\n  -d '{\"action\": \"get_campaign_stats\"}'\n\nget_campaign_events\n\nReturns a per-investor event log with timestamps (e.g. sent, opened, replied).\n\ncurl -s -X POST \\\n  https://pilt.ai/api/v1/gateway \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-pilt-api-key: $PILT_API_KEY\" \\\n  -d '{\"action\": \"get_campaign_events\"}'\n\nget_analysis\n\nReturns the deck analysis summary: score, industry, stage, and one-liner.\n\ncurl -s -X POST \\\n  https://pilt.ai/api/v1/gateway \\\n  -H \"Content-Type: application/json\" \\\n  -H \"x-pilt-api-key: $PILT_API_KEY\" \\\n  -d '{\"action\": \"get_analysis\"}'\n\nError Handling\nStatus\tMeaning\n401\tMissing or invalid x-pilt-api-key header (must start with pilt_sk_)\n403\tAPI key not found or revoked\n400\tMissing or unsupported action field\n413\tRequest body exceeds 10KB limit\n503\tAPI gateway is not yet configured on the server side\nUser Setup\n\nStore your Pilt API key so it is available as the PILT_API_KEY environment variable. In OpenClaw, add it to ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"pilt\": {\n        \"enabled\": true,\n        \"apiKey\": \"pilt_sk_...\"\n      }\n    }\n  }\n}\n\n\nThe API key can be generated in the Pilt dashboard under Settings → API Keys."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/babpilt/pilt",
    "publisherUrl": "https://clawhub.ai/babpilt/pilt",
    "owner": "babpilt",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}