{"platform":"agentkit","name":"Coinbase AgentKit","fit":"Pre-payment trust gate for autonomous agents. Refuse payments to wallets scored below threshold.","code":"import { AgentKit } from '@coinbase/agentkit';\n\nasync function payIfTrusted(agentAddress, amount) {\n  const score = await fetch(`https://avisradar.app/api/agent/score/${agentAddress}`).then(r => r.json());\n  if (!score.score || score.score < 30) throw new Error('MainStreet score too low');\n  // ... your payment logic ...\n}","allPlatforms":["onchainkit","agentkit","accountkit","pimlico","privy","gitlawb","aerodrome","morpho","virtuals","clawd"]}