mantle

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Skills

技能

skills/
contains one directory per Mantle-focused agent skill. Each skill combines a primary workflow in
SKILL.md
with local references or assets so the runtime can ground answers in repository data instead of relying only on model memory.
skills/
目录下每个子目录对应一个专注于Mantle的Agent技能。每个技能将
SKILL.md
中的核心工作流与本地参考资料或资产相结合,这样运行时可以基于仓库数据生成答案,而不仅仅依赖模型记忆。

Directory Convention

目录规范

  • skills/<skill-name>/SKILL.md
    : trigger conditions, workflow, guardrails, and output format
  • skills/<skill-name>/agents/openai.yaml
    : runtime-facing metadata
  • skills/<skill-name>/references/
    : playbooks, policies, templates, and supporting notes
  • skills/<skill-name>/assets/
    : machine-readable local data used by the skill
  • skills/<skill-name>/SKILL.md
    :触发条件、工作流、防护规则和输出格式
  • skills/<skill-name>/agents/openai.yaml
    :面向运行时的元数据
  • skills/<skill-name>/references/
    :操作手册、策略、模板和辅助说明
  • skills/<skill-name>/assets/
    :技能使用的机器可读本地数据

Skill Catalog

技能目录

Onboarding and Reference

入门与参考

SkillRole
mantle-network-primer
Clarifies Mantle fundamentals such as MNT gas, chain IDs, official endpoints, and inclusion vs settlement
技能职责
mantle-network-primer
阐明Mantle的基础知识,例如MNT gas、链ID、官方端点以及交易包含与结算的区别

Registry and Safety Gates

注册表与安全防护

SkillRole
mantle-address-registry-navigator
Resolves verified Mantle addresses and blocks unsafe address guessing
mantle-risk-evaluator
Returns
pass
,
warn
, or
block
verdicts for state-changing intents
mantle-portfolio-analyst
Inspects balances, allowances, and spender exposure with read-only data
技能职责
mantle-address-registry-navigator
解析已验证的Mantle地址,阻止不安全的地址猜测行为
mantle-risk-evaluator
针对状态变更意图返回
pass
(通过)、
warn
(警告)或
block
(阻止)的判定结果
mantle-portfolio-analyst
使用只读数据检查余额、授权额度和支出方风险暴露情况

Analytics and Diagnostics

数据分析与诊断

SkillRole
mantle-data-indexer
Retrieves historical wallet activity and time-windowed Mantle analytics
mantle-readonly-debugger
Triages RPC failures, quote reverts, and ambiguous read-path behavior
mantle-tx-simulator
Prepares external simulation handoffs and WYSIWYS summaries
技能职责
mantle-data-indexer
检索历史钱包活动和特定时间窗口内的Mantle数据分析结果
mantle-readonly-debugger
排查RPC失败、报价回退和模糊读取路径的行为问题
mantle-tx-simulator
准备外部模拟交接和所见即所得(WYSIWYS)摘要

DeFi Planning

DeFi规划

SkillRole
mantle-defi-operator
Orchestrates venue discovery, comparison, and execution-ready DeFi planning
技能职责
mantle-defi-operator
协调DeFi场所发现、对比和可执行的DeFi规划工作

Smart Contract Lifecycle

智能合约生命周期

SkillRole
mantle-smart-contract-developer
Frames Mantle-specific contract design and deployment-readiness decisions
mantle-smart-contract-deployer
Prepares deployment, verification, and external signer handoff steps
技能职责
mantle-smart-contract-developer
制定针对Mantle的特定合约设计和部署就绪决策
mantle-smart-contract-deployer
准备部署、验证和外部签名者交接步骤

How to Pick a Skill

如何选择技能

  • Start with the narrowest skill that matches the task.
  • Use
    mantle-network-primer
    when Mantle-specific assumptions need to be checked before execution work.
  • Use
    mantle-defi-operator
    only when the request genuinely spans discovery, address verification, risk evidence, and execution planning.
  • Split contract work between
    mantle-smart-contract-developer
    and
    mantle-smart-contract-deployer
    rather than treating deployment as part of design.
  • 从与任务最匹配的最细分技能开始。
  • 当执行工作前需要确认Mantle相关假设时,使用
    mantle-network-primer
  • 仅当请求真正涵盖发现、地址验证、风险评估和执行规划时,才使用
    mantle-defi-operator
  • 将合约工作拆分为
    mantle-smart-contract-developer
    mantle-smart-contract-deployer
    ,不要将部署视为设计的一部分。