What problem does it solve? Reviewing an already-executed mainnet deployment PR requires manually cross-checking deployed addresses, verified source code, constructor arguments, initialize transactions, and governance proposals against the Foundry deploy script — a slow, error-prone process where a single mismatch can mean a misconfigured contract on-chain. ## Core Features & Use Cases - On-chain source verification: Diffs explorer-verified contract source (and dependencies) against the local codebase using sol2uml diff per deployed address. - Constructor and initialize validation: Compares constructor arguments and post-deploy initialize(...) transaction calldata against the Foundry deploy script's _execute() logic. - Governance proposal matching: Reads the on-chain GovernorSix proposal via getActions and verifies targets, signatures, and calldatas match the script's _buildGovernanceProposal() actions. - Use Case: A reviewer is asked to sign off on PR #142 which deployed new OUSD strategy contracts to mainnet. The skill checks out the PR branch, enumerates every _recordDeployment in the deploy script, diffs each address's verified source, validates constructor args and the governance proposal, and emits a VERIFIED or BLOCKERS FOUND report. ## Quick Start Ask the assistant to run /verify-deployment-pr with the PR number, for example: verify deployment PR 142 against the on-chain deployment.