원클릭으로
mvx-diff-review
Reviewing changes between versions of SCs (Upgradeability checks).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Reviewing changes between versions of SCs (Upgradeability checks).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | mvx-diff-review |
| description | Reviewing changes between versions of SCs (Upgradeability checks). |
This skill helps you analyze the difference between two versions of a codebase, focusing on security implications of changes.
When reviewing a diff between v1 and v2 of a Smart Contract:
struct stored in a VecMapper or SingleValueMapper change?v2 introduce new Storage Mappers?#[upgrade]? (Remember #[init] is NOT called on upgrade).git diff v1..v2.mvx-code-analysis — Section 1 expands on storage-layout compat, init-on-upgrade, and breaking-change detection.mvx-upgrade-flow — Deployment-side of the same problem (pre/post-upgrade verification).mvx-sc-audit Phase 2 — How differential review plugs into a full audit.Guidelines for establishing context before an audit.
Perform a comprehensive on-chain security audit of a deployed MultiversX smart contract. Use when reviewing a contract's security posture, permissions, state, and economic safety without source code.
Read on-chain state in MultiversX smart contracts. Use when accessing caller info, account balances, block timestamps, ESDT token metadata, local roles, code metadata, or any data from self.blockchain().
Gas-optimized cache patterns for MultiversX smart contracts using Drop-based write-back caches. Use when building contracts that read/write multiple storage values per transaction, DeFi protocols, or any gas-sensitive contract.
Identify ambiguous requirements and ask targeted clarifying questions for MultiversX development. Use when user requests are vague, missing technical constraints, or have conflicting requirements.
Comprehensive code analysis toolkit for MultiversX smart contracts. Covers differential review (version comparison, upgrade safety), fix verification (validate patches, regression testing), and variant analysis (find similar bugs across codebase). Use when reviewing PRs, verifying security patches, or hunting for bug variants.