/** * Skill: paid_services — Monetize agent capabilities via XMTP. * * Users pay ETH to the agent's wallet, then request services via XMTP. * Payment is verified on-chain by scanning recent blocks for matching transfers. * * Actions: * - catalog: List available services with pricing * - verify_payment: Check if an address has paid for a service * - execute_service: Execute a paid service after verifying payment * - advertise: Generate a message advertising services * * Configured via autonomy.paidServices in ClawtomatonConfig. * Requires XMTP to be enabled for communication with users. */ import type { SkillDefinition } from '../types.js'; export declare const paidServicesSkill: SkillDefinition; //# sourceMappingURL=services.d.ts.map