web3-methodology-research

web3-methodology-research is a skill for Claude Code, Codex from Olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills. It costs 66 tokens per session (10,445 once invoked), scanned A, a copy of web3-methodology-research, MIT.

A research-based guide to advanced methods for auditing Web3 smart contracts, including Solidity and Vyper code. It summarizes tools for finding suspicious code, testing behavior with many inputs, and checking whether specific execution paths are reachable.

In plain words
What is it for?
Use it to plan contract audits, run static analysis, define and test security properties, fuzz contracts, confirm exploit paths, and write custom Slither detectors.
Why use it?
It gives auditors a staged methodology instead of relying on one scanner or reading the entire protocol without a plan. It also connects each tool with the kind of question it can answer.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to plan contract audits, run static analysis, define and test security properties, fuzz contracts, confirm exploit paths, and write custom Slither detectors.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills/web3-methodology-research
Install

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.

Any agent
npx skills add Olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills --skill web3-methodology-research
Clone the repo
git clone --depth 1 https://github.com/Olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for web3-methodology-research

README.md
[![agentmods](https://agentmods.dev/badge/skills/olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills/web3-methodology-research/github.svg)](https://agentmods.dev/skills/olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills/web3-methodology-research)
Your own site
<a href="https://agentmods.dev/skills/olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills/web3-methodology-research"><img src="https://agentmods.dev/badge/skills/olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills/web3-methodology-research/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.

agentmods 80×15 button for web3-methodology-research

Your own site · 80×15
<a href="https://agentmods.dev/skills/olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills/web3-methodology-research"><img src="https://agentmods.dev/badge/skills/olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills/web3-methodology-research.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 10,445 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.10445
Opus 5 $0.00033 $0.05222
Sonnet 5 $0.00013 $0.02089
Haiku 4.5 $0.00007 $0.01044

Measured 12d ago against content hash 565393498784, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

web3-methodology-research 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.

Origin

This is a copy

100% identical to web3-methodology-research — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

web3-methodology-research/SKILL.md · 1,214 lines

How it starts

The opening of the file, as written. The whole thing — 1,214 lines — stays where its author put it; the contents beside it link to each section on GitHub.

METHODOLOGY & RESEARCH SYNTHESIS

Sources: Trail of Bits, SlowMist, ConsenSys, Immunefi Web3 Security Library, Cyfrin Audit Course, Lido Audits Library, Nethermind PublicAuditReports.


TRAIL OF BITS

Their Toolset

Tool What It Does When to Use
Slither Static analysis for Solidity/Vyper Always — run first
Echidna Property-based fuzzer (write invariants, it breaks them) Write 3-5 invariants before reading code
Medusa Next-gen fuzzer, multi-core, parallel corpus Deeper campaigns after Echidna
Manticore Symbolic execution — confirms if a path is truly reachable Specific PoC confirmation
Halmos Symbolic unit testing — proves for ALL inputs Math-heavy functions

Slither Commands

# Install
pip3 install slither-analyzer

# First pass — protocol overview
slither . --print human-summary
slither . --print contract-summary

# Targeted detectors
slither . --detect reentrancy-eth,reentrancy-no-eth,unchecked-lowlevel
slither . --detect arbitrary-send-erc20,controlled-delegatecall
slither . --detect uninitialized-state,uninitialized-storage
slither . --detect suicidal,controlled-array-length

# Visualization
slither . --print inheritance-graph
slither . --print function-summary
slither . --print call-graph

# Filtered run (skip tests and libs)
slither . --exclude-low --filter-paths "test|lib"

Echidna Quick Start

// Write invariants BEFORE fully reading the code
contract VaultInvariants {
    Vault vault;

    // Protocol should never owe more than it holds
    function echidna_solvency() public view returns (bool) {
        return vault.totalAssets() >= vault.totalDebt();
    }

    // Share math must be consistent
    function echidna_share_math() public view returns (bool) {
        return vault.balanceOf(address(this)) <= vault.totalSupply();
    }

    // cumulativeRewardPerShare only ever increases
    function echidna_reward_monotonic() public view returns (bool) {
        return vault.cumulativeRewardPerShare() >= lastRewardPerShare;
    }
}

Read the full file on GitHub · 1,214 lines

Changes

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.

  1. 12d ago First seen · 1,214 lines · 66 tokens per session scan A 565393498784

Subscribe to this mod's changes

web3-methodology-research is a skill published in the GitHub repository Olaradiallysymmetrical491/web3-bug-bounty-hunting-ai-skills (5 stars, last pushed yesterday), licensed MIT. It adds 66 tokens to every session and 10,445 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to web3-methodology-research, differing in 0 lines, and is treated as a copy.