Claude-skill-registry build-smart-contracts
Build Algorand smart contracts using Algorand TypeScript (PuyaTs) or Algorand Python (PuyaPy). Use when creating new smart contracts from scratch, adding features or methods to existing contracts, understanding Algorand contract development patterns, or getting guidance on contract architecture. Strong triggers include "create a smart contract", "write a contract that...", "build a voting contract", "implement an NFT contract", "add a method to the contract".
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/build-smart-contracts" ~/.claude/skills/majiayu000-claude-skill-registry-build-smart-contracts && rm -rf "$T"
manifest:
skills/data/build-smart-contracts/SKILL.mdsource content
Building Smart Contracts
Create modern Algorand smart contracts in Algorand TypeScript or Algorand Python—statically-typed subsets compiled to TEAL bytecode by the Puya compiler.
Overview / Core Workflow
- Search Algorand documentation for concepts and best practices
- Retrieve canonical examples from priority repositories
- Generate code adapting examples to requirements
- Include integration tests using generated clients
- Build and test with AlgoKit commands
How to proceed
-
Search documentation first:
- Use
MCP tool for conceptual guidancekappa_search_algorand_knowledge_sources - If MCP unavailable, use web search: "site:dev.algorand.co {concept}"
- If no results, proceed with caution using known patterns
- Use
-
Retrieve canonical examples:
- Priority 1:
algorandfoundation/devportal-code-examples - Priority 2:
(examples/)algorandfoundation/puya-ts - Priority 3:
algorandfoundation/algokit-typescript-template - Always include corresponding test files
- Priority 1:
-
Generate code:
- Default to TypeScript unless user explicitly requests Python
- Adapt examples carefully, preserving safety checks
- Follow syntax rules from
skillalgorand-typescript
-
Include tests:
- Always include or suggest integration tests
- Use generated clients for testing contracts
- See
skill for patternstest-smart-contracts
-
Build and test:
algokit project run build # Compile contracts algokit project run test # Run tests
Important Rules / Guidelines
- NEVER use PyTEAL or Beaker — these are legacy, superseded by Puya
- NEVER write raw TEAL — always use Algorand TypeScript/Python
- NEVER import external libraries into contract code
- Default to TypeScript unless user explicitly requests Python
- Always search docs first before writing code
- Always retrieve examples from priority repositories
Common Variations / Edge Cases
| Scenario | Approach |
|---|---|
| Box storage patterns | Check |
| Inner transactions | Search for "itxn" patterns in puya-ts examples |
| ARC-4 methods | See |
| State management | Check GlobalState, LocalState patterns in examples |
| Python contracts | Use instead of puya-ts |
| Python syntax help | Consult subfolder for Python-specific patterns |