Pilt

v1.0.1

Access Pilt fundraising data -- investor matches, campaign stats, outreach events, and deck analysis.

0· 458·0 current·0 all-time
byPilt.ai@babpilt

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for babpilt/pilt.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Pilt" (babpilt/pilt) from ClawHub.
Skill page: https://clawhub.ai/babpilt/pilt
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: PILT_API_KEY
Required binaries: curl
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install babpilt/pilt

ClawHub CLI

Package manager switcher

npx clawhub@latest install pilt
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (access Pilt fundraising data) aligns with the only required credential (PILT_API_KEY) and the single endpoint (https://pilt.ai/api/v1/gateway). Required binary (curl) is appropriate for the provided curl examples.
Instruction Scope
SKILL.md only instructs POSTs to pilt.ai with the declared API key and does not ask the agent to read unrelated files or credentials. It does, however, instruct storing the API key in ~/.openclaw/openclaw.json (plain JSON), which is a privacy/security consideration — the skill itself does not require broader file or system access.
Install Mechanism
This is an instruction-only skill with no install specification or code to download. That minimizes disk-write and supply-chain risk.
Credentials
Only PILT_API_KEY is required (declared as primaryEnv), which matches the skill purpose. As a caution: instructions tell users to place the secret in plain JSON under ~/.openclaw/openclaw.json — ensure that file is appropriately protected, and consider using least-privilege keys.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request persistent or system-wide privileges and does not modify other skills' configs. Autonomous invocation is enabled by default but not unusual.
Assessment
This skill appears to do exactly what it says: call Pilt's gateway using a single API key. Before installing, verify you trust the pilt.ai domain and that the API key you provide has only the permissions you intend. If you follow the SKILL.md instructions to store the key in ~/.openclaw/openclaw.json, ensure that file is access-restricted (correct filesystem permissions) and that you are comfortable with the key being stored in plain JSON. Consider creating a scoped/readonly key in Pilt if available, avoid reusing high-privilege keys, and plan to rotate the key if you stop using the skill. Finally, because the registry metadata showed no homepage but SKILL.md references https://pilt.ai, confirm the correct official project page before submitting secrets.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🦞 Clawdis
Binscurl
EnvPILT_API_KEY
Primary envPILT_API_KEY
fundraisingvk975d2bkxcqjev8exq9fd6rycn81pd4pinvestorsvk975d2bkxcqjev8exq9fd6rycn81pd4platestvk97885mmp62f1btmzb4rgnj0tn81pqtjpitch-deckvk975d2bkxcqjev8exq9fd6rycn81pd4p
458downloads
0stars
2versions
Updated 1mo ago
v1.0.1
MIT-0

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.

Actions

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

StatusMeaning
401Missing or invalid x-pilt-api-key header (must start with pilt_sk_)
403API key not found or revoked
400Missing or unsupported action field
413Request body exceeds 10KB limit
503API 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.

Comments

Loading comments...