Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Set up a complete self-funding agent lifecycle in one command. Orchestrates 5 agents to take an agent from zero to self-sustaining: provisions wallet, optionally deploys token with V4 pool, configures treasury management, registers identity on ERC-8004, and sets up x402 micropayments. Use when user wants to make their agent self-funding, earn and manage its own revenue, or configure autonomous agent operations end-to-end.
Set up a complete self-funding agent lifecycle in one command. Orchestrates 5 agents to take an agent from zero to self-sustaining: provisions wallet, optionally deploys token with V4 pool, configures treasury management, registers identity on ERC-8004, and sets up x402 micropayments. Use when user wants to make their agent self-funding, earn and manage its own revenue, or configure autonomous agent operations end-to-end.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
The most complex composite skill in the system. Orchestrates 5 specialized agents in sequence to take an agent from zero infrastructure to a fully self-sustaining economic entity -- wallet, optional token, treasury management, on-chain identity, and payment acceptance -- in a single command. Why this is 10x better than setting up each component manually: 5 domains compressed into 1 command: Wallet provisioning, token deployment, treasury management, identity registration, and payment configuration each require different expertise and tooling. Manually coordinating these takes hours and requires deep knowledge of Privy/Turnkey APIs, Uniswap V4 pool creation, DCA strategies, ERC-8004 registries, and x402 protocol. This skill handles all five. Context flows between stages: Each agent receives the output of all prior agents. The treasury-manager knows the wallet address from Step 1 and the token address from Step 2. The identity-verifier registers the wallet from Step 1 with the capabilities demonstrated by Steps 2-3. Without this skill, you'd manually copy-paste addresses and configuration between five separate tools. Conditional pipeline: Token deployment (Step 2) is optional -- skip it for agents that earn through services rather than token economics. The skill adapts the remaining steps based on which revenue model is selected. Rollback awareness: If Step 3 fails, Steps 1 and 2 are still valid and preserved. The skill reports exactly which steps succeeded and which failed, so you can fix the issue and re-run from the failure point rather than starting over. Progressive output: You see each stage complete in real-time with a running summary. By the end, you have a complete "agent identity card" showing every component of the self-funding infrastructure.
Activate when the user says anything like: "Set up my agent to be self-funding" "Make my agent earn and manage its own revenue" "Configure autonomous agent operations end-to-end" "I want my agent to be self-sustaining" "Set up the full agent economy stack" "Bootstrap my agent's financial infrastructure" "Create a self-funding agent from scratch" "Full agent setup: wallet, token, treasury, identity, payments" Do NOT use when the user only wants one component (use the individual skills: setup-agent-wallet, deploy-agent-token, manage-treasury, verify-agent, or configure-x402 respectively), or when the agent is already partially set up and only needs one missing piece.
ParameterRequiredDefaultHow to ExtractwalletProviderNoprivy"privy" (dev), "turnkey" (production), or "safe" (max security)deployTokenNofalseWhether to deploy an agent token: "yes", "with token", "launch token"tokenNameIf token--Token name if deploying: "AgentCoin", "MyBot Token"tokenSymbolIf token--Token symbol if deploying: "AGENT", "BOT"chainsNobaseOperating chains: "base", "ethereum", "base,ethereum"revenueModelNox402"x402" (micropayments), "token-fees" (swap fees), "lp-fees", or "all"environmentNodev"dev" (development), "staging", or "production"initialFundingNo--Initial funding amount: "$100", "0.1 ETH" If the user says "with token" or "launch a token", set deployToken=true and ask for tokenName and tokenSymbol if not provided.
SELF-FUNDING SETUP PIPELINE ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β β β Step 1: WALLET PROVISIONING (wallet-provisioner) β β βββ Determine provider: privy (dev) / turnkey (prod) / safe (max) β β βββ Provision wallet with signing capabilities β β βββ Configure spending policies β β βββ Fund with gas (2x estimated need) β β βββ Output: Wallet address, provider, policies β β β β β βΌ wallet address feeds into all subsequent steps β β β β Step 2: TOKEN DEPLOYMENT (token-deployer) [OPTIONAL] β β βββ Deploy ERC-20 token contract β β βββ Create Uniswap V4 pool with anti-snipe hooks β β βββ Bootstrap initial liquidity β β βββ Lock LP tokens (10 years default) β β βββ Output: Token address, pool address, LP position β β β β β βΌ token + pool info feeds into treasury config β β β β Step 3: TREASURY MANAGEMENT (treasury-manager) β β βββ Configure auto-conversion of earned fees to stablecoins β β βββ Set up DCA strategy for volatile holdings β β βββ Configure yield optimization for idle capital β β βββ Set circuit breaker thresholds β β βββ Output: Treasury config, burn rate, runway projection β β β β β βΌ wallet + capabilities feed into identity registration β β β β Step 4: IDENTITY REGISTRATION (identity-verifier) β β βββ Register agent on ERC-8004 Identity Registry β β βββ Set capabilities metadata (trading, LP, services) β β βββ Initialize reputation score β β βββ Output: ERC-8004 identity, trust tier, registry tx β β β β β βΌ identity + wallet feed into payment config β β β β Step 5: PAYMENT CONFIGURATION (direct) β β βββ Configure x402 micropayment acceptance β β βββ Set per-tool pricing β β βββ Generate .well-known/x402-manifest.json β β βββ Verify USDC balance for pay mode β β βββ Output: x402 config, pricing, manifest β β β β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β β FINAL: AGENT IDENTITY CARD β β βββ Wallet, token, treasury, identity, payments -- all linked β β βββ Complete self-funding infrastructure report β β β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Configure x402 micropayment acceptance directly (no agent needed): Verify the wallet has USDC on the settlement chain (Base recommended). Write .uniswap/x402-config.json with payment configuration. Write .well-known/x402-manifest.json for service discovery. Step 5/5: Payments Configured Mode: Accept (x402 micropayments) Chain: Base (8453) Wallet: 0xABCD...1234 Facilitator: Auto-selected Pricing: Price quotes: $0.001/call Pool analytics: $0.003/call Route optimization: $0.005/call Simulation: $0.010/call Execution: $0.050/call Config Files: .uniswap/x402-config.json .well-known/x402-manifest.json
Self-Funding Agent Setup Complete ββββββββββββββββββββββββββββββββββββββββββββββ AGENT IDENTITY CARD ββββββββββββββββββββββββββββββββββββββββββββββ Wallet: Address: 0xABCD...1234 Provider: Privy (development) Chain: Base (8453) Balance: 0.05 ETH + 0 USDC Token: Name: AgentCoin (AGENT) Address: 0x5678...efgh Pool: AGENT/WETH V4 (0.3%) Hooks: Anti-snipe + Revenue Share (5%) LP Lock: 10 years Treasury: Auto-Convert: Enabled (-> USDC) Circuit Break: $100 minimum Burn Rate: ~$0/day (initial) Runway: Indefinite Identity: ERC-8004: Registered (BASIC tier) Reputation: 0/100 (builds with activity) Registry: 0x7177...09A Payments: x402: Accepting micropayments Settlement: USDC on Base Pricing: $0.001 - $0.050 per call ββββββββββββββββββββββββββββββββββββββββββββββ Pipeline: Wallet -> Token -> Treasury -> Identity -> Payments Status: ALL 5 STEPS COMPLETE Next Steps: 1. Fund the wallet with USDC for x402 pay mode 2. Share your x402 manifest for service discovery 3. Start operations to build reputation (rep: 0 -> basic -> verified) 4. Monitor treasury health with /manage-treasury
Self-Funding Agent Setup Complete ββββββββββββββββββββββββββββββββββββββββββββββ AGENT IDENTITY CARD ββββββββββββββββββββββββββββββββββββββββββββββ Wallet: Address: 0xABCD...1234 Provider: Privy (development) Chain: Base (8453) Balance: 0.05 ETH Token: Not deployed (service-based revenue model) Treasury: Auto-Convert: Enabled (-> USDC) Circuit Break: $100 minimum Revenue: x402 micropayments Identity: ERC-8004: Registered (BASIC tier) Reputation: 0/100 Payments: x402: Accepting micropayments Settlement: USDC on Base ββββββββββββββββββββββββββββββββββββββββββββββ Pipeline: Wallet -> (Token skipped) -> Treasury -> Identity -> Payments Status: ALL STEPS COMPLETE (4/5, token skipped)
Self-Funding Agent Setup -- Partial Step 1: Wallet COMPLETE (0xABCD...1234) Step 2: Token COMPLETE (AGENT at 0x5678...efgh) Step 3: Treasury FAILED (Could not configure auto-convert) Step 4: Identity SKIPPED (depends on Step 3) Step 5: Payments SKIPPED (depends on Step 4) Error at Step 3: "Insufficient USDC balance for initial DCA configuration." What's preserved: - Wallet is provisioned and funded (Step 1) - Token is deployed with pool and locked LP (Step 2) To resume: 1. Fund wallet with USDC: send USDC to 0xABCD...1234 2. Re-run: "Set up self-funding" (will detect existing wallet + token)
This is the most complex composite skill. It orchestrates 5 agents sequentially, each feeding context to the next. Expect the full pipeline to take 2-5 minutes depending on chain conditions and whether token deployment is included. Token deployment is irreversible. Once a token is deployed and the pool is created, it cannot be undone. The skill simulates everything via safety-guardian before execution, but make sure the token name, symbol, and parameters are correct before confirming. The pipeline is resumable. If a step fails, prior steps are preserved. Re-running the skill detects existing wallet and token, skipping completed steps automatically. ERC-8004 registration is on Ethereum mainnet. Even if your agent operates on Base, the identity registry is on Ethereum. This requires a small amount of ETH on mainnet for the registration transaction. Reputation starts at 0. The initial trust tier is BASIC. Building reputation requires completing trades, providing liquidity, and receiving positive feedback from counterparties. Use the agent actively to progress from basic -> verified -> trusted. x402 payments settle on Base by default. Base has ~200ms settlement and low gas costs, making it ideal for micropayments. The wallet must hold USDC on Base to accept payments. Revenue model affects treasury configuration. "x402" mode configures for micropayment income. "token-fees" mode configures for swap fee revenue. "lp-fees" mode configures for LP earnings. "all" enables all three. Development vs production providers. Privy is recommended for development (fast setup, easy testing). Turnkey or Safe is recommended for production (TEE-backed signing, hardware security). The skill selects based on the environment parameter.
ErrorUser-Facing MessageSuggested ActionWallet provisioning failed"Could not provision wallet: {reason}."Check provider credentials and retryWallet already exists"Agent wallet already configured. Skipping to next step."Proceeds automatically with existing walletToken deployment failed"Token deployment failed at step: {reason}. Wallet is preserved."Fix the issue and re-run (wallet will be reused)Token already deployed"Token {symbol} already deployed. Skipping to treasury."Proceeds automatically with existing tokenTreasury config failed"Treasury configuration failed: {reason}. Wallet and token preserved."Fund wallet and re-runERC-8004 registration failed"Could not register on ERC-8004: {reason}. Prior steps preserved."Check ETH balance on mainnet and retryx402 config failed"Could not write x402 configuration: {reason}."Check file permissions and retryInsufficient funding"Wallet needs at least {X} ETH for gas. Current: {Y} ETH."Fund the wallet before proceedingChain not supported"{chain} does not support all required features."Use Base or Ethereum for full feature supportPartial pipeline failure"Setup completed partially. Failed at step {N}: {reason}."Fix the failed step and re-run from that pointProvider not configured"Wallet provider '{provider}' requires credentials not found in environment."Set required env vars (PRIVY_APP_ID, etc.)
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.