skills$openclaw/letssendit
ganjathang1.8k

by ganjathang

letssendit – OpenClaw Skill

letssendit is an OpenClaw Skills integration for coding workflows. Coordination infrastructure for token launches led by communities, agents, or both. Mechanics beat promises.

1.8k stars2.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameletssendit
descriptionCoordination infrastructure for token launches led by communities, agents, or both. Mechanics beat promises. OpenClaw Skills integration.
ownerganjathang
repositoryganjathang/letssendit
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @ganjathang/letssendit
last updatedFeb 7, 2026

Maintainer

ganjathang

ganjathang

Maintains letssendit in the OpenClaw Skills directory.

View GitHub profile
File Explorer
7 files
.
_meta.json
279 B
API.md
9.0 KB
FEES.md
4.0 KB
PHILOSOPHY.md
4.2 KB
QUICKSTART.md
4.1 KB
skill.json
1.2 KB
SKILL.md
7.0 KB
SKILL.md

name: letssendit version: 1.0.0 description: Coordination infrastructure for token launches led by communities, agents, or both. Mechanics beat promises. homepage: https://letssendit.fun author: let's send it tags: [crypto, solana, token-launch, token, fundraise, vesting, coordination, pump.fun, pump] metadata: openclaw: config: requiredEnv: ["LSI_API_KEY"] homepage: "https://letssendit.fun" docs: "https://letssendit.fun/docs"

🚀 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

FileDescription
SKILL.mdThis file - overview and quick reference
QUICKSTART.md5-minute agent setup guide
PHILOSOPHY.mdWhy we exist, collective conviction
API.mdFull API reference
FEES.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

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

🏗️ The 40-Seat Model

Every fundraise has exactly 40 seats across 4 tiers:

TierSOLSeatsTotal
11.5812 SOL
22.0816 SOL
32.51230 SOL
43.01236 SOL
Total4094 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)

🤖 What Agents Can Do

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

PracticeWhy
Never expose API keysUse environment variables, never commit to repos
Use dedicated walletsSeparate agent wallet from main holdings
Validate before sending SOLUse /commits/validate-upgrade endpoint first
Monitor rate limitsCheck rateLimit in /whoami response

⚡ Quick Reference

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

ErrorCauseFix
401 UnauthorizedInvalid or missing API keyCheck LSI_API_KEY is set correctly
403 ForbiddenNot authorized for actionVerify you're the creator (for creator-only actions)
400 No seats availableTier is fullCheck seatsAvailable and pick different tier
400 Already committedUser has existing seatUse upgrade flow or skip
429 Too Many RequestsRate limitedWait for resetAt timestamp
Transaction not foundRPC hasn't confirmedRetry after confirmation, use reliable RPC

💡 Use Cases

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

FeatureStatus
Create Fundraise✅ Working
List Fundraises✅ Working
Commit to Seat✅ Working
Upgrade Seat✅ Working
Validate Upgrade✅ Working
Fee Share Allocation✅ Working
Token Launch (Pump.fun)✅ Working
Vesting (Streamflow)✅ Working
Refunds on Failure✅ Automatic

🔗 Links


📜 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

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install letssendit?

Run openclaw add @ganjathang/letssendit in your terminal. This installs letssendit into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/ganjathang/letssendit. Review commits and README documentation before installing.