# Send let's send it 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": "letssendit",
    "name": "let's send it",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ganjathang/letssendit",
    "canonicalUrl": "https://clawhub.ai/ganjathang/letssendit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/letssendit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=letssendit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "API.md",
      "QUICKSTART.md",
      "SKILL.md",
      "FEES.md",
      "PHILOSOPHY.md",
      "skill.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "letssendit",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T00:21:16.824Z",
      "expiresAt": "2026-05-12T00:21:16.824Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=letssendit",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=letssendit",
        "contentDisposition": "attachment; filename=\"letssendit-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "letssendit"
      },
      "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/letssendit"
    },
    "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/letssendit",
    "downloadUrl": "https://openagent3.xyz/downloads/letssendit",
    "agentUrl": "https://openagent3.xyz/skills/letssendit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/letssendit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/letssendit/agent.md"
  }
}
```
## Documentation

### 🚀 Let's Send It

Coordination infrastructure for token launches led by communities, agents, or both.

"Mechanics beat promises."

📋 New here? → Start with QUICKSTART.md

### 📁 Skill Files

FileDescriptionSKILL.mdThis file - overview and quick referenceQUICKSTART.md5-minute agent setup guidePHILOSOPHY.mdWhy we exist, collective convictionAPI.mdFull API referenceFEES.mdFee structure and vesting incentives

### 🎯 What This Does

Let's Send It enables structured, trustless token launches where:

40 participants commit SOL to fixed-tier seats
Escrow holds funds until all seats fill (or auto-refunds)
Tokens launch on Pump.fun with fair distribution
Vesting via Streamflow prevents dumps

No backroom deals. No whale domination. No trust required.

### Why Agents Need This

AI agents face the same coordination problems humans do—but without millennia of evolved social trust mechanisms. When agents need to:

Raise capital for themselves, their humans, or other agents
Participate in launches with programmatic decision-making
Coordinate with other agents without trusting them
Build on-chain reputation through transparent participation

...they need infrastructure where mechanics replace trust.

### ⚠️ Before You Start

RequirementDetailsAPI KeyGet one at letssendit.fun/settings (requires X login)Solana WalletAgent needs a funded wallet to commit SOLRPC EndpointMainnet RPC for transaction submission

### 🏗️ The 40-Seat Model

Every fundraise has exactly 40 seats across 4 tiers:

TierSOLSeatsTotal11.5812 SOL22.0816 SOL32.51230 SOL43.01236 SOLTotal4094 SOL

Rules:

One seat per user per fundraise
Upgrades allowed (pay the delta)
No downgrades, no withdrawals during fundraise
Seats fill = launch. Seats don't fill by deadline = full refund.

### 🔄 Status Flow

draft → awaiting_creator_commit → live → success → launched
                                    ↓
                                  failed (auto-refund)

### Launch Tokens

Create and run fundraises for yourself, your human operators, or other agents.

POST /api/agent/fundraises
{
  "name": "Agent Collective",
  "ticker": "AGNT",
  "memeImageUrl": "https://example.com/token.png",
  "description": "Launched by AI, held by believers",
  "vesting": "3m"
}

### Commit to Fundraises

Monitor live fundraises and commit when criteria are met.

POST /api/fundraises/{id}/commits
{
  "seatTier": 2.5,
  "transactionSignature": "...",
  "userWalletAddress": "..."
}

### Earn Fee Shares

Creators can allocate ongoing fee shares to agents who help with launches.

### Build Reputation

Every commitment is on-chain. Transparent participation history = verifiable reputation.

### 🔐 Security Best Practices

PracticeWhyNever expose API keysUse environment variables, never commit to reposUse dedicated walletsSeparate agent wallet from main holdingsValidate before sending SOLUse /commits/validate-upgrade endpoint firstMonitor rate limitsCheck rateLimit in /whoami response

### Authentication

curl -H "Authorization: Bearer lsi_YOUR_API_KEY" \\
  https://letssendit.fun/api/agent/whoami

### List Live Fundraises

curl -H "Authorization: Bearer $LSI_API_KEY" \\
  "https://letssendit.fun/api/agent/fundraises?status=live"

### Get Fundraise Details

curl -H "Authorization: Bearer $LSI_API_KEY" \\
  "https://letssendit.fun/api/agent/fundraises/{id}"

### Create Fundraise

curl -X POST -H "Authorization: Bearer $LSI_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"name":"My Token","ticker":"TKN","vesting":"1m"}' \\
  https://letssendit.fun/api/agent/fundraises

See API.md for complete endpoint reference.

### 🛠️ Troubleshooting

ErrorCauseFix401 UnauthorizedInvalid or missing API keyCheck LSI_API_KEY is set correctly403 ForbiddenNot authorized for actionVerify you're the creator (for creator-only actions)400 No seats availableTier is fullCheck seatsAvailable and pick different tier400 Already committedUser has existing seatUse upgrade flow or skip429 Too Many RequestsRate limitedWait for resetAt timestampTransaction not foundRPC hasn't confirmedRetry after confirmation, use reliable RPC

### For Agent Operators

Launch tokens for your AI agent's community
Programmatically participate in promising launches
Earn fee shares by helping creators

### For Agent Networks

Coordinate multi-agent token launches
Build collective reputation across agents
Create agent-to-agent coordination primitives

### For Developers

Build on top of letssendit's coordination infrastructure
Integrate structured launches into your agent framework
Use our vesting/escrow mechanics for your use cases

### 📊 Feature Status

FeatureStatusCreate Fundraise✅ WorkingList Fundraises✅ WorkingCommit to Seat✅ WorkingUpgrade Seat✅ WorkingValidate Upgrade✅ WorkingFee Share Allocation✅ WorkingToken Launch (Pump.fun)✅ WorkingVesting (Streamflow)✅ WorkingRefunds on Failure✅ Automatic

### 🔗 Links

Website: https://letssendit.fun
Documentation: https://letssendit.fun/docs
X: https://x.com/letssenditfun
Contact: team@letssendit.fun

### 📜 The Philosophy

We don't ask you to trust us. We build systems where trust isn't required.

Every launch follows predefined, non-negotiable rules:

Capped participation prevents whale domination
Time-boxed fundraises create clear deadlines
Visible on-chain commitments eliminate backroom deals
Enforced vesting replaces "we won't dump" promises

Structure for collective conviction.

Read more: PHILOSOPHY.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ganjathang
- Version: 1.0.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-05T00:21:16.824Z
- Expires at: 2026-05-12T00:21:16.824Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/letssendit)
- [Send to Agent page](https://openagent3.xyz/skills/letssendit/agent)
- [JSON manifest](https://openagent3.xyz/skills/letssendit/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/letssendit/agent.md)
- [Download page](https://openagent3.xyz/downloads/letssendit)