一键导入
menu-router
VeriVerse TG Bot 入口路由。显示 inline keyboard 菜单, 路由到 VeriVerse Agent 发射台功能或 VeriTask 链上验证。 触发: /start, greeting, 你好, hello, menu, 菜单, /veritask, /veri
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
VeriVerse TG Bot 入口路由。显示 inline keyboard 菜单, 路由到 VeriVerse Agent 发射台功能或 VeriTask 链上验证。 触发: /start, greeting, 你好, hello, menu, 菜单, /veritask, /veri
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
P3 挑战与验证主编排。触发词:挑战 Agent、challenge agent、发起挑战、验证 Agent 能力、/challenge。 流程:Step0 余额预检(必要时换币)-> Step1 读链上与本地描述 -> Step2 Pro 出题 -> Step3 Worker 执行 -> Step4 可信层+DAO -> Step5 updateTrust 上链。
触发 Agent 毕业结算(P4):单笔交易完成 Semaphore 授权校验、Escrow settle、SBT 铸造与状态同步。 触发: 毕业, graduate, /graduate, 结算毕业, 铸造SBT
投资 AI Agent。Backer 向 VeriEscrow 合约存入 USDT,支持 Agent 运营。 触发: 投资, invest, 投 USDT, 支持 Agent, /invest
发射 AI Agent。创建 OKX Agentic Wallet + 注册到 VTRegistry 链上合约。 触发: 发射, launch, 注册Agent, 发射一个Agent, /launch
M4 路由证据层。只做 swap quote 的路由来源提取与 Uniswap 命中证据,不执行真实换币。 触发词:Uniswap 证据、route evidence、路由来源、这条报价是不是走了 Uniswap。
This skill should be used when the user asks to 'verify a proof', 'check ProofBundle', 'validate data integrity', mentions '验证证明', '检查ProofBundle', '数据完整性', 'TEE验证', 'ZK验证', 'proof valid', or when the Client receives a ProofBundle from Worker in a C2C flow and needs to validate cryptographic integrity. This skill is the Client-side trust verification layer of VeriTask: it ensures data has not been tampered with and the execution environment is trustworthy. Do NOT use when the user wants to generate proofs (use proof-generator) or make payments (use okx-x402-payer).
基于 SOC 职业分类
| name | menu-router |
| author | VeriVerse |
| version | 1.0.0 |
| license | MIT |
| description | VeriVerse TG Bot 入口路由。显示 inline keyboard 菜单, 路由到 VeriVerse Agent 发射台功能或 VeriTask 链上验证。 触发: /start, greeting, 你好, hello, menu, 菜单, /veritask, /veri |
| capabilities | ["inline_keyboard_menu","gateway_config_patch_routing","message_tool"] |
| permissions | ["message","gateway"] |
| examples | [{"input":"/start","output":"Use message tool to send Level 1 inline keyboard"},{"input":"/veritask","output":"gateway config.patch → bind veritask agent"}] |
VeriVerse 统一 TG Bot 入口。显示 inline keyboard 菜单,
通过 gateway tool 的 config.patch 动态路由到子 agent。
Do NOT include buttons as JSON text in your reply.
To display inline keyboard buttons in Telegram, you MUST use the message tool:
{
"action": "send",
"channel": "telegram",
"message": "menu text here",
"buttons": [[{"text": "Button 1", "callback_data": "value1"}]]
}
⚠️ IMPORTANT: When buttons are included, use action: "send" with buttons.
Call the message tool with:
[[{"text": "🚀 VeriVerse Agent 发射台", "callback_data": "veriverse"}, {"text": "🔗 VeriTask 链上验证", "callback_data": "veritask"}]]When you receive callback_data: veriverse:
When you receive callback_data: veritask:
session_status → extract <USER_ID> from session keygateway tool:{
"action": "config.patch",
"raw": "{ bindings: [ { agentId: \"veritask\", match: { channel: \"telegram\", peer: { kind: \"direct\", id: \"<USER_ID>\" } } }, { agentId: \"veriverse\", match: { channel: \"telegram\" } } ] }",
"note": "已切换到 VeriTask 🔗 输入 /veri 可返回主菜单"
}
当用户直接发送以下命令意图时,不得只回复解释文本,必须调用对应技能流程:
挑战 Agent #<id> / challenge agent #<id>
challenge-orchestrator。投资 Agent #<id> / invest agent #<id>
invest-agent。发射 Agent / launch agent
launch-agent。When user sends /veri, call gateway tool to remove peer binding:
{
"action": "config.patch",
"raw": "{ bindings: [ { agentId: \"veriverse\", match: { channel: \"telegram\" } } ] }",
"note": "已返回 VeriVerse 主菜单 🌐 发送任意消息查看菜单"
}
/start, greeting, or ambiguous input → ALWAYS use message tool with Level 1 buttonscallback_data: veriverse → respond with VeriVerse commands, stay in current agentcallback_data: veritask or /veritask → session_status then gateway config.patch/veri → gateway config.patch to remove peer binding, return to veriversenote to user