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 agentmods add skills/hirama/solidity-agentic-stack/foundry-invariantsnpx skills add Hirama/solidity-agentic-stack --skill foundry-invariantsgit clone --depth 1 https://github.com/Hirama/solidity-agentic-stackWrote 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/hirama/solidity-agentic-stack/foundry-invariants)<a href="https://agentmods.dev/skills/hirama/solidity-agentic-stack/foundry-invariants"><img src="https://agentmods.dev/badge/skills/hirama/solidity-agentic-stack/foundry-invariants.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00079 | $0.01420 |
| Opus 5 | $0.00039 | $0.00710 |
| Sonnet 5 | $0.00016 | $0.00284 |
| Haiku 4.5 | $0.00008 | $0.00142 |
Grade A, and why
foundry-invariants 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 4d 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 — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Foundry Invariants
Invariant tests assert properties that must hold across any sequence of state transitions. They are the protocol's constitution. If an invariant breaks, the protocol is broken — fix the implementation, never weaken the invariant.
When to use this skill
- Writing a new invariant suite for a fresh protocol
- Adding an invariant to an existing suite
- Debugging an invariant break (e.g. INV-1 fails after 1024 calls)
- Designing a handler to drive multi-actor state
- Adding ghost variables to track cumulative state
- Onboarding to this repo's
test/invariant/VaultInvariant.t.sol
The contract — INV-1 and INV-2 in this stack
INV-1: address(vault).balance == vault.totalDeposits()
INV-2: ghost_totalDeposited - ghost_totalWithdrawn == vault.totalDeposits()
INV-1 is a balance ↔ accounting invariant — catches donation attacks, force-send drift, missing state updates. INV-2 is a flow conservation invariant — catches accounting bugs by reconciling external observations (ghost vars in the handler) against on-chain state.
Anatomy of an invariant suite
test/
├── handlers/
│ └── VaultHandler.sol # drives actors through the state machine
└── invariant/
└── VaultInvariant.t.sol # the invariant_* functions
Handler — drives randomized actions
contract VaultHandler is Test {
Vault public vault;
address[] public actors;
// Ghost variables — track cumulative state across calls
uint256 public ghost_totalDeposited;
uint256 public ghost_totalWithdrawn;
constructor(Vault _vault) {
vault = _vault;
for (uint256 i; i < 5; i++) {
actors.push(makeAddr(string.concat("actor", vm.toString(i))));
vm.deal(actors[i], 1_000 ether);
}
}
function deposit(uint256 actorSeed, uint256 amount) public {
address actor = actors[bound(actorSeed, 0, actors.length - 1)];
amount = bound(amount, 1, actor.balance);
vm.prank(actor);
vault.deposit{value: amount}();
ghost_totalDeposited += amount;
}
function withdraw(uint256 actorSeed, uint256 amount) public {
address actor = actors[bound(actorSeed, 0, actors.length - 1)];
uint256 bal = vault.balanceOf(actor);
if (bal == 0) return;
amount = bound(amount, 1, bal);
vm.prank(actor);
vault.withdraw(amount);
ghost_totalWithdrawn += amount;
}
}
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.
- 4d ago First seen · 184 lines · 79 tokens per session scan A 5f514b066570
foundry-invariants is a skill published in the GitHub repository Hirama/solidity-agentic-stack (5 stars, last pushed 2mo ago), licensed MIT. It adds 79 tokens to every session and 1,420 once invoked, about $0.0004 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-31.
Other skills, from other repositories
nip85-trusted-assertions
The NIP-85 trusted-assertions model in Quartz (nip85TrustedAssertions/) — kind 10040 trust-provider lists, kind 30382 contact cards / user assertions, 30383 event assertions, 30384 addressable assertions, 30385 external-id assertions. Use when building or parsing these events, working with the typed tags (RankTag…
onchainkit
Build onchain apps with Coinbase's OnchainKit React components - wallets, swaps, NFTs, payments.
marginfi
MarginFi — Solana lending and borrowing.
sparkbtcbot-proxy-deploy
Deploy a serverless Spark Bitcoin L2 proxy on Vercel with spending limits, auth, and Redis logging. Use when user wants to set up a new proxy, configure env vars, deploy to Vercel, or manage the proxy infrastructure.
devtools-event-client
Create typed EventClient for a library. Define event maps with typed payloads, pluginId auto-prepend namespacing, emit()/on()/onAll()/onAllPluginEvents() API. Connection lifecycle (5 retries, 300ms), event queuing, enabled/disabled state, SSR fallbacks, singleton pattern. Unique pluginId requirement to avoid event…
defi-amm-security
Security checklist for Solidity AMM contracts, liquidity pools, and swap flows. Covers reentrancy, CEI ordering, donation or inflation attacks, oracle manipulation, slippage, admin controls, and integer math.