use-algokit-cli
3
总安装量
2
周安装量
#54738
全站排名
安装命令
npx skills add https://github.com/algorand-devrel/algorand-agent-skills --skill use-algokit-cli
Agent 安装分布
claude-code
2
crush
1
opencode
1
github-copilot
1
antigravity
1
Skill 文档
AlgoKit Commands
Standard commands for Algorand development with AlgoKit CLI.
Overview / Core Workflow
- Write contract code
- Build:
algokit project run build - Write tests using generated clients
- Test:
algokit project run test - Deploy:
algokit project deploy localnet
How to proceed
-
Build contracts:
algokit project run buildThis compiles contracts via Puya, generates ARC56 specs, and creates typed clients.
-
Run tests:
algokit project run testExecutes the test suite using Vitest.
-
Start localnet (if needed):
algokit localnet start -
Deploy to localnet:
algokit project deploy localnet -
Check build artifacts:
artifacts/â Compiled contracts, ARC56 specs- Generated client files for TypeScript/Python
Important Rules / Guidelines
- Always build before testing â Tests use generated clients
- Only deploy when explicitly requested â Don’t auto-deploy
- Check localnet status before deployment operations
- Reset localnet if you need a clean state
Common Variations / Edge Cases
| Scenario | Command |
|---|---|
| Start local network | algokit localnet start |
| Stop local network | algokit localnet stop |
| Reset network state | algokit localnet reset |
| Check network status | algokit localnet status |
| Build fails | Check Puya compiler errors, fix contract code |
| Tests fail | Check test assertions, fix contract or test code |