← Back to Skills Marketplace
richard7463

币安 AI 交易员驾照局

by richard7463 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
174
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install binance-agent-license-bureau
Description
当用户想判断一个 AI 交易员在 Binance 上是否配拿到交易执照、该拿到哪一级、为什么会被降级时使用。
README (SKILL.md)

币安 AI 交易员驾照局

这个 skill 不负责替用户找交易机会,它负责先回答一个更前置的问题:

这台 AI 交易员,现在到底有没有资格碰 Binance 账户?

它会把一台 AI 交易员放进一套“拿证上岗”的制度里,先检查:

  • 候选币池有没有资格进入实盘范围
  • 策略纪律够不够清楚
  • 用户今天是不是处于 FOMO / 连亏 / 睡眠不足等高风险状态
  • 当前应该拿到哪一级执照
  • 如果要上岗,还能碰到什么程度

输出不是普通的风险提示,而是一张完整的“执照局审理结果”:

  • 当前等级:L0 / L1 / L2 / L3 / L4
  • 执照板裁决
  • 候选币实盘池 / 观察池 / 禁入池
  • 影子考场成绩
  • FOMO 红绿灯
  • 运行时风控规则
  • 公开台账
  • 分享图链接

公开接口

  • POST https://binance-agent-license-bureau.vercel.app/api/license-bureau
  • GET https://binance-agent-license-bureau.vercel.app/api/license-bureau/share-image?payload=...

什么时候用

当用户有这些需求时,优先使用这个 skill:

  • 想判断一台 AI 交易员是否应该被允许接触 Binance 账户
  • 想知道某个 Agent 今天应该是只读、实习、小额实盘还是直接冷静期
  • 想先治理交易 Agent,而不是直接让它下单
  • 想把“连亏、FOMO、睡眠不足”这类人类状态一起纳入交易权限判断
  • 想生成一张适合分享的执照局结果图

输入字段

调用接口时,建议尽量提供这些字段:

  • agentName
  • strategy
  • candidateSymbols
  • desiredLeverage
  • cadence
  • autonomyMode
  • lossStreak
  • sleepHours
  • fomoLevel
  • stateNote

其中最重要的是:

  • strategy:这台 Agent 打算怎么交易
  • candidateSymbols:候选交易标的
  • lossStreak / sleepHours / fomoLevel / stateNote:用户今天的交易状态

推荐调用方式

curl -sS -X POST https://binance-agent-license-bureau.vercel.app/api/license-bureau \
  -H 'Content-Type: application/json' \
  -d '{
    "agentName": "Night Fury",
    "strategy": "日内抓热点币,只要 1h 动量强就试单,分批进场,若失效立即止损。允许半自动执行,但大仓位必须人工确认。",
    "candidateSymbols": "CAKE, MUBARAK, PEPE",
    "desiredLeverage": 8,
    "cadence": "INTRADAY",
    "autonomyMode": "SEMI_AUTO",
    "lossStreak": 2,
    "sleepHours": 5,
    "fomoLevel": 7,
    "stateNote": "昨天两笔没做好,今天有点想把节奏追回来,但我知道不能乱来。"
  }'

返回结果里最值得看的字段

  • currentLevel
  • boardDecision
  • headline
  • summary
  • nextPromotion
  • quotas
  • candidateAssessments
  • shadowExam
  • humanGate
  • stateMachine
  • runtimeRules
  • ledger
  • operatorMemo
  • squareDraft

输出建议

回答用户时,优先按这个顺序组织:

  1. 先说当前执照等级和一句话裁决
  2. 再说为什么被升证、降级或者吊销
  3. 再讲候选币池、影子考场、人类状态闸门
  4. 最后补运行时风控和下一步怎么恢复

如果用户要“最简版”,只保留:

  • 当前等级
  • 一句话结论
  • 三个最重要的原因
  • 下一步建议

如果用户要“适合发帖的版本”,优先使用:

  • headline
  • summary
  • operatorMemo
  • squareDraft

分享图

当用户要分享图时,使用:

  • agentName
  • currentLevel
  • headline
  • boardDecision
  • summary

序列化后拼到:

https://binance-agent-license-bureau.vercel.app/api/license-bureau/share-image?payload=\x3Curlencoded-json>

注意事项

  • 这个 skill 使用的是 Binance 公开数据和本产品的治理逻辑,不代表读取了用户私有账户
  • 它的重点不是预测市场,而是治理一台 AI 交易员的权限边界
  • 如果接口失败,应明确提示稍后重试,不要自己编造执照结论
Usage Guidance
在安装或使用前请考虑: - 这是一个将你提供的数据(策略、候选币、及尤其是行为/状态信息如 sleepHours、fomoLevel、stateNote 等)发送到第三方 API 的服务;不要在这些字段中包含私钥、账号密码或任何敏感凭据。 - 向 share-image 的 GET 请求把序列化数据放在 URL 查询中,可能会被服务器或代理的日志记录;避免在 payload 中放入敏感信息。 - 如果你信任该第三方(检查其隐私策略、是否有开源或可信来源),可按文档调用;否则先用匿名或测试数据尝试,确认返回格式与失败处理逻辑(SKILL.md 建议在接口失败时不自行编造结论)。 - 关注可用性和可审计性:询问提供方是否保留审计日志、数据保留期限和访问控制,以决定是否在生产场景中使用。
Capability Analysis
Type: OpenClaw Skill Name: binance-agent-license-bureau Version: 1.0.0 The skill functions as a risk-assessment and governance tool for AI trading agents, evaluating strategies and user states (e.g., FOMO, sleep) to assign a 'license level.' It interacts with a Vercel-hosted API (binance-agent-license-bureau.vercel.app) to process these assessments. No evidence of credential theft, local code execution, or malicious prompt injection was found; the tool specifically avoids requesting Binance API keys and focuses on governance logic rather than direct trade execution.
Capability Assessment
Purpose & Capability
技能名称与描述(判断 AI 交易员是否应允许接触 Binance)与 SKILL.md 中列出的 API 调用、输入字段和输出结构一致。它没有请求与功能不相关的环境变量或外部二进制,所需资源与其目的匹配。
Instruction Scope
SKILL.md 明确指示将 JSON 数据 POST 到 https://binance-agent-license-bureau.vercel.app/api/license-bureau,并通过带有 urlencoded payload 的 GET 生成分享图。该行为会把用户提供的交易策略和敏感性较高的“状态”字段(例如 sleepHours、fomoLevel、stateNote、lossStreak 等)传给第三方服务;SKILL.md 声称仅使用 Binance 公开数据且不读取用户私有账户,但没有技术保证或隶属说明。尤其要注意 share-image 把序列化数据放到 URL 查询参数里,这会更容易被服务器日志或中间件记录。
Install Mechanism
这是一个 instruction-only 的 skill(无安装规范、无代码文件执行),因此不会在本地写入或执行额外二进制,安装风险低。
Credentials
技能未请求任何环境变量、凭证或配置路径,所需权限与描述相称。唯一需要的能力是向外部网络主机发出请求,这与其作为外部审理服务的角色一致。
Persistence & Privilege
flags 显示 always: false,user-invocable 且允许隐式调用(平台默认)。该技能不会请求长期驻留或修改其他技能配置,没有异常持久化或越权请求。
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install binance-agent-license-bureau
  3. After installation, invoke the skill by name or use /binance-agent-license-bureau
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug binance-agent-license-bureau
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 币安 AI 交易员驾照局?

当用户想判断一个 AI 交易员在 Binance 上是否配拿到交易执照、该拿到哪一级、为什么会被降级时使用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 174 downloads so far.

How do I install 币安 AI 交易员驾照局?

Run "/install binance-agent-license-bureau" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 币安 AI 交易员驾照局 free?

Yes, 币安 AI 交易员驾照局 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 币安 AI 交易员驾照局 support?

币安 AI 交易员驾照局 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 币安 AI 交易员驾照局?

It is built and maintained by richard7463 (@richard7463); the current version is v1.0.0.

💬 Comments