Install
$ agentstack add skill-algorand-devrel-algorand-agent-skills-algorand-python ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Algorand Python
Write, test, deploy, and troubleshoot Algorand Python smart contracts.
Quick Start
# Create Python project
algokit init -n my-project -t python --answer preset_name production --defaults
# Development cycle
cd my-project
algokit project run build # Compile contracts with PuyaPy
algokit project run test # Run pytest tests
algokit localnet start # Start local network
algokit project deploy localnet # Deploy
Critical Rules
- Understand AVM constraints first — see
algorand-coreskill for the foundational mental model - NEVER use PyTEAL or Beaker — use Algorand Python (PuyaPy) with
algopyimports - Use
@arc4.abimethodfor public ABI methods,@arc4.baremethodfor bare calls - Always search docs first — use Kapa MCP or web search before writing contract code
- Always include tests — use pytest with AlgoKit Utils
- Fund app account before box operations — box storage requires MBR funding
- Always
.copy()mutable values — call.copy()when appending to or storing mutable types: ARC-4 (arc4.Struct,arc4.DynamicArray) and native (algopy.Array,algopy.FixedArray,algopy.Struct)
Reference Guide
Read the specific reference file for your task. Each file is self-contained.
Contract Syntax
- [syntax-types.md](./references/syntax-types.md) — AVM types (
arc4.UInt64,arc4.String,Bytes,UInt64), ARC-4 encoding, native vs ARC-4 conversions - [syntax-storage.md](./references/syntax-storage.md) —
GlobalState,LocalState,Box,BoxMap,BoxRef, MBR funding patterns - [syntax-methods.md](./references/syntax-methods.md) —
@arc4.abimethod,@arc4.baremethod,@subroutine, lifecycle methods, visibility,ARC4ContractvsContract - [syntax-transactions.md](./references/syntax-transactions.md) — Inner transactions (
itxn), group transactions, fee pooling
Testing
- [testing.md](./references/testing.md) — Pytest patterns,
AlgorandClientsetup, typed client testing, box funding, multi-user tests
Deployment and Client Interaction
- [deploy-interaction.md](./references/deploy-interaction.md) — CLI commands, typed client factory, method calls, state reading,
AlgorandClientAPI, accounts, transactions, groups, amount helpers
Troubleshooting
- [errors.md](./references/errors.md) — Contract errors (assert, opcode budget, box MBR, inner txn) + transaction errors (overspend, asset not opted in, account not found)
Canonical Example Repos
Search these repositories for real-world code examples:
algorandfoundation/devportal-code-examples— Primary examples inprojects/python-examples/smart_contracts/(HelloWorld, BoxStorage, etc.)algorandfoundation/puya— Compiler examples inexamples/(helloworldarc4, voting, amm)algorandfoundation/algokit-python-template— AlgoKit project templatealgorandfoundation/algokit-utils-py— AlgoKit Utils Python SDK
Cross-References
- New to Algorand? Read
algorand-coreskill first for AVM mental model - Project scaffolding and CLI: See
algorand-project-setupskill - React frontends: See
algorand-frontendskill
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: algorand-devrel
- Source: algorand-devrel/algorand-agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.