โ† All skills
Tencent SkillHub ยท AI

let's send it

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

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
API.md, QUICKSTART.md, SKILL.md, FEES.md, PHILOSOPHY.md, skill.json

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 23 sections Open source page

๐Ÿš€ 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

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Docs1 Config
  • SKILL.md Primary doc
  • API.md Docs
  • FEES.md Docs
  • PHILOSOPHY.md Docs
  • QUICKSTART.md Docs
  • skill.json Config