What problem does it solve? Writing client-side code to connect to Algorand networks, manage accounts, and send transactions requires knowing many low-level SDK details. This Skill provides ready-to-use patterns for the AlgoKit Utils library so you can perform blockchain operations correctly from TypeScript or Python applications. ## Core Features & Use Cases - AlgorandClient Initialization: Connect to LocalNet, TestNet, MainNet, or custom nodes using environment-based or explicit configuration. - Account & Transaction Management: Create or load accounts, register signers, and send payments, asset transfers, opt-ins, and asset creations. - Transaction Groups & App Calls: Compose atomic transaction groups with newGroup() and deploy or call smart contracts via typed app clients. - Use Case: You are building a dApp frontend and need to fund a new user account and opt it into an asset in one atomic group—this Skill shows the exact algorand.newGroup().addPayment(...).addAssetOptIn(...).send() pattern in both languages. ## Quick Start Ask the AI to show how to send a payment of 1 Algo on LocalNet using AlgoKit Utils in TypeScript.