solidity-audit

Installation
SKILL.md

Solidity Security Audit Checklist

Language Rule

  • Always respond in the same language the user is using. If the user asks in Chinese, respond in Chinese. If in English, respond in English.

Usage: This skill is for security audits and code reviews. It is NOT auto-invoked — call /solidity-audit when reviewing contracts for vulnerabilities.

Contract-Level Vulnerabilities

1. Reentrancy

Variant Description Check
Same-function Attacker re-enters the same function via fallback/receive All external calls after state updates (CEI pattern)?
Cross-function Attacker re-enters a different function sharing state All functions touching shared state protected by nonReentrant?
Cross-contract Attacker re-enters through a different contract that reads stale state External contracts cannot read intermediate state?
Read-only View function returns stale data during mid-execution state No critical view functions used as oracle during state transitions?
Related skills

More from 0xlayerghost/solidity-agent-kit

Installs
94
GitHub Stars
2
First Seen
Feb 15, 2026