← 返回 Skills 市场
2663629531

Researcher Alpha Copilot

作者 2663629531 · GitHub ↗ · v0.1.0
cross-platform ⚠ suspicious
245
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install alpha-copilot-skill
功能描述
Generate a daily priority leaderboard for 5 crypto tokens, with per-token fundamentals, liquidity, and risk summaries plus ready-to-publish drafts for X post...
使用说明 (SKILL.md)

Skill: alpha-copilot-skill

Purpose / 用途

Use this skill to produce a publishable daily research pack from Binance Web3 market signals. 用这个 skill 可以基于 Binance Web3 市场信号生成可直接发布的日报研究包。

It is designed for operators who want one fixed output:

  • 今日优先级榜单
  • 值得看的 5 个币
  • 每个币的基本面/流动性/风险摘要
  • 可直接发推文、发群、写快报的文案草稿

Workflow / 工作流

  1. Pull multiple Binance Web3 leaderboard views (trending, top_search, alpha).

  2. Merge repeated token hits into one candidate list.

  3. Enrich top candidates with token metadata and audit data.

  4. Score candidates into a daily priority ranking.

  5. Output JSON or Markdown and bill one successful rank call through SkillPay.

  6. 拉取 Binance Web3 的多个榜单视图(trendingtop_searchalpha)。

  7. 合并重复上榜的 token,生成候选池。

  8. 补充 token 元数据与审计信息。

  9. 计算今日优先级评分。

  10. 输出 JSON 或 Markdown,并在成功执行 rank 后接入 SkillPay 计费。

Commands / 命令

Run from the skill root: 在 skill 根目录执行:

python3 scripts/alpha_copilot.py rank --chain bsc --lang zh --user-id demo
python3 scripts/alpha_copilot.py rank --chain base --format markdown --limit 5 --user-id demo
python3 scripts/alpha_copilot.py rank --chain solana --skip-audit --skip-billing
python3 scripts/alpha_copilot.py health
python3 scripts/alpha_copilot.py proxy-check --chain bsc

Output Contract / 输出结构

Each ranked token includes: 每个入选币种包含:

  • symbol
  • name
  • contract_address
  • priority_score
  • priority_tier
  • fundamentals_summary
  • liquidity_summary
  • risk_summary
  • tweet_draft
  • group_draft
  • brief_draft

The report also contains leaderboard, top_tokens, summary, and generated_at_utc. 整份报告还包含 leaderboardtop_tokenssummarygenerated_at_utc

Billing Hook (SkillPay) / 计费接入

  • Bill only rank.

  • Default price comes from SKILLPAY_PRICE_USDT and should stay at 0.01.

  • Read API key from SKILLPAY_APIKEY.

  • Keep SKILLPAY_BASE_URL / SKILLPAY_CHARGE_URL overrideable so the SkillPay integration can be swapped without changing report logic.

  • Do not hard-code secrets.

  • 只对 rank 计费。

  • 默认价格来自 SKILLPAY_PRICE_USDT,默认应保持为 0.01

  • API key 从 SKILLPAY_APIKEY 读取。

  • SKILLPAY_BASE_URL / SKILLPAY_CHARGE_URL 保持可覆盖,避免把 SkillPay 接口写死进业务逻辑。

  • 不要硬编码任何密钥。

Required/Useful Env Vars / 关键环境变量

  • SKILLPAY_APIKEY (required for paid mode)

  • SKILLPAY_BILLING_MODE (optional, skillpay or noop)

  • SKILLPAY_PRICE_USDT (optional, default 0.01)

  • SKILLPAY_USER_REF (optional fallback user id)

  • BINANCE_WEB3_BASE_URL (optional, default https://web3.binance.com)

  • BINANCE_HTTP_TIMEOUT_SEC (optional, default 12)

  • ALPHA_COPILOT_PROXY_MODE (optional, auto/env/direct/custom, default auto)

  • Standard proxy env vars are supported: HTTP_PROXY, HTTPS_PROXY, ALL_PROXY and lowercase forms

  • SKILLPAY_APIKEY(付费模式必需)

  • SKILLPAY_BILLING_MODE(可选,skillpaynoop

  • SKILLPAY_PRICE_USDT(可选,默认 0.01

  • SKILLPAY_USER_REF(可选,默认用户标识)

  • BINANCE_WEB3_BASE_URL(可选,默认 https://web3.binance.com

  • BINANCE_HTTP_TIMEOUT_SEC(可选,默认 12

  • ALPHA_COPILOT_PROXY_MODE(可选,auto/env/direct/custom,默认 auto

  • 支持标准代理环境变量:HTTP_PROXYHTTPS_PROXYALL_PROXY 及其小写形式

Notes / 说明

  • This skill is for research and content generation, not auto-trading.

  • Keep wording neutral and avoid profit guarantees.

  • If audit or metadata enrichment partly fails, still return the report with unavailable fields instead of failing the whole run.

  • Recommended proxy strategy:

    • Default auto: if the user's terminal has proxy env vars, requests use them; otherwise direct access is used.
    • Use --proxy-mode direct for overseas users who do not want inherited proxy settings.
    • Use --proxy-mode custom --https-proxy ... --http-proxy ... when the caller wants the skill to use a specific proxy without changing the shell environment.
    • Use proxy-check first when a user reports connection errors; it verifies root access, rank API, metadata API, and audit API in the current network mode.
    • proxy-check also returns bilingual fields: summary.message_zh, summary.message_en, summary.suggestions_zh, summary.suggestions_en.
  • 这个 skill 用于研究与内容生成,不是自动交易工具。

  • 文案要保持中性,不要承诺收益。

  • 如果审计或元数据补充阶段部分失败,也要尽量保留报告结构,并把不可用字段标出来,而不是整份报告直接失败。

  • 推荐代理策略:

    • 默认 auto:如果用户终端里存在代理环境变量,就自动继承;否则直连。
    • 海外用户可用 --proxy-mode direct 强制直连。
    • 如果不想修改 shell 环境,可用 --proxy-mode custom --https-proxy ... --http-proxy ... 显式指定代理。
    • 用户反馈联网失败时,优先先跑 proxy-check
    • proxy-check 会返回双语字段:summary.message_zhsummary.message_ensummary.suggestions_zhsummary.suggestions_en
安全使用建议
This skill's code and README show it will contact web3.binance.com (or an overridable BINANCE_WEB3_BASE_URL) to fetch leaderboards and will call a SkillPay billing endpoint using SKILLPAY_APIKEY by default. The registry metadata did not declare these env vars — double-check before installing. Practical steps: - If you do not want automatic billing, set SKILLPAY_BILLING_MODE=noop or run with --skip-billing when supported. - Do not place sensitive global credentials in your environment unless you trust the SkillPay endpoint (default base URL is https://skillpay.me); consider using a per-skill, limited API key. - Be aware the skill inherits HTTP_PROXY/HTTPS_PROXY env vars or accepts custom proxy arguments; ensure any proxy you provide is trusted, because it will carry the skill's network traffic. - If you need increased assurance, review the full alpha_copilot.py to confirm there are no hidden network calls beyond the visible Binance and SkillPay endpoints, and run tests in an isolated environment (or with SKILLPAY_BILLING_MODE=noop) first. - The primary inconsistency is registry metadata omission of required envs; ask the publisher (or avoid installing) until metadata accurately lists SKILLPAY_APIKEY and other important env vars.
功能分析
Type: OpenClaw Skill Name: alpha-copilot-skill Version: 0.1.0 The alpha-copilot-skill is a crypto research tool designed to aggregate market signals from Binance Web3 APIs and generate formatted reports and social media drafts. The code (alpha_copilot.py, web3_client.py) implements legitimate data fetching, scoring logic, and a monetization hook via the 'SkillPay' billing service. No evidence of data exfiltration, malicious execution, or harmful prompt injection was found; the use of environment variables for API keys and proxy settings is standard practice for this type of utility.
能力评估
Purpose & Capability
The skill's stated purpose (daily top-5 token research from Binance Web3 with SkillPay billing) matches the code and SKILL.md: it calls Binance Web3 endpoints and charges via a SkillPay endpoint. However the registry metadata lists no required environment variables or primary credential, while SKILL.md and code clearly expect SKILLPAY_APIKEY (and other optional envs like BINANCE_WEB3_BASE_URL, BINANCE_HTTP_TIMEOUT_SEC, ALPHA_COPILOT_PROXY_MODE). The missing declaration in the registry is an incoherence that could confuse users about what secrets/vars are needed.
Instruction Scope
SKILL.md and the code limit actions to fetching Binance Web3 APIs (rank, token meta, audit), composing reports, and calling a billing endpoint. They do not instruct reading unrelated local files. One noteworthy behavior: the client honors/pulls standard proxy env vars (HTTP_PROXY/HTTPS_PROXY/ALL_PROXY) and supports a custom proxy mode (including passing proxies explicitly). That means network requests may be routed via inherited or provided proxies (which can carry credentials) — expected for networked code but worth being aware of.
Install Mechanism
There is no install spec (instruction-only plus packaged Python scripts). requirements.txt only lists 'requests'. No downloaded archives or remote installers were used. The packaging is proportionate.
Credentials
The runtime requires or uses a small, focused set of environment variables (SKILLPAY_APIKEY for billing in default 'skillpay' mode; optional SKILLPAY_* overrides; BINANCE_WEB3_BASE_URL and timeout; proxy-related envs). Those are proportionate to the stated functionality, but the registry metadata omitted them. Also note: the billing client defaults to 'skillpay' mode and will raise an error if SKILLPAY_APIKEY is not present (unless SKILLPAY_BILLING_MODE=noop), which can cause surprising failures. Requesting a billing API key is expected, but it should have been declared in the registry manifest.
Persistence & Privilege
The skill does not request always: true and does not modify other skills or system-wide agent settings. It runs as an on-demand skill and does not claim persistent elevated privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install alpha-copilot-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /alpha-copilot-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
Initial public release
元数据
Slug alpha-copilot-skill
版本 0.1.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Researcher Alpha Copilot 是什么?

Generate a daily priority leaderboard for 5 crypto tokens, with per-token fundamentals, liquidity, and risk summaries plus ready-to-publish drafts for X post... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 245 次。

如何安装 Researcher Alpha Copilot?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install alpha-copilot-skill」即可一键安装,无需额外配置。

Researcher Alpha Copilot 是免费的吗?

是的,Researcher Alpha Copilot 完全免费(开源免费),可自由下载、安装和使用。

Researcher Alpha Copilot 支持哪些平台?

Researcher Alpha Copilot 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Researcher Alpha Copilot?

由 2663629531(@2663629531)开发并维护,当前版本 v0.1.0。

💬 留言讨论