What problem does it solve? Auditing Substrate/Polkadot runtime pallets for security flaws is error-prone and requires deep knowledge of FRAME-specific pitfalls like silent arithmetic overflow, panic-induced node crashes, and misconfigured origins. This Skill systematizes that audit by checking every dispatchable against 7 known critical vulnerability patterns. ## Core Features & Use Cases - Seven Vulnerability Patterns: Detects arithmetic overflow, panic DoS, incorrect weights and fees, verify-first violations, unsigned transaction validation flaws, bad randomness, and bad origin checks. - Structured Scanning Workflow: Guides platform detection, dispatchable analysis, panic sweeps with ripgrep commands, weight benchmarking review, and origin privilege audits. - Severity-Prioritized Reporting: Classifies findings as Critical, High, or Medium with concrete mitigation code and a pre-launch checklist. - Use Case: Before launching a Polkadot parachain, run this Skill against your pallets/ directory to catch an ensure_signed guard on a privileged force_transfer call and an unchecked balance - amount subtraction before they reach production. ## Quick Start Ask the AI to scan the Substrate pallets in this repository for the 7 critical vulnerability patterns and report findings with severity and fixes.