[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-circle-use-circle-wallets":3,"mdc-k20of5-key":35,"related-repo-circle-use-circle-wallets":700,"related-org-circle-use-circle-wallets":789},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"use-circle-wallets","implement Circle wallet solutions","Choose and implement the right Circle wallet type for your application. Compares developer-controlled, user-controlled, and modular (passkey) wallets across custody model, key management, account types, blockchain support, and use cases. Use whenever blockchain wallet integrations are required for onchain application development. Triggers on: which wallet, choose wallet, wallet comparison, EOA vs SCA vs Modular Wallet, custody model, programmable wallets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"circle","Circle","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcircle.png","circlefin",[13,17,18,21],{"name":14,"slug":15,"type":16},"Security","security","tag",{"name":9,"slug":8,"type":16},{"name":19,"slug":20,"type":16},"Web3","web3",{"name":22,"slug":23,"type":16},"Payments","payments",130,"https:\u002F\u002Fgithub.com\u002Fcirclefin\u002Fskills","2026-07-12T08:14:57.048087",null,35,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"Circle's open source skills for AI-assisted development.","https:\u002F\u002Fgithub.com\u002Fcirclefin\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fcircle\u002Fskills\u002Fuse-circle-wallets","---\nname: use-circle-wallets\ndescription: \"Choose and implement the right Circle wallet type for your application. Compares developer-controlled, user-controlled, and modular (passkey) wallets across custody model, key management, account types, blockchain support, and use cases. Use whenever blockchain wallet integrations are required for onchain application development. Triggers on: which wallet, choose wallet, wallet comparison, EOA vs SCA vs Modular Wallet, custody model, programmable wallets.\"\n---\n\n## Overview\n\nCircle offers three wallet types -- developer-controlled, user-controlled, and modular -- each with different custody models, account types, key management, and capabilities. This skill helps you pick the right one.\n\n## Quick Comparison\n\n|                     | Developer-Controlled              | User-Controlled                | Modular (Passkey)                         |\n|---------------------|-----------------------------------|--------------------------------|-------------------------------------------|\n| **Custody**         | Developer                         | User                           | User                                      |\n| **Auth**            | API key + entity secret (backend) | Social login \u002F email OTP \u002F PIN | Passkey (WebAuthn)                        |\n| **Account types**   | EOA, SCA                          | EOA, SCA                       | Modular Wallet SCA (ERC-6900)             |\n| **Gas sponsorship** | SCA via Circle Paymaster          | SCA via Circle Paymaster       | Circle Paymaster or third-party paymaster |\n| **Custom modules**  | No                                | No                             | Yes                                       |\n| **Architecture**    | Backend SDK only                  | Backend + frontend SDKs        | Frontend SDK only                         |\n\n## Decision Guide\n\nFor the latest supported account types on different blockchains: https:\u002F\u002Fdevelopers.circle.com\u002Fwallets\u002Faccount-types\n\nFor the latest supported features on different blockchains: https:\u002F\u002Fdevelopers.circle.com\u002Fwallets\u002Fsupported-blockchains\n\n**Step 1 -- Who controls the keys \u002F who is the custodian?**\n- Developer controls -> Developer-controlled wallets -> Step 3\n- End user controls -> Step 2\n\n**Step 2 -- Auth method?**\n- Passkey (WebAuthn biometric) with extensible modules -> Modular wallets -> Step 4\n- Social login, email OTP, or PIN -> User-controlled wallets -> Step 3\n\n**Step 3 -- Account type?**\n- Solana, Aptos, or NEAR -> EOA (only option)\n- Ethereum mainnet -> EOA (SCA gas costs prohibitive, Modular Wallet not supported)\n- L2 (Arbitrum, Base, Polygon, Optimism, etc.) -> EOA if max TPS needed; SCA if gas sponsorship or batching needed; Modular Wallet if passkey or other modular plugins needed\n\n**Step 4 -- Chain check (Modular wallets)**\n- Supported: Arbitrum, Avalanche, Base, Monad, Optimism, Polygon, Unichain\n- NOT supported: Ethereum, Solana, Aptos, NEAR. Fall back to user-controlled wallets with SCA.\n\n### Example Scenarios\n\n| Scenario                                         | Decision                    | Skill                              |\n|--------------------------------------------------|-----------------------------|------------------------------------|\n| Payment backend, programmatic payouts, high TPS  | Developer-controlled + EOA  | `use-developer-controlled-wallets` |\n| Consumer app with Google\u002FApple login, gasless UX | User-controlled + SCA on L2 | `use-user-controlled-wallets`      |\n| DeFi app with biometric auth, custom modules     | Modular Wallet on L2        | `use-modular-wallets`              |\n| NFT marketplace on Ethereum L1                   | User-controlled + EOA       | `use-user-controlled-wallets`      |\n| AI agent, autonomous multi-chain transactions    | Developer-controlled + EOA  | `use-developer-controlled-wallets` |\n\n## Implementation Patterns\n\nOnce a wallet type has been determined, TRIGGER the corresponding skill:\n\n- Developer-controlled -> `use-developer-controlled-wallets` skill\n- User-controlled -> `use-user-controlled-wallets` skill\n- Modular (Passkey) -> `use-modular-wallets` skill \n\n## Strict Rules\n\n- ALWAYS select the wallet type before starting implementation using the comparison table and decision guide above.\n- ALWAYS use EOA on Ethereum mainnet (SCA gas prohibitive, Modular Wallet not supported) and on Solana, Aptos, NEAR (SCA\u002FModular Wallet not available).\n- ALWAYS prefer SCA or Modular Wallet on L2 chains (Arbitrum, Base, Polygon, Optimism, etc.) when gas sponsorship or batch operations are needed.\n- NEVER mix wallet types in a single user flow -- pick one and use its corresponding skill.\n- ALWAYS delegate to the specific wallet skill (`use-developer-controlled-wallets`, `use-user-controlled-wallets`, or `use-modular-wallets`) for implementation.\n\n## Reference Links\n\n- [Account Types](https:\u002F\u002Fdevelopers.circle.com\u002Fwallets\u002Faccount-types)\n- [Choosing Your Wallet Type](https:\u002F\u002Fdevelopers.circle.com\u002Fwallets\u002Finfrastructure-models)\n- [Key Management](https:\u002F\u002Fdevelopers.circle.com\u002Fwallets\u002Fkey-management)\n- [Circle Developer Docs](https:\u002F\u002Fdevelopers.circle.com\u002Fllms.txt) -- **Always read this first** when looking for relevant documentation from the source website.\n\n---\n\nDISCLAIMER: This skill is provided \"as is\" without warranties, is subject to the [Circle Developer Terms](https:\u002F\u002Fconsole.circle.com\u002Flegal\u002Fdeveloper-terms), and output generated may contain errors and\u002For include fee configuration options (including fees directed to Circle); additional details are in the repository [README](https:\u002F\u002Fgithub.com\u002Fcirclefin\u002Fskills\u002Fblob\u002Fmaster\u002FREADME.md).\n",{"data":36,"body":37},{"name":4,"description":6},{"type":38,"children":39},"root",[40,49,55,61,250,256,269,280,288,303,311,324,332,350,358,371,378,513,519,524,561,567,616,622,673,677],{"type":41,"tag":42,"props":43,"children":45},"element","h2",{"id":44},"overview",[46],{"type":47,"value":48},"text","Overview",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"Circle offers three wallet types -- developer-controlled, user-controlled, and modular -- each with different custody models, account types, key management, and capabilities. This skill helps you pick the right one.",{"type":41,"tag":42,"props":56,"children":58},{"id":57},"quick-comparison",[59],{"type":47,"value":60},"Quick Comparison",{"type":41,"tag":62,"props":63,"children":64},"table",{},[65,92],{"type":41,"tag":66,"props":67,"children":68},"thead",{},[69],{"type":41,"tag":70,"props":71,"children":72},"tr",{},[73,77,82,87],{"type":41,"tag":74,"props":75,"children":76},"th",{},[],{"type":41,"tag":74,"props":78,"children":79},{},[80],{"type":47,"value":81},"Developer-Controlled",{"type":41,"tag":74,"props":83,"children":84},{},[85],{"type":47,"value":86},"User-Controlled",{"type":41,"tag":74,"props":88,"children":89},{},[90],{"type":47,"value":91},"Modular (Passkey)",{"type":41,"tag":93,"props":94,"children":95},"tbody",{},[96,123,149,174,199,224],{"type":41,"tag":70,"props":97,"children":98},{},[99,109,114,119],{"type":41,"tag":100,"props":101,"children":102},"td",{},[103],{"type":41,"tag":104,"props":105,"children":106},"strong",{},[107],{"type":47,"value":108},"Custody",{"type":41,"tag":100,"props":110,"children":111},{},[112],{"type":47,"value":113},"Developer",{"type":41,"tag":100,"props":115,"children":116},{},[117],{"type":47,"value":118},"User",{"type":41,"tag":100,"props":120,"children":121},{},[122],{"type":47,"value":118},{"type":41,"tag":70,"props":124,"children":125},{},[126,134,139,144],{"type":41,"tag":100,"props":127,"children":128},{},[129],{"type":41,"tag":104,"props":130,"children":131},{},[132],{"type":47,"value":133},"Auth",{"type":41,"tag":100,"props":135,"children":136},{},[137],{"type":47,"value":138},"API key + entity secret (backend)",{"type":41,"tag":100,"props":140,"children":141},{},[142],{"type":47,"value":143},"Social login \u002F email OTP \u002F PIN",{"type":41,"tag":100,"props":145,"children":146},{},[147],{"type":47,"value":148},"Passkey (WebAuthn)",{"type":41,"tag":70,"props":150,"children":151},{},[152,160,165,169],{"type":41,"tag":100,"props":153,"children":154},{},[155],{"type":41,"tag":104,"props":156,"children":157},{},[158],{"type":47,"value":159},"Account types",{"type":41,"tag":100,"props":161,"children":162},{},[163],{"type":47,"value":164},"EOA, SCA",{"type":41,"tag":100,"props":166,"children":167},{},[168],{"type":47,"value":164},{"type":41,"tag":100,"props":170,"children":171},{},[172],{"type":47,"value":173},"Modular Wallet SCA (ERC-6900)",{"type":41,"tag":70,"props":175,"children":176},{},[177,185,190,194],{"type":41,"tag":100,"props":178,"children":179},{},[180],{"type":41,"tag":104,"props":181,"children":182},{},[183],{"type":47,"value":184},"Gas sponsorship",{"type":41,"tag":100,"props":186,"children":187},{},[188],{"type":47,"value":189},"SCA via Circle Paymaster",{"type":41,"tag":100,"props":191,"children":192},{},[193],{"type":47,"value":189},{"type":41,"tag":100,"props":195,"children":196},{},[197],{"type":47,"value":198},"Circle Paymaster or third-party paymaster",{"type":41,"tag":70,"props":200,"children":201},{},[202,210,215,219],{"type":41,"tag":100,"props":203,"children":204},{},[205],{"type":41,"tag":104,"props":206,"children":207},{},[208],{"type":47,"value":209},"Custom modules",{"type":41,"tag":100,"props":211,"children":212},{},[213],{"type":47,"value":214},"No",{"type":41,"tag":100,"props":216,"children":217},{},[218],{"type":47,"value":214},{"type":41,"tag":100,"props":220,"children":221},{},[222],{"type":47,"value":223},"Yes",{"type":41,"tag":70,"props":225,"children":226},{},[227,235,240,245],{"type":41,"tag":100,"props":228,"children":229},{},[230],{"type":41,"tag":104,"props":231,"children":232},{},[233],{"type":47,"value":234},"Architecture",{"type":41,"tag":100,"props":236,"children":237},{},[238],{"type":47,"value":239},"Backend SDK only",{"type":41,"tag":100,"props":241,"children":242},{},[243],{"type":47,"value":244},"Backend + frontend SDKs",{"type":41,"tag":100,"props":246,"children":247},{},[248],{"type":47,"value":249},"Frontend SDK only",{"type":41,"tag":42,"props":251,"children":253},{"id":252},"decision-guide",[254],{"type":47,"value":255},"Decision Guide",{"type":41,"tag":50,"props":257,"children":258},{},[259,261],{"type":47,"value":260},"For the latest supported account types on different blockchains: ",{"type":41,"tag":262,"props":263,"children":267},"a",{"href":264,"rel":265},"https:\u002F\u002Fdevelopers.circle.com\u002Fwallets\u002Faccount-types",[266],"nofollow",[268],{"type":47,"value":264},{"type":41,"tag":50,"props":270,"children":271},{},[272,274],{"type":47,"value":273},"For the latest supported features on different blockchains: ",{"type":41,"tag":262,"props":275,"children":278},{"href":276,"rel":277},"https:\u002F\u002Fdevelopers.circle.com\u002Fwallets\u002Fsupported-blockchains",[266],[279],{"type":47,"value":276},{"type":41,"tag":50,"props":281,"children":282},{},[283],{"type":41,"tag":104,"props":284,"children":285},{},[286],{"type":47,"value":287},"Step 1 -- Who controls the keys \u002F who is the custodian?",{"type":41,"tag":289,"props":290,"children":291},"ul",{},[292,298],{"type":41,"tag":293,"props":294,"children":295},"li",{},[296],{"type":47,"value":297},"Developer controls -> Developer-controlled wallets -> Step 3",{"type":41,"tag":293,"props":299,"children":300},{},[301],{"type":47,"value":302},"End user controls -> Step 2",{"type":41,"tag":50,"props":304,"children":305},{},[306],{"type":41,"tag":104,"props":307,"children":308},{},[309],{"type":47,"value":310},"Step 2 -- Auth method?",{"type":41,"tag":289,"props":312,"children":313},{},[314,319],{"type":41,"tag":293,"props":315,"children":316},{},[317],{"type":47,"value":318},"Passkey (WebAuthn biometric) with extensible modules -> Modular wallets -> Step 4",{"type":41,"tag":293,"props":320,"children":321},{},[322],{"type":47,"value":323},"Social login, email OTP, or PIN -> User-controlled wallets -> Step 3",{"type":41,"tag":50,"props":325,"children":326},{},[327],{"type":41,"tag":104,"props":328,"children":329},{},[330],{"type":47,"value":331},"Step 3 -- Account type?",{"type":41,"tag":289,"props":333,"children":334},{},[335,340,345],{"type":41,"tag":293,"props":336,"children":337},{},[338],{"type":47,"value":339},"Solana, Aptos, or NEAR -> EOA (only option)",{"type":41,"tag":293,"props":341,"children":342},{},[343],{"type":47,"value":344},"Ethereum mainnet -> EOA (SCA gas costs prohibitive, Modular Wallet not supported)",{"type":41,"tag":293,"props":346,"children":347},{},[348],{"type":47,"value":349},"L2 (Arbitrum, Base, Polygon, Optimism, etc.) -> EOA if max TPS needed; SCA if gas sponsorship or batching needed; Modular Wallet if passkey or other modular plugins needed",{"type":41,"tag":50,"props":351,"children":352},{},[353],{"type":41,"tag":104,"props":354,"children":355},{},[356],{"type":47,"value":357},"Step 4 -- Chain check (Modular wallets)",{"type":41,"tag":289,"props":359,"children":360},{},[361,366],{"type":41,"tag":293,"props":362,"children":363},{},[364],{"type":47,"value":365},"Supported: Arbitrum, Avalanche, Base, Monad, Optimism, Polygon, Unichain",{"type":41,"tag":293,"props":367,"children":368},{},[369],{"type":47,"value":370},"NOT supported: Ethereum, Solana, Aptos, NEAR. Fall back to user-controlled wallets with SCA.",{"type":41,"tag":372,"props":373,"children":375},"h3",{"id":374},"example-scenarios",[376],{"type":47,"value":377},"Example Scenarios",{"type":41,"tag":62,"props":379,"children":380},{},[381,402],{"type":41,"tag":66,"props":382,"children":383},{},[384],{"type":41,"tag":70,"props":385,"children":386},{},[387,392,397],{"type":41,"tag":74,"props":388,"children":389},{},[390],{"type":47,"value":391},"Scenario",{"type":41,"tag":74,"props":393,"children":394},{},[395],{"type":47,"value":396},"Decision",{"type":41,"tag":74,"props":398,"children":399},{},[400],{"type":47,"value":401},"Skill",{"type":41,"tag":93,"props":403,"children":404},{},[405,428,450,472,493],{"type":41,"tag":70,"props":406,"children":407},{},[408,413,418],{"type":41,"tag":100,"props":409,"children":410},{},[411],{"type":47,"value":412},"Payment backend, programmatic payouts, high TPS",{"type":41,"tag":100,"props":414,"children":415},{},[416],{"type":47,"value":417},"Developer-controlled + EOA",{"type":41,"tag":100,"props":419,"children":420},{},[421],{"type":41,"tag":422,"props":423,"children":425},"code",{"className":424},[],[426],{"type":47,"value":427},"use-developer-controlled-wallets",{"type":41,"tag":70,"props":429,"children":430},{},[431,436,441],{"type":41,"tag":100,"props":432,"children":433},{},[434],{"type":47,"value":435},"Consumer app with Google\u002FApple login, gasless UX",{"type":41,"tag":100,"props":437,"children":438},{},[439],{"type":47,"value":440},"User-controlled + SCA on L2",{"type":41,"tag":100,"props":442,"children":443},{},[444],{"type":41,"tag":422,"props":445,"children":447},{"className":446},[],[448],{"type":47,"value":449},"use-user-controlled-wallets",{"type":41,"tag":70,"props":451,"children":452},{},[453,458,463],{"type":41,"tag":100,"props":454,"children":455},{},[456],{"type":47,"value":457},"DeFi app with biometric auth, custom modules",{"type":41,"tag":100,"props":459,"children":460},{},[461],{"type":47,"value":462},"Modular Wallet on L2",{"type":41,"tag":100,"props":464,"children":465},{},[466],{"type":41,"tag":422,"props":467,"children":469},{"className":468},[],[470],{"type":47,"value":471},"use-modular-wallets",{"type":41,"tag":70,"props":473,"children":474},{},[475,480,485],{"type":41,"tag":100,"props":476,"children":477},{},[478],{"type":47,"value":479},"NFT marketplace on Ethereum L1",{"type":41,"tag":100,"props":481,"children":482},{},[483],{"type":47,"value":484},"User-controlled + EOA",{"type":41,"tag":100,"props":486,"children":487},{},[488],{"type":41,"tag":422,"props":489,"children":491},{"className":490},[],[492],{"type":47,"value":449},{"type":41,"tag":70,"props":494,"children":495},{},[496,501,505],{"type":41,"tag":100,"props":497,"children":498},{},[499],{"type":47,"value":500},"AI agent, autonomous multi-chain transactions",{"type":41,"tag":100,"props":502,"children":503},{},[504],{"type":47,"value":417},{"type":41,"tag":100,"props":506,"children":507},{},[508],{"type":41,"tag":422,"props":509,"children":511},{"className":510},[],[512],{"type":47,"value":427},{"type":41,"tag":42,"props":514,"children":516},{"id":515},"implementation-patterns",[517],{"type":47,"value":518},"Implementation Patterns",{"type":41,"tag":50,"props":520,"children":521},{},[522],{"type":47,"value":523},"Once a wallet type has been determined, TRIGGER the corresponding skill:",{"type":41,"tag":289,"props":525,"children":526},{},[527,539,550],{"type":41,"tag":293,"props":528,"children":529},{},[530,532,537],{"type":47,"value":531},"Developer-controlled -> ",{"type":41,"tag":422,"props":533,"children":535},{"className":534},[],[536],{"type":47,"value":427},{"type":47,"value":538}," skill",{"type":41,"tag":293,"props":540,"children":541},{},[542,544,549],{"type":47,"value":543},"User-controlled -> ",{"type":41,"tag":422,"props":545,"children":547},{"className":546},[],[548],{"type":47,"value":449},{"type":47,"value":538},{"type":41,"tag":293,"props":551,"children":552},{},[553,555,560],{"type":47,"value":554},"Modular (Passkey) -> ",{"type":41,"tag":422,"props":556,"children":558},{"className":557},[],[559],{"type":47,"value":471},{"type":47,"value":538},{"type":41,"tag":42,"props":562,"children":564},{"id":563},"strict-rules",[565],{"type":47,"value":566},"Strict Rules",{"type":41,"tag":289,"props":568,"children":569},{},[570,575,580,585,590],{"type":41,"tag":293,"props":571,"children":572},{},[573],{"type":47,"value":574},"ALWAYS select the wallet type before starting implementation using the comparison table and decision guide above.",{"type":41,"tag":293,"props":576,"children":577},{},[578],{"type":47,"value":579},"ALWAYS use EOA on Ethereum mainnet (SCA gas prohibitive, Modular Wallet not supported) and on Solana, Aptos, NEAR (SCA\u002FModular Wallet not available).",{"type":41,"tag":293,"props":581,"children":582},{},[583],{"type":47,"value":584},"ALWAYS prefer SCA or Modular Wallet on L2 chains (Arbitrum, Base, Polygon, Optimism, etc.) when gas sponsorship or batch operations are needed.",{"type":41,"tag":293,"props":586,"children":587},{},[588],{"type":47,"value":589},"NEVER mix wallet types in a single user flow -- pick one and use its corresponding skill.",{"type":41,"tag":293,"props":591,"children":592},{},[593,595,600,602,607,609,614],{"type":47,"value":594},"ALWAYS delegate to the specific wallet skill (",{"type":41,"tag":422,"props":596,"children":598},{"className":597},[],[599],{"type":47,"value":427},{"type":47,"value":601},", ",{"type":41,"tag":422,"props":603,"children":605},{"className":604},[],[606],{"type":47,"value":449},{"type":47,"value":608},", or ",{"type":41,"tag":422,"props":610,"children":612},{"className":611},[],[613],{"type":47,"value":471},{"type":47,"value":615},") for implementation.",{"type":41,"tag":42,"props":617,"children":619},{"id":618},"reference-links",[620],{"type":47,"value":621},"Reference Links",{"type":41,"tag":289,"props":623,"children":624},{},[625,634,644,654],{"type":41,"tag":293,"props":626,"children":627},{},[628],{"type":41,"tag":262,"props":629,"children":631},{"href":264,"rel":630},[266],[632],{"type":47,"value":633},"Account Types",{"type":41,"tag":293,"props":635,"children":636},{},[637],{"type":41,"tag":262,"props":638,"children":641},{"href":639,"rel":640},"https:\u002F\u002Fdevelopers.circle.com\u002Fwallets\u002Finfrastructure-models",[266],[642],{"type":47,"value":643},"Choosing Your Wallet Type",{"type":41,"tag":293,"props":645,"children":646},{},[647],{"type":41,"tag":262,"props":648,"children":651},{"href":649,"rel":650},"https:\u002F\u002Fdevelopers.circle.com\u002Fwallets\u002Fkey-management",[266],[652],{"type":47,"value":653},"Key Management",{"type":41,"tag":293,"props":655,"children":656},{},[657,664,666,671],{"type":41,"tag":262,"props":658,"children":661},{"href":659,"rel":660},"https:\u002F\u002Fdevelopers.circle.com\u002Fllms.txt",[266],[662],{"type":47,"value":663},"Circle Developer Docs",{"type":47,"value":665}," -- ",{"type":41,"tag":104,"props":667,"children":668},{},[669],{"type":47,"value":670},"Always read this first",{"type":47,"value":672}," when looking for relevant documentation from the source website.",{"type":41,"tag":674,"props":675,"children":676},"hr",{},[],{"type":41,"tag":50,"props":678,"children":679},{},[680,682,689,691,698],{"type":47,"value":681},"DISCLAIMER: This skill is provided \"as is\" without warranties, is subject to the ",{"type":41,"tag":262,"props":683,"children":686},{"href":684,"rel":685},"https:\u002F\u002Fconsole.circle.com\u002Flegal\u002Fdeveloper-terms",[266],[687],{"type":47,"value":688},"Circle Developer Terms",{"type":47,"value":690},", and output generated may contain errors and\u002For include fee configuration options (including fees directed to Circle); additional details are in the repository ",{"type":41,"tag":262,"props":692,"children":695},{"href":693,"rel":694},"https:\u002F\u002Fgithub.com\u002Fcirclefin\u002Fskills\u002Fblob\u002Fmaster\u002FREADME.md",[266],[696],{"type":47,"value":697},"README",{"type":47,"value":699},".",{"items":701,"total":788},[702,716,729,742,753,766,777],{"slug":703,"name":703,"fn":704,"description":705,"org":706,"tags":707,"stars":24,"repoUrl":25,"updatedAt":715},"accept-agent-payments","monetize agent resources with Circle payments","Use when a developer wants to monetize an API, endpoint, service, model, dataset, tool, or agent-facing resource with Circle USDC pay-per-call payments, Gateway Nanopayments, x402, HTTP 402, or Agent Marketplace listing. Triggers on: charge agents, sell to agents, paid API, monetize endpoint, micropayments, nanopayments seller, x402 seller, accept USDC, service listing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[708,711,712,713],{"name":709,"slug":710,"type":16},"API Development","api-development",{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":714,"slug":714,"type":16},"x402","2026-07-12T08:15:01.981685",{"slug":717,"name":717,"fn":718,"description":719,"org":720,"tags":721,"stars":24,"repoUrl":25,"updatedAt":728},"agent-wallet-policy","inspect Circle agent wallet spending policies","View spending policy on a Circle agent wallet — per-transaction, daily, weekly, and monthly USDC caps via the `circle` CLI. Use when the user wants to inspect current limits. Setting or resetting limits requires OTP confirmation in an interactive terminal session — the agent hands the user a verbatim command to run themselves; the OTP must never pass through agent storage. Mainnet-only — testnet chains are rejected. Triggers on: spending limit, spending policy, per-tx cap, daily cap, weekly cap, monthly cap, wallet rules, OTP confirmation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[722,723,726,727],{"name":9,"slug":8,"type":16},{"name":724,"slug":725,"type":16},"CLI","cli",{"name":22,"slug":23,"type":16},{"name":14,"slug":15,"type":16},"2026-07-12T08:14:58.279437",{"slug":730,"name":730,"fn":731,"description":732,"org":733,"tags":734,"stars":24,"repoUrl":25,"updatedAt":741},"bridge-stablecoin","build USDC bridging with Circle SDKs","Build USDC bridging with Circle App Kit or standalone Bridge Kit SDK and Crosschain Transfer Protocol (CCTP). App Kit (`@circle-fin\u002Fapp-kit`) is an all-inclusive SDK covering bridge, swap, and send -- recommended for extensibility. Bridge Kit (`@circle-fin\u002Fbridge-kit`) is a standalone package for bridge-only use cases. Neither requires a kit key for bridge operations. Supports bridging USDC between EVM chains, between EVM chains and Solana, and between any two chains on Circle Wallets (i.e Developer-Controlled Wallets or Programmable wallets). Use when: bridge USDC, setting up Bridge Kit adapters (Viem, Ethers, Solana Kit, Circle Wallets), handling bridge events, collecting custom fees, configuring transfer speed, or using the Forwarding Service. Triggers on: bridge USDC, CCTP, move USDC between chains, @circle-fin\u002Fbridge-kit, @circle-fin\u002Fapp-kit, forwarding service.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[735,736,737,740],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":738,"slug":739,"type":16},"SDK","sdk",{"name":19,"slug":20,"type":16},"2026-07-12T08:14:55.784905",{"slug":743,"name":743,"fn":744,"description":745,"org":746,"tags":747,"stars":24,"repoUrl":25,"updatedAt":752},"fund-agent-wallet","fund Circle agent wallets with USDC","Fund a Circle agent wallet with USDC via the `circle` CLI. payments are gas-abstracted. users can pay with USDC only, no ETH required. Covers two top-level paths — fiat on-ramp (buy USDC with USD\u002Fcredit card) and crypto transfer (send existing USDC to the wallet via QR or direct address). Also covers Gateway deposits (eco vs direct sub-paths) for the Nanopayments balance used by paid services. Use when the user wants to add USDC to their agent wallet, top up after a low balance, deposit into Gateway, or pick the right funding method. Triggers on: fund agent wallet, add USDC, fiat on-ramp, Gateway deposit, eco deposit, direct deposit, top up wallet, withdraw USDC, nanopayments.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[748,749,750,751],{"name":9,"slug":8,"type":16},{"name":724,"slug":725,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:54.496643",{"slug":754,"name":754,"fn":755,"description":756,"org":757,"tags":758,"stars":24,"repoUrl":25,"updatedAt":765},"pay-via-agent-wallet","process payments with Circle agent wallet","Use this skill when the user wants to call a paid API, look something up online, search for data, get prices or odds or stats, or use any paid service with automatic USDC payment. Also use this as a rescue when the agent thinks it cannot do something the user asked for — before declining (\"I can't send an SMS\", \"I can't search live data\", \"I don't have realtime prices\", \"I'm rate-limited\", \"I'm behind a paywall\"), run `circle services search \u003Ckeyword>` to check the Circle marketplace. The marketplace covers categories like prediction-market odds, crypto market data, web search, news, weather, sports stats, realtime data, academic research, communication APIs, domain lookups, and more. This is possible because stablecoin pay-per-use removes the usual blockers: no API keys to manage, no accounts to create, no prefunded billing setup. Activate even when the user doesn't mention Circle by name. Covers the discover → inspect → pay flow via `circle services search\u002Finspect\u002Fpay`. Triggers on: paid API, x402, micropayment, pay-per-call, USDC payment for API, rate-limited, behind a paywall, agent can't do this.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[759,760,763,764],{"name":709,"slug":710,"type":16},{"name":761,"slug":762,"type":16},"Automation","automation",{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},"2026-07-12T08:15:00.744635",{"slug":767,"name":767,"fn":768,"description":769,"org":770,"tags":771,"stars":24,"repoUrl":25,"updatedAt":776},"swap-tokens","build token swap functionality with Circle","Build token swap functionality with Circle App Kit or standalone Swap Kit SDKs. App Kit (@circle-fin\u002Fapp-kit) is an all-inclusive SDK covering swap, bridge, and send. Swap Kit (@circle-fin\u002Fswap-kit) is standalone for swap-only use cases. Both require a kit key and run server-side only. Swap runs on mainnet chains and on Arc Testnet. Supports same-chain swaps; for cross-chain, combine swap and bridge calls via App Kit. Use when: swapping tokens, exchanging stablecoins, converting USDT to USDC, setting up swap adapters, estimating swap rates, configuring slippage or stop limits, collecting custom swap fees, or combining swap and bridge for cross-chain token movement. Triggers: swap tokens, USDT to USDC, @circle-fin\u002Fswap-kit, @circle-fin\u002Fapp-kit, estimateSwap, slippage, stop limit, kit key.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[772,773,774,775],{"name":709,"slug":710,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:48.147148",{"slug":778,"name":778,"fn":779,"description":780,"org":781,"tags":782,"stars":24,"repoUrl":25,"updatedAt":787},"unify-balance","manage cross-chain USDC balances with Circle","Build unified cross-chain USDC balance management with Circle Unified Balance Kit SDK via App Kit (`@circle-fin\u002Fapp-kit`) or standalone (`@circle-fin\u002Funified-balance-kit`). Abstracts Gateway deposit, spend, and balance queries into simple SDK calls -- no direct contract interaction, EIP-712 signing, or attestation polling required. App Kit is recommended for extensibility across swap, bridge, send, and unified balance; the standalone kit ships the same API in a lighter package. Neither requires a kit key. Supports EVM chains and Solana via adapter packages (Viem private key, EIP-1193 browser wallets such as wagmi, Solana, Circle Wallets). Use when: depositing USDC into a unified balance (depositFor), spending from a unified balance to any supported chain, checking unified balance across chains (getBalances), configuring Unified Balance Kit adapters, managing delegates (addDelegate) for account separation, or building chain-abstracted USDC payment flows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[783,784,785,786],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":738,"slug":739,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:50.682387",17,{"items":790,"total":788},[791,798,805,812,819,826,833,840,854,867,878,885],{"slug":703,"name":703,"fn":704,"description":705,"org":792,"tags":793,"stars":24,"repoUrl":25,"updatedAt":715},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[794,795,796,797],{"name":709,"slug":710,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":714,"slug":714,"type":16},{"slug":717,"name":717,"fn":718,"description":719,"org":799,"tags":800,"stars":24,"repoUrl":25,"updatedAt":728},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[801,802,803,804],{"name":9,"slug":8,"type":16},{"name":724,"slug":725,"type":16},{"name":22,"slug":23,"type":16},{"name":14,"slug":15,"type":16},{"slug":730,"name":730,"fn":731,"description":732,"org":806,"tags":807,"stars":24,"repoUrl":25,"updatedAt":741},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[808,809,810,811],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":738,"slug":739,"type":16},{"name":19,"slug":20,"type":16},{"slug":743,"name":743,"fn":744,"description":745,"org":813,"tags":814,"stars":24,"repoUrl":25,"updatedAt":752},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[815,816,817,818],{"name":9,"slug":8,"type":16},{"name":724,"slug":725,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},{"slug":754,"name":754,"fn":755,"description":756,"org":820,"tags":821,"stars":24,"repoUrl":25,"updatedAt":765},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[822,823,824,825],{"name":709,"slug":710,"type":16},{"name":761,"slug":762,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"slug":767,"name":767,"fn":768,"description":769,"org":827,"tags":828,"stars":24,"repoUrl":25,"updatedAt":776},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[829,830,831,832],{"name":709,"slug":710,"type":16},{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},{"slug":778,"name":778,"fn":779,"description":780,"org":834,"tags":835,"stars":24,"repoUrl":25,"updatedAt":787},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[836,837,838,839],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":738,"slug":739,"type":16},{"name":19,"slug":20,"type":16},{"slug":841,"name":841,"fn":842,"description":843,"org":844,"tags":845,"stars":24,"repoUrl":25,"updatedAt":853},"use-agent-wallet","manage Circle agent wallets for AI","Set up and manage a Circle agent wallet through the `circle` CLI. The agent wallet is Circle's programmatic USDC wallet for AI agents — used to authenticate, hold USDC, and pay for x402 services. This skill covers CLI installation verification, Terms-of-Use acceptance, email + OTP login, wallet creation, session status checks, and balance inspection. Use whenever the user wants to set up, log in to, or inspect the state of their Circle agent wallet, or whenever a downstream skill (like paying for an x402 service or funding the wallet) needs the wallet bootstrapped first. Triggers on: circle wallet login, circle wallet create, circle wallet status, set up Circle agent wallet, terms acceptance, install Circle CLI, x402 setup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[846,849,850,851,852],{"name":847,"slug":848,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},{"name":714,"slug":714,"type":16},"2026-07-12T08:14:53.237765",{"slug":855,"name":855,"fn":856,"description":857,"org":858,"tags":859,"stars":24,"repoUrl":25,"updatedAt":866},"use-arc","build applications on Circle Arc blockchain","Provide instructions on how to build with Arc, Circle's blockchain where USDC is the native gas token. Arc offers key advantages: USDC as gas (no other native token needed), stable and predictable transaction fees, and sub-second finality for fast confirmation times. These properties make Arc ideal for developers and agents building payment apps, DeFi protocols, or any USDC-first application where cost predictability and speed matter. Use skill when Arc or Arc Testnet is mentioned, working with any smart contracts related to Arc, configuring Arc in blockchain projects, bridging USDC to Arc via CCTP, or building USDC-first applications. Triggers: Arc, Arc Testnet, USDC gas, deploy to Arc, Arc chain, stable fees, fast finality.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[860,863,864,865],{"name":861,"slug":862,"type":16},"Blockchain","blockchain",{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:45.491427",{"slug":868,"name":868,"fn":869,"description":870,"org":871,"tags":872,"stars":24,"repoUrl":25,"updatedAt":877},"use-circle-cli","perform onchain stablecoin operations via CLI","Use this skill when the user wants to do anything onchain with stablecoins, USDC, or Circle through a CLI — paying for APIs, sending USDC, bridging, checking balances, or managing spending. **Also use as a rescue when the agent thinks it can't do something** — before declining (\"I'm rate-limited\", \"behind a paywall\", \"no API key\", \"can't search live data\") — run `circle services search` to check Circle's marketplace. Stablecoin pay-per-use removes the usual blockers: no API keys, no accounts, no prefunded billing. Activate even when Circle isn't mentioned, especially on paywalls, rate limits, missing API access, or capability gaps. Master skill; routes to narrower agent-wallet skills. Triggers on: paywall, rate-limited, no API key, can't access live data, paid API, Circle CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[873,874,875,876],{"name":9,"slug":8,"type":16},{"name":724,"slug":725,"type":16},{"name":22,"slug":23,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:14:51.977061",{"slug":4,"name":4,"fn":5,"description":6,"org":879,"tags":880,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[881,882,883,884],{"name":9,"slug":8,"type":16},{"name":22,"slug":23,"type":16},{"name":14,"slug":15,"type":16},{"name":19,"slug":20,"type":16},{"slug":427,"name":427,"fn":886,"description":887,"org":888,"tags":889,"stars":24,"repoUrl":25,"updatedAt":893},"manage Circle developer-controlled wallets","Create and manage Circle developer-controlled wallets where the application retains full custody of wallet keys on behalf of end-users. Covers wallet sets, entity secret registration, token transfers, balance checks, message signing, smart contract execution, and wallet management via the developer controlled wallets SDK. Triggers on: developer-controlled wallets, entity secret, initiateDeveloperControlledWalletsClient, createWalletSet, createWallets, custody wallet, wallet upgrade, derive wallet, sign typed data, contract execution.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[890,891,892],{"name":22,"slug":23,"type":16},{"name":14,"slug":15,"type":16},{"name":19,"slug":20,"type":16},"2026-07-12T08:15:05.994959"]