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 keep-starknet-strange/starknet-agentic --skill starknet-anonymous-walletgit clone --depth 1 https://github.com/keep-starknet-strange/starknet-agenticWrote 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/keep-starknet-strange/starknet-agentic/starknet-anonymous-wallet)<a href="https://agentmods.dev/skills/keep-starknet-strange/starknet-agentic/starknet-anonymous-wallet"><img src="https://agentmods.dev/badge/skills/keep-starknet-strange/starknet-agentic/starknet-anonymous-wallet/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/keep-starknet-strange/starknet-agentic/starknet-anonymous-wallet"><img src="https://agentmods.dev/badge/skills/keep-starknet-strange/starknet-agentic/starknet-anonymous-wallet.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.00032 | $0.01690 |
| Opus 5 | $0.00016 | $0.00845 |
| Sonnet 5 | $0.00006 | $0.00338 |
| Haiku 4.5 | $0.00003 | $0.00169 |
Grade A, and why
starknet-anonymous-wallet 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 11d 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 — 230 lines — stays where its author put it; the contents beside it link to each section on GitHub.
typhoon-starknet-account
This skill provides agent-facing scripts for:
- Creating/loading a Starknet account (Typhoon flow)
- Discovering ABI / functions
- Reading & writing to contracts
- Preflight (simulate + fee estimate)
- Allowance checks with human amounts
When to Use
- Creating or operating privacy-focused Starknet accounts through the Typhoon flow.
- Running agent-side contract reads, writes, preflight simulation, or allowance checks from an anonymous wallet context.
When NOT to Use
- Standard non-private wallet management, DeFi routing, or payment-link flows.
- Cairo contract authoring, deployment operations, or security audits.
Quick Start
- Deep dives:
references/(ABI discovery, Typhoon account flow, preflight/fee simulation notes) - Adjacent modules: skills catalog
- Account flow examples:
scripts/create-account.js,scripts/parse-smart.js,scripts/resolve-smart.js - Read/write examples:
scripts/read-smart.js,scripts/invoke-contract.js,scripts/avnu-swap.js - Allowance checks example:
scripts/read-smart.js(call ERC20allowance(owner, spender))
Prerequisites
npm install starknet@^8.9.1 typhoon-sdk@^1.1.13 @andersmyrmel/vard@^1.2.0 @avnu/avnu-sdk compromise@^14.14.5 ws@^8.19.0
RPC setup (required for onchain reads/writes)
These scripts talk to Starknet via JSON-RPC. Configure one of:
- Set
STARKNET_RPC_URLin your environment (recommended), OR - Pass
rpcUrlin the JSON input for scripts that support it.
If neither is provided, scripts fall back to the public Lava mainnet RPC:
https://rpc.starknet.lava.build:443
Starknet.js v8.9.1 quick patterns
import { RpcProvider, Account, Contract } from 'starknet';
const provider = new RpcProvider({
nodeUrl: process.env.STARKNET_RPC_URL || 'https://rpc.starknet.lava.build:443'
});
// signer can be a private key string or Starknet Signer instance
const account = new Account({
provider,
address: process.env.ACCOUNT_ADDRESS,
signer: process.env.PRIVATE_KEY
});
const contract = new Contract({
abi,
address: contractAddress,
providerOrAccount: account
});
// read
const balance = await contract.call('balance_of', [account.address]);
// write (sign -> send -> wait)
const tx = await contract.invoke('transfer', [to, amount], { waitForTransaction: false });
const receipt = await provider.waitForTransaction(tx.transaction_hash);
What ships with it
20 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.
- .env.example 54 B
- agents/openai.yaml 313 B
- package.json 420 B
- protocols.json 2.0 KB
- references/argentx-class-hashes.md 850 B
- scripts/_keys.js 1.8 KB runs code
- scripts/_rpc.js 183 B runs code
- scripts/_tokens.js 1.2 KB runs code
- scripts/avnu-swap.js 7.0 KB runs code
- scripts/create-account.js 6.0 KB runs code
- scripts/invoke-contract.js 3.3 KB runs code
- scripts/loot-survivor.js 19 KB runs code
- scripts/parse-smart.js 26 KB runs code
- scripts/read-smart.js 9.4 KB runs code
- scripts/resolve-smart.js 39 KB runs code
- scripts/synonyms.js 5.0 KB runs code
- scripts/test-parse.js 9.1 KB runs code
- scripts/vesu-pool.js 19 KB runs code
- scripts/watch-events-smart.js 30 KB runs code
- skill.json 339 B
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.
- 11d ago First seen · 230 lines · 32 tokens per session scan A 00c90b5c56af
starknet-anonymous-wallet is a skill published in the GitHub repository keep-starknet-strange/starknet-agentic (80 stars, last pushed 3d ago), licensed MIT. It adds 32 tokens to every session and 1,690 once invoked, about $0.0002 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-wallet
Create and manage Starknet wallets for AI agents. Transfer tokens, check balances, manage session keys, deploy accounts, and interact with smart contracts using native Account Abstraction.
wallet-operations
Wallet operation skill for balance queries, transaction construction, and portfolio management.
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…
evm
Read-only EVM client: wallets, tokens, gas across 8 chains.
hyperliquid
Hyperliquid market data, account history, trade review.
solana
Query Solana wallets, tokens, txs, and NFTs in USD.