Methodology Skill

SkillSecurity

Comprehensive audit methodology guides covering the full security auditor workflow -- from preparation and AI-assisted analysis through formal verification, economic modeling, report writing, and skill quality scoring. Use when learning audit workflows, selecting testing strategies, or authoring new skills with TDD methodology.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Methodology Skill skill

What this skill tells your AI

The instructions your AI receives, as published by 0x-shashi/web3-audit-skills in skills/methodology/SKILL.md and read by ahel’s review.

Purpose

Comprehensive audit methodology guides covering the full security auditor workflow — from preparation and AI-assisted analysis through formal verification, economic modeling, and report writing.

Core Methodologies

Audit Workflow

Testing & Verification

Attack Analysis

Security Patterns

Protocol-Specific

Reporting

Skill Quality & Authoring

  • Quality Scoring - 10-point Anthropic best practices scoring framework for evaluating skill quality
  • Skill TDD Methodology - Test-Driven Documentation: pressure test → baseline → write → verify → close loopholes
  • Skill Authoring Guide - Three creation paths, progressive disclosure, quality guarantee loop, version tracking

Usage

1. Start with LLM Audit Workflow for structured phase-by-phase approach
2. Apply protocol-specific methodology (fork-audit, economic-modeling, etc.)
3. Use testing tools (invariant testing, symbolic execution) for verification
4. Write PoCs following poc-writing-guide
5. Generate report using audit-report-templates

Related Skills

Prerequisites

Methodology skills require familiarity with at least one blockchain platform. Formal verification methods (Halmos, Certora) require their respective tool installations.

Validation

To verify methodology completeness, validate all referenced files exist:

# Verify all methodology files are present
for f in llm-audit-workflow.md invariant-testing.md symbolic-execution.md poc-writing-guide.md; do
  test -f "$f" && echo "OK: $f" || echo "MISSING: $f"
done
# Test methodology coverage
def validate_methodology_files():
    required = ['llm-audit-workflow.md', 'invariant-testing.md', 'poc-writing-guide.md']
    for f in required:
        assert os.path.exists(f), f"Missing methodology file: {f}"
    print("All methodology files verified")
# Methodology selection guide
audit_type: full
required_methods:
  - llm-audit-workflow  # ALWAYS required
  - invariant-testing    # Required for DeFi
optional_methods:
  - symbolic-execution   # For formal verification
  - economic-modeling    # For tokenomics review

Behavior Guidelines

  • LLM Audit Workflow MUST be the starting point for all AI-assisted audits
  • Invariant testing is required for DeFi protocol audits
  • Symbolic execution may optionally be applied when formal guarantees are needed
  • PoC writing is ALWAYS expected for HIGH and CRITICAL severity findings

References

Signals

GitHub stars
60
Forks
10
Last commit
Feb 2026
Advanced
Catalog kind
skill
Gateway key
methodology
Source
github.com/0x-shashi/web3-audit-skills