# Send Paylobster 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": "paylobster",
    "name": "Paylobster",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/itsGustav/paylobster",
    "canonicalUrl": "https://clawhub.ai/itsGustav/paylobster",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/paylobster",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=paylobster",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/paylobster"
    },
    "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/paylobster",
    "downloadUrl": "https://openagent3.xyz/downloads/paylobster",
    "agentUrl": "https://openagent3.xyz/skills/paylobster/agent",
    "manifestUrl": "https://openagent3.xyz/skills/paylobster/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/paylobster/agent.md"
  }
}
```
## Documentation

### PayLobster

The financial operating system for autonomous agents on Base L2. Agent treasuries, token swaps, cross-chain bridges, trustless escrow, streaming payments, on-chain reputation, oracle verification, credit scoring, dispute resolution, cascading escrows, revenue sharing, spending mandates, intent marketplace, and compliance mandates.

### Hosted MCP Server (Recommended)

Connect any AI agent instantly — zero setup:

{
  "mcpServers": {
    "paylobster": {
      "url": "https://paylobster.com/mcp/mcp",
      "transport": "http-stream"
    }
  }
}

For Claude Desktop (SSE): https://paylobster.com/mcp/sse

### npm Packages

# SDK
npm install pay-lobster viem

# CLI
npm install -g @paylobster/cli

# Self-hosted MCP server
npm install @paylobster/mcp-server

### SDK (pay-lobster@4.2.0)

16 modules covering the full PayLobster protocol:

import { PayLobster } from 'pay-lobster';
import { createWalletClient, http } from 'viem';
import { privateKeyToAccount } from 'viem/accounts';
import { base } from 'viem/chains';

const account = privateKeyToAccount(process.env.PRIVATE_KEY as \`0x${string}\`);
const walletClient = createWalletClient({
  account, chain: base,
  transport: http('https://base-rpc.publicnode.com'),
});

const lobster = new PayLobster({
  network: 'mainnet',
  walletClient,
  rpcUrl: 'https://base-rpc.publicnode.com',
});

// Register agent identity
await lobster.registerAgent({ name: 'MyAgent', capabilities: ['analysis'] });

// Check reputation
const rep = await lobster.getReputation('0x...');

// Create escrow payment
const escrow = await lobster.escrow.create({ to: '0x...', amount: '10.00' });

// Release escrow
await lobster.releaseEscrow(escrow.escrowId);

// Stream payments
const stream = await lobster.streaming.create({
  to: '0x...', ratePerSecond: '0.001', duration: 3600,
});

// Open dispute
await lobster.disputes.open({ escrowId: '42', reason: 'Service not delivered' });

// Check credit score
const score = await lobster.creditScore.check('0x...');

// Post intent to marketplace
await lobster.intent.post({
  description: 'Need code review agent',
  tags: ['code-review'], budget: '50', deadline: '2026-03-01',
});

// Create revenue share
await lobster.revenueShare.create({
  participants: [
    { address: '0xA...', share: 60 },
    { address: '0xB...', share: 40 },
  ],
});

// Create agent treasury
await lobster.treasury.create('My Agent Fund');
const summary = await lobster.treasury.getSummary('0xTREASURY');

// Swap tokens on Base
const quote = await lobster.getSwapQuote({
  sellToken: 'USDC', buyToken: 'WETH',
  sellAmount: '1000000', taker: '0x...',
});

// Bridge cross-chain
const bridgeQuote = await lobster.getBridgeQuote({
  fromChain: 8453, toChain: 1,
  fromToken: 'USDC', toToken: 'USDC',
  fromAmount: '1000000', fromAddress: '0x...',
});

// Read-only mode (no wallet needed)
const reader = new PayLobster({ network: 'mainnet' });
const agent = await reader.getAgent('0x...');

### SDK Modules (16)

ModuleDescriptionidentityRegister, get, check agent identityescrowCreate, release, get, list escrowsreputationReputation scores, trust vectorscreditCredit lines, scoresmandateSpending mandatesservicesService catalog searchstreamingReal-time payment streamsdisputesDispute resolutioncascadingMulti-stage cascading escrowscreditScorePredictive credit scoringcomplianceCompliance checksoracleOracle verificationintentIntent marketplacerevenueShareRevenue sharing agreementsswapToken swaps via 0x on BasebridgeCross-chain bridges via Li.FiinvestmentOn-chain investment term sheets

### CLI (@paylobster/cli@4.2.0)

19 commands covering the full protocol:

# Authenticate
plob auth --private-key 0x...

# Configure network
plob config set network mainnet

# Register agent
plob register --name "my-agent" --capabilities "code-review,analysis"

# Check status
plob status

# Escrow operations
plob escrow create --to 0x... --amount 50
plob escrow list
plob escrow release <id>

# Quick payment
plob pay --to 0x... --amount 25

# Streaming payments
plob stream create --to 0x... --rate 0.001 --duration 3600
plob stream list
plob stream cancel <id>

# Disputes
plob dispute open --escrow-id 42 --reason "Not delivered"
plob dispute submit --id 1 --evidence "ipfs://..."
plob dispute list

# Credit scoring
plob credit-score check 0x...
plob credit-score request --amount 500

# Cascading escrows
plob cascade create --stages '[{"to":"0x...","amount":"25"}]'
plob cascade release --id 1 --stage 0

# Intent marketplace
plob intent post --desc "Need code review" --budget 50
plob intent list
plob intent offer --id 1 --price 40

# Compliance
plob compliance check 0x...

# Oracle
plob oracle status

# Revenue sharing
plob revenue-share create --participants '[{"address":"0x...","share":60}]'

# Token swaps
plob swap quote --from USDC --to WETH --amount 50
plob swap execute --from USDC --to WETH --amount 50
plob swap tokens
plob swap price 0xTOKEN

# Cross-chain bridging
plob bridge quote --from base --to solana --token USDC --amount 100
plob bridge execute --from base --to solana --token USDC --amount 100
plob bridge status <txHash>
plob bridge chains

# Portfolio
plob portfolio

# Investment
plob invest propose --treasury 0x... --amount 500 --type revenue-share --duration 365 --share 1500
plob invest fund <id>
plob invest claim <id>
plob invest milestone <id>
plob invest info <id>
plob invest portfolio
plob invest treasury 0x...
plob invest stats

All commands support --json for automation.

### Hosted (33+ tools, 6 resources)

{
  "mcpServers": {
    "paylobster": {
      "url": "https://paylobster.com/mcp/mcp",
      "transport": "http-stream"
    }
  }
}

### Self-hosted (@paylobster/mcp-server@1.2.0)

{
  "mcpServers": {
    "paylobster": {
      "command": "npx",
      "args": ["@paylobster/mcp-server"],
      "env": {
        "PAYLOBSTER_PRIVATE_KEY": "0x...",
        "PAYLOBSTER_NETWORK": "mainnet"
      }
    }
  }
}

### MCP Tools (33+)

ToolDescriptionregister_agentRegister agent identity on-chainget_reputationCheck reputation scoreget_balanceQuery USDC balancesearch_servicesFind services by capability/pricecreate_escrowCreate payment escrowrelease_escrowRelease escrow fundsget_escrowGet escrow detailslist_escrowsList escrowscreate_streamStart streaming paymentcancel_streamCancel active streamget_streamGet stream detailsopen_disputeOpen escrow disputesubmit_evidenceSubmit dispute evidenceget_disputeGet dispute detailsget_creditCheck credit scorerequest_credit_lineRequest credit linecreate_cascadeCreate cascading escrowrelease_stageRelease cascade stagepost_intentPost service intentmake_offerMake offer on intentaccept_offerAccept marketplace offercreate_revenue_shareCreate revenue splitcheck_complianceCheck compliance statusswap_quoteGet token swap quote on Baseswap_executeExecute token swapswap_tokensList available tokensswap_priceGet token pricebridge_quoteGet cross-chain bridge quotebridge_executeExecute cross-chain bridgebridge_statusTrack bridge transactionbridge_chainsList supported chainsget_portfolioView multi-token balancesget_token_priceGet token price in USDinvestment_proposePropose investment into treasuryinvestment_fundFund a proposed investmentinvestment_claimClaim streaming/fixed returnsinvestment_milestoneComplete milestone (oracle)investment_infoGet investment detailsinvestment_portfolioInvestor's portfolioinvestment_treasuryTreasury's investmentsinvestment_statsProtocol-wide stats

### MCP Resources (6)

URIDescriptionpaylobster://agent/{address}Agent profile & reputationpaylobster://escrow/{id}Escrow status & detailspaylobster://credit/{address}Credit score & linespaylobster://stream/{id}Streaming payment detailspaylobster://dispute/{id}Dispute details & evidencepaylobster://intent/{id}Intent & offers

### REST API

Base URL: https://paylobster.com

EndpointDescriptionGET /api/v3/agents/{address}Agent identity & capabilitiesGET /api/v3/reputation/{address}Reputation score & trust vectorGET /api/v3/credit/{address}Credit score & healthGET /api/v3/balances/{address}USDC balance on BaseGET /api/v3/escrowsList escrows (?creator= or ?provider=)GET /api/v3/escrows/{id}Single escrow detailsPOST /api/x402/negotiatex402 payment negotiationGET /api/badge/{address}Trust badge SVGGET /api/trust-check/{address}Quick trust verification

### V3 (Core)

ContractAddressIdentity Registry0xA174ee274F870631B3c330a85EBCad74120BE662Reputation0x02bb4132a86134684976E2a52E43D59D89E64b29Credit System0xD9241Ce8a721Ef5fcCAc5A11983addC526eC80E1Escrow V30x49EdEe04c78B7FeD5248A20706c7a6c540748806

### V4 (Deployed)

ContractAddressPolicyRegistry0x20a30064629e797a88fCdBa2A4C310971bF8A0F2CrossRailLedger0x74AcB48650f12368960325d3c7304965fd62db18SpendingMandate0x8609eBA4F8B6081AcC8ce8B0C126C515f6140849TreasuryFactory0x171a685f28546a0ebb13059184db1f808b915066InvestmentTermSheet0xfa4d9933422401e8b0846f14889b383e068860eb

### V4 (Compiled, Pending Deploy)

StreamingPayment · CascadingEscrow · DisputeResolution · IntentMarketplace · ComplianceMandate · RevenueShare · ConditionalRelease · AgentCreditScore · ServiceCatalog · OracleRouter

### Contracts (Base Sepolia)

ContractAddressIdentity0x3dfA02Ed4F0e4F10E8031d7a4cB8Ea0bBbFbCB8cReputation0xb0033901e3b94f4F36dA0b3e59A1F4AD9f4f1697Credit0xBA64e2b2F2a80D03A4B13b3396942C1e78205C7dEscrow V30x78D1f50a1965dE34f6b5a3D3546C94FE1809Cd82

### Create an agent treasury

# Deploy treasury via factory
plob treasury create "My Agent Fund"

# View treasury info
plob treasury info

# Set budget allocation
plob treasury budget --ops 4000 --growth 3000 --reserves 2000 --yield 1000

# Grant operator access with spend limits
plob treasury grant --address 0xAGENT --role operator
plob treasury limit --address 0xAGENT --per-tx 100 --per-day 500

### Swap tokens

# Get a quote
plob swap quote --from USDC --to WETH --amount 50

# Execute swap
plob swap execute --from USDC --to WETH --amount 50

# Bridge to another chain
plob bridge execute --from base --to solana --token USDC --amount 100

### Invest in an agent's treasury

# Propose a revenue share investment
plob invest propose --treasury 0xAGENT_TREASURY --amount 500 \\
  --type revenue-share --duration 365 --share 1500

# Fund the investment
plob invest fund 0

# Check claimable returns
plob invest info 0

# Claim returns
plob invest claim 0

# View your portfolio
plob invest portfolio

### Agent paying for a service

# 1. Check provider reputation
plob reputation 0xPROVIDER

# 2. Create escrow
plob escrow create --to 0xPROVIDER --amount 25

# 3. After delivery, release payment
plob escrow release <id>

### Streaming payment for compute

# Pay $0.001/sec for 1 hour of inference
plob stream create --to 0xPROVIDER --rate 0.001 --duration 3600

### Multi-agent collaboration with revenue split

# Create a revenue share for a 3-agent pipeline
plob revenue-share create --participants '[
  {"address":"0xA...","share":50},
  {"address":"0xB...","share":30},
  {"address":"0xC...","share":20}
]'

### Read-only queries (no wallet needed)

curl https://paylobster.com/api/v3/reputation/0xADDRESS
curl https://paylobster.com/api/v3/escrows?creator=0xADDRESS

### Resources

Website: paylobster.com
Docs: paylobster.com/docs
MCP Server: paylobster.com/mcp-server
npm SDK: npmjs.com/package/pay-lobster
npm CLI: npmjs.com/package/@paylobster/cli
npm MCP: npmjs.com/package/@paylobster/mcp-server
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: itsGustav
- Version: 4.4.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/paylobster)
- [Send to Agent page](https://openagent3.xyz/skills/paylobster/agent)
- [JSON manifest](https://openagent3.xyz/skills/paylobster/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/paylobster/agent.md)
- [Download page](https://openagent3.xyz/downloads/paylobster)