🎯

multiversx-clarification-expert

🎯Skill

from multiversx/mx-ai-skills

VibeIndex|
What it does

Clarifies MultiversX development requirements by asking targeted, specific questions to resolve ambiguities, prevent misunderstandings, and guide precise technical implementation.

πŸ“¦

Part of

multiversx/mx-ai-skills(8 items)

multiversx-clarification-expert

Installation

npxRun with npx
npx openskills install multiversx/mx-ai-skills
Quick InstallInstall with npx
npx skills install multiversx/mx-ai-skills
npxRun with npx
npx openskills install multiversx/mx-ai-skills -g
git cloneClone repository
git clone https://github.com/multiversx/mx-ai-skills.git .ai-skills
πŸ“– Extracted from docs: multiversx/mx-ai-skills
4Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Identify ambiguous requirements and ask targeted clarifying questions for MultiversX development. Use when user requests are vague, missing technical constraints, or have conflicting requirements.

Overview

# Clarification Expert

Identify ambiguity in user requests and ask targeted questions to unblock MultiversX development or auditing tasks. This skill prevents wasted effort from incorrect assumptions.

When to Use

  • User request is vague (e.g., "Make it secure")
  • Missing technical constraints (e.g., "Add a token" without specifying standard)
  • Conflicting requirements that need resolution
  • Multiple valid implementation approaches exist
  • Security implications require explicit user decisions

Questioning Guidelines

1. Be Specific

Never ask open-ended questions. Always offer concrete choices.

Bad:

> "How should the token work?"

Good:

> "Should the token be:

> 1. A standard Fungible ESDT (simple transfers, 18 decimals)

> 2. A Semi-Fungible Token (SFT) with quantity per nonce

> 3. A Meta-ESDT with custom attributes

>

> If unsure, I recommend option 1 for simplicity."

2. Batch Related Questions

Group questions by topic to minimize back-and-forth.

Example:

> Before implementing the staking module, I need to clarify:

>

> Token Configuration:

> 1. Which token can be staked? (specific token ID or any ESDT?)

> 2. Is there a minimum stake amount?

>

> Reward Mechanism:

> 3. Fixed APY or dynamic based on total staked?

> 4. Reward distribution: claim-based or auto-compound?

>

> Access Control:

> 5. Can anyone stake, or only whitelisted addresses?

3. Propose Sensible Defaults

Always offer a recommended option when the user may not have strong preferences.

Example:

> "For the admin storage, I recommend using SingleValueMapper instead of MapMapper to save gas since you only need one admin. Shall I proceed with that approach?"

4. Explain Trade-offs

When choices have significant implications, explain the consequences.

Example:

> "For storing user balances, there are two approaches:

>

> Option A: SingleValueMapper with address parameter

> - More gas efficient for individual lookups

> - Cannot iterate over all users

>

> Option B: MapMapper

> - Can iterate over all users (useful for airdrops)

> - Higher gas cost (4N+1 storage slots)

>

> Which user enumeration requirement do you have?"

Analysis Categories

1. Scope Definition

| Question | Why It Matters |

|----------|----------------|

| Full audit or specific module? | Determines depth vs breadth |

| New code or upgrade review? | Upgrade reviews need storage migration focus |

| Time-boxed or thorough? | Sets expectation for coverage |

2. Environment Context

| Question | Why It Matters |

|----------|----------------|

| Mainnet, Devnet, or Sovereign Chain? | Different security requirements |

| Existing deployment or new? | Upgrade compatibility concerns |

| Integration with other contracts? | Cross-contract interaction risks |

3. Risk Profile

| Question | Why It Matters |

|----------|----------------|

| TVL expectations? | High value = higher attacker incentive |

| User base: public or restricted? | Public = larger attack surface |

| Upgradeable or immutable? | Affects fix deployment strategy |

4. Technical Stack

| Question | Why It Matters |

|----------|----------------|

| Standard multiversx-sc or custom modules? | Custom code needs deeper review |

| Any unsafe blocks? | Requires manual memory safety verification |

| External dependencies? | Supply chain risk assessment |

MultiversX-Specific Clarifications

Token Standards

```

When user says "add a token", clarify:

  • Fungible ESDT (standard fungible token)
  • Non-Fungible Token (NFT) - unique items
  • Semi-Fungible Token (SFT) - multiple of same nonce
  • Meta-ESDT - fungible with metadata

```

Storage Patterns

```

When user says "store user data", clarify:

  • Per-user data: SingleValueMapper with address key
  • Enumerable users: MapMapper or SetMapper
  • Ordered data: VecMapper or LinkedListMapper
  • Unique items: UnorderedSetMapper

```

Access Control

```

When user says "admin only", clarify:

  • Single owner (blockchain owner)
  • Single admin (stored address)
  • Multi-sig requirement
  • Role-based (multiple permission levels)
  • Time-locked operations

```

Question Templates

For New Feature Requests

> "To implement [FEATURE], I need to understand:

> 1. [CRITICAL_DECISION_1]

> 2. [CRITICAL_DECISION_2]

>

> My recommendation is [DEFAULT] because [REASON]. Should I proceed with this approach?"

For Bug Reports

> "To fix this issue, I need to clarify:

> 1. Expected behavior: [WHAT_SHOULD_HAPPEN]

> 2. Current behavior: [WHAT_HAPPENS_NOW]

> 3. Reproduction steps: [HOW_TO_TRIGGER]

>

> Can you confirm these details?"

For Security Reviews

> "Before auditing [CONTRACT], please confirm:

> 1. Threat model: Who are the trusted parties?

> 2. Invariants: What properties must always hold?

> 3. Known risks: Are there accepted trade-offs?

>

> This helps me focus on relevant attack vectors."

Anti-Patterns to Avoid

  • Don't assume: If something could go two ways, ask
  • Don't ask obvious questions: "Is security important?" - always yes
  • Don't delay indefinitely: If no response, state assumptions and proceed
  • Don't ask one question at a time: Batch related questions together
  • Don't use jargon without explanation: Clarify technical terms for non-experts