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 Lord1Egypt/awesome-skill-forge --skill abi-to-mcp-generatorgit clone --depth 1 https://github.com/Lord1Egypt/awesome-skill-forgeWrote 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/lord1egypt/awesome-skill-forge/abi-to-mcp-generator)<a href="https://agentmods.dev/skills/lord1egypt/awesome-skill-forge/abi-to-mcp-generator"><img src="https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/abi-to-mcp-generator/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/lord1egypt/awesome-skill-forge/abi-to-mcp-generator"><img src="https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/abi-to-mcp-generator.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.00016 | $0.00800 |
| Opus 5 | $0.00008 | $0.00400 |
| Sonnet 5 | $0.00003 | $0.00160 |
| Haiku 4.5 | $0.00002 | $0.00080 |
Grade A, and why
erc20-skill 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 12d 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 — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Workflow
- Setup: Configure environment variables
RPC_URL,PRIVATE_KEY,CONTRACT_ADDRESS - Read: Use read functions (view/pure) to query contract state
- Write: Use write functions to modify contract state (requires gas)
Constraints
| Constraint | Requirement |
|---|---|
| RPC Provider | Any Ethereum JSON-RPC endpoint |
| Private Key | Must have contract permissions |
| Gas Limit | Adjust based on function complexity |
| Network | Must match contract deployment |
Read Functions
name
name()
Returns: string
Example:
const result = await name({ });
symbol
symbol()
Returns: string
Example:
const result = await symbol({ });
decimals
decimals()
Returns: uint8
Example:
const result = await decimals({ });
totalSupply
totalSupply()
Returns: uint256
Example:
const result = await totalSupply({ });
balanceOf
balanceOf(address account)
Returns: uint256
Parameters:
| account | address |
Example:
const result = await balanceOf({ account: "0x... });
allowance
allowance(address owner, address spender)
Returns: uint256
Parameters:
| owner | address |
| spender | address |
Example:
const result = await allowance({ owner: "0x..., spender: "0x... });
Write Functions
transfer
transfer(address to, uint256 amount)
Mutability: nonpayable
Parameters:
| to | address |
| amount | uint256 |
Example:
const tx = await transfer({ to: value, amount: value });
approve
approve(address spender, uint256 amount)
Mutability: nonpayable
Parameters:
| spender | address |
| amount | uint256 |
Example:
const tx = await approve({ spender: value, amount: value });
transferFrom
transferFrom(address from, address to, uint256 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.
- 12d ago First seen · 192 lines · 16 tokens per session scan A c1361e210c93
erc20-skill is a skill published in the GitHub repository Lord1Egypt/awesome-skill-forge (2 stars, last pushed 3mo ago), licensed MIT. It adds 16 tokens to every session and 800 once invoked, about $0.0001 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
signature-replay
Signature replay attacks — missing nonces, missing chain ID, ecrecover zero address, signature malleability, cross-chain replay.
official-sui-skills
Pointer to the official Mysten Labs skills for building on Sui — language fundamentals, object model, PTBs, SDKs, publishing, upgrades, frontend integration, accessing on-chain data. Maintained upstream at github.com/MystenLabs/skills; pinned to the same ref the audit catalog derives from (see…
bridge
Cross-chain token transfers using Wormhole and CCTP.
onchainkit
Build onchain apps with Coinbase's OnchainKit React components - wallets, swaps, NFTs, payments.
marginfi
MarginFi — Solana lending and borrowing.
crypto-market-rank
Crypto market rankings and leaderboards. Query trending tokens, top searched tokens, Binance Alpha tokens, tokenized stocks, social hype sentiment ranks, smart money inflow token rankings, top meme token rankings from Pulse launchpad, and top trader PnL leaderboards. Use this skill when users ask about token rankings…