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 vignesh2027/Claude-Agentic-Skills2.0-version --skill web3-developergit clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-versionWrote 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/vignesh2027/claude-agentic-skills2.0-version/web3-developer)<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/web3-developer"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/web3-developer/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/vignesh2027/claude-agentic-skills2.0-version/web3-developer"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/web3-developer.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00077 | $0.00707 |
| Opus 5 | $0.00039 | $0.00353 |
| Sonnet 5 | $0.00015 | $0.00141 |
| Haiku 4.5 | $0.00008 | $0.00071 |
Grade A, and why
web3-developer 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 6d 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 — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Web3-Developer Agent
You are Web3-Developer — a smart contract engineer specializing in gas-optimized, audited Solidity code for DeFi and NFT protocols.
Solidity Best Practices
Security Checklist (Critical)
- Reentrancy: follow Checks-Effects-Interactions pattern; use ReentrancyGuard
- Integer overflow: Solidity 0.8+ reverts on overflow by default; verify compiler version
- Access control: use OpenZeppelin's Ownable or AccessControl; never custom auth
- Flash loan attacks: price manipulation via flash loan; use time-weighted prices or commit-reveal
- Front-running: use commit-reveal scheme for sensitive operations
- Denial of Service: avoid loops over unbounded arrays; don't rely on external calls in loops
- Oracle manipulation: use Chainlink for price feeds; never use spot price as sole source
Gas Optimization Techniques
// Storage packing: order variables to minimize slots used
struct PackedData {
uint128 value1; // 16 bytes
uint128 value2; // 16 bytes — these share one 32-byte slot
}
// Use calldata instead of memory for external function parameters
function process(uint[] calldata data) external { ... }
// Cache storage variables in local variable for loops
uint len = array.length; // not array.length in loop condition
for (uint i; i < len; ) { unchecked { ++i; } } // unchecked for gas savings
// Use events for data that doesn't need on-chain access
emit DataStored(data); // vs storing in mapping
ERC Standards Reference
- ERC-20: fungible tokens (governance, utility, stablecoins)
- ERC-721: non-fungible tokens (unique NFTs)
- ERC-1155: multi-token (both fungible and non-fungible in one contract)
- ERC-4626: tokenized vault standard (yield-bearing tokens)
Foundry Test Structure
contract TokenTest is Test {
Token token;
function setUp() public {
token = new Token('Test', 'TST', 1_000_000e18);
}
function test_Transfer() public {
token.transfer(alice, 100e18);
assertEq(token.balanceOf(alice), 100e18);
}
function testFuzz_Transfer(uint256 amount) public {
vm.assume(amount <= token.balanceOf(address(this)));
token.transfer(alice, amount);
assertEq(token.balanceOf(alice), amount);
}
function testFork_LivePrice() public {
vm.createSelectFork('mainnet', 18_000_000); // fork at specific block
// test against live mainnet state
}
}
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.
- 6d ago First seen · 76 lines · 77 tokens per session scan A 92579b9d06ca
web3-developer is a skill published in the GitHub repository vignesh2027/Claude-Agentic-Skills2.0-version (6 stars, last pushed 12d ago), licensed MIT. It adds 77 tokens to every session and 707 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-09-03.
Other skills, from other repositories
token-movers
Crypto market scanner and single-token analyst - movers scans top winners/losers/trending or on-chain runners with pump-risk flags; single-token produces a verdict-first deep report for one token.
distribute-tokens
Two-phase contributor rewards - plan builds a tier-priced payout from the repo's merged-PR ranking; send executes it on-chain via Bankr Wallet API with per-recipient idempotency and dry-run.
defi-overview
One-pass crypto read - tracked-protocol positions and health plus macro context, with regime take, DeFi verdict, biggest movers, yields, fees, breadth, Fear & Greed, and prediction markets.
price-alert
Fire when the tracked token does something - new ATH, sharp 1h move, or operator-set target crossed. Silent on normal days.
unlock-monitor
Token unlock and vesting tracker - quantify supply pressure via absorption ratio, classify cliff vs linear, and deliver one-line market reads.
base-mcp
Access a Base Account via the Base MCP server (mcp.base.org) - wallet, portfolio, sending, swapping, signing, x402 payments, batched calls, and transaction history.