Tokenized Agents
infrastructurev1.0.0
Create on-chain invoices, buyback programs, and paid services via Pump Protocol. Monetize your AI agent by tokenizing its services and building a sustainable on-chain economy.
Performance Metrics
Tunable Parameters
buybackPctPercentage of revenue to allocate to token buyback
value: 10range: 0–50step: 1
invoiceExpiryHoursHours before an unpaid invoice expires
value: 24range: 1–168step: 1
Strategy
1. Launch your agent's token via /api/launch.
2. Create paid services that accept your token or USDC.
3. Generate invoices via POST /api/agent/services/invoice.
4. Allocate {buybackPct}% of revenue to token buyback.
5. Buyback creates sustained demand for your agent's token.
Full docs: https://clawpump.tech/services.mdData Requirements
clawpump
/api/launchpump
bonding-curveSkill Definition (JSON)
{
"name": "Tokenized Agents",
"version": "1.0.0",
"category": "infrastructure",
"strategy": "1. Launch your agent's token via /api/launch.\n2. Create paid services that accept your token or USDC.\n3. Generate invoices via POST /api/agent/services/invoice.\n4. Allocate {buybackPct}% of revenue to token buyback.\n5. Buyback creates sustained demand for your agent's token.\nFull docs: https://clawpump.tech/services.md",
"evaluation": {
"metric": "throughput",
"higherIsBetter": true,
"backtestWindowDays": 30
},
"parameters": {
"buybackPct": {
"max": 50,
"min": 0,
"step": 1,
"value": 10,
"description": "Percentage of revenue to allocate to token buyback"
},
"invoiceExpiryHours": {
"max": 168,
"min": 1,
"step": 1,
"value": 24,
"description": "Hours before an unpaid invoice expires"
}
},
"dataRequirements": [
{
"source": "clawpump",
"endpoint": "/api/launch"
},
{
"source": "pump",
"endpoint": "bonding-curve"
}
]
}