Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add algorand-devrel/algorand-agent-skills --skill algorand-typescriptgit clone --depth 1 https://github.com/algorand-devrel/algorand-agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/algorand-devrel/algorand-agent-skills/algorand-typescript)<a href="https://agentmods.dev/skills/algorand-devrel/algorand-agent-skills/algorand-typescript"><img src="https://agentmods.dev/badge/skills/algorand-devrel/algorand-agent-skills/algorand-typescript/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/algorand-devrel/algorand-agent-skills/algorand-typescript"><img src="https://agentmods.dev/badge/skills/algorand-devrel/algorand-agent-skills/algorand-typescript.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00167 | $0.01153 |
| Opus 5 | $0.00084 | $0.00576 |
| Sonnet 5 | $0.00033 | $0.00231 |
| Haiku 4.5 | $0.00017 | $0.00115 |
Grade A, and why
algorand-typescript scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Algorand TypeScript
Write, test, deploy, and troubleshoot Algorand TypeScript smart contracts.
Quick Start
algokit init -n my-project -t typescript --answer preset_name production --defaults
cd my-project
algokit project run build # Compile .algo.ts → ARC-56 + typed client
algokit project run test # Run Vitest tests
algokit localnet start # Start local network
algokit project deploy localnet # Deploy
Critical Rules
- File extension: Contract files MUST use
.algo.ts - NEVER use
number: Useuint64andUint64()for all numeric values in contracts - Always
clone()storage reads/writes:clone(this.box(k).value)— see syntax-types.md decision table fee: Uint64(0)on all inner transactions: Prevents app account drain; caller covers via fee pooling- Fund app account before box operations: Box storage requires MBR funding
- NEVER use PyTEAL, Beaker, or raw TEAL: Only use Algorand TypeScript (PuyaTs)
- Always search docs first: Use Kapa MCP or web search before writing contract code
- Always include tests: Use
algorandFixturefor E2E integration tests - Understand AVM constraints: See
algorand-coreskill for the foundational mental model
Reference Guide
Read the specific reference file for your task. Each file is self-contained.
Contract Syntax
- syntax-types.md — AVM types (
uint64,bytes,bigint), number rules,clone(), value semantics, union type workarounds, array rules - syntax-storage.md —
GlobalState,LocalState,BoxMap,Box, MBR funding patterns,@contractdecorator for dynamic keys, choosing storage types - syntax-methods.md — Method visibility (
public/private),@abimethod/@readonlydecorators, transaction-type parameters, lifecycle methods,emit()events,assertMatchwith comparison operators - syntax-transactions.md —
gtxntyped access, ABI method transaction parameters,itxninner transactions,itxnCompose/itxn.submitGroup, fee pooling, asset creation
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/deploy-interaction.md 12 KB
- references/errors.md 10 KB
- references/migration-from-beta.md 4.0 KB
- references/migration-from-tealscript.md 5.7 KB
- references/syntax-methods.md 6.4 KB
- references/syntax-storage.md 6.6 KB
- references/syntax-transactions.md 9.6 KB
- references/syntax-types.md 5.9 KB
- references/testing.md 13 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 75 lines · 167 tokens per session scan A d12675a2f606
algorand-typescript is a skill published in the GitHub repository algorand-devrel/algorand-agent-skills (33 stars, last pushed today), licensed MIT. It adds 167 tokens to every session and 1,153 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
starknet-js
Use when writing or debugging JavaScript/TypeScript that interacts with Starknet through the starknet.js SDK — building Call objects or calldata, encoding/decoding Cairo types (felt252, u256, structs, arrays, spans, ByteArray, Option/Result/custom enums), or working with contracts, accounts, providers, transactions…
viem-integration
Integrate EVM blockchains using viem. Use when user says "read blockchain data", "send transaction", "interact with smart contract", "connect to Ethereum", "use viem", "use wagmi", "wallet integration", "viem setup", or mentions blockchain/EVM development with TypeScript.
wallet-cli
Operate the TypeScript TRON wallet CLI for accounts, transfers, staking, governance, contracts, signing, chain queries, and password input with wallet-cli 4.13.0. Refuse wallet passwords in argv and require the supported stdin channel. For Java REPL requests, refuse that entry and offer the TypeScript one-shot CLI…
solana
Use when working on Solana software, including one or more of: Solana client code using TypeScript, Rust libraries that use Solana crates, Anchor programs, Quasar programs, LiteSVM tests, including Rust program files, TypeScript tests, and Anchor.toml or Quasar.toml configuration. Designed to create minimal, reusable…
upgrade-viem
Input: optionally a target viem version. Without one, use the latest release on npm.
bnb-chain-toolkit-guide
Guide to the BNB Chain Toolkit — a modular TypeScript toolkit for building, deploying, and interacting with smart contracts on BNB Chain. Includes BEP-20 token utilities, DeFi integrations, wallet management, and cross-chain bridging. Built for BNB Chain Hackathon by the Sperax team.