/** * agent_talent — hire paid AI skills from the BlockRun agent marketplace. * * The autonomous counterpart to the `/market` slash command: where `/market` * lets a human browse and hire, this capability lets the agent discover and * hire talent mid-task. `action: "list"` returns the catalog (free GET); * `action: "run"` hires a skill by slug, signing ONE standard `exact` x402 * USDC payment from the user wallet on Base (only on a successful run), and * returns the skill's output plus the USD paid. * * Both actions delegate to src/market/client.ts, the single payment path * shared with the command — see that file for the x402 details. */ import type { CapabilityHandler } from '../agent/types.js'; export declare const agentTalentCapability: CapabilityHandler;