一键导入
mvx-consult-docs
Access the global MultiversX documentation library to answer technical questions or verify implementation details.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Access the global MultiversX documentation library to answer technical questions or verify implementation details.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.
| name | mvx-consult-docs |
| description | Access the global MultiversX documentation library to answer technical questions or verify implementation details. |
You have access to a comprehensive library of MultiversX documentation, standards, and best practices stored in this repository at:
docs/
Note: Agents must resolve this path relative to the repository root (current workspace). If the agent runs outside this repo or without filesystem access, ensure the repo (including the docs/ directory) is mounted or provided in context.
Use standard file search tools to find relevant information within the documentation directory.
Use find_by_name, grep_search, or your environment’s search to locate relevant documents.
# Example: Find docs related to ESDT tokens (repo-relative)
find_by_name(SearchDirectory="docs/", Pattern="*esdt*")
# Example: Glob pattern if your tool uses globs
# docs/**/*esdt*.md
# Example: Search for "async call" inside the docs
grep_search(SearchPath="docs/", Query="async call")
Once you have identified relevant files, use read_browser_url (if it was a URL) or simply view_file to read the markdown content.
view_file(AbsolutePath="docs/advanced_sc.md")
If the local repository docs are not available in your runtime or appear outdated, consult the official MultiversX documentation site:
Examples:
# Open a specific page
read_browser_url(URL="https://docs.multiversx.com/developers/sc-overview/")
Common direct links:
Searching the docs site: The official site uses client-side search without a URL query parameter. To search, use an external search engine with a site filter, for example:
site:docs.multiversx.com async call
site:docs.multiversx.com annotations payable
Note: Online access requires network permissions in your agent environment. Prefer local docs for reproducibility; use the official site (and site-filtered web search) when local docs are missing or stale.