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 posts, group updates, and quick briefs. Use this skill when users want an OpenClaw research copilot for daily alpha scanning with SkillPay billing hooks.
Best use case
alpha-copilot-skill is best used when you need a repeatable AI agent workflow instead of a one-off prompt. It is especially useful for teams working in multi. Generate a daily priority leaderboard for 5 crypto tokens, with per-token fundamentals, liquidity, and risk summaries plus ready-to-publish drafts for X posts, group updates, and quick briefs. Use this skill when users want an OpenClaw research copilot for daily alpha scanning with SkillPay billing hooks.
Generate a daily priority leaderboard for 5 crypto tokens, with per-token fundamentals, liquidity, and risk summaries plus ready-to-publish drafts for X posts, group updates, and quick briefs. Use this skill when users want an OpenClaw research copilot for daily alpha scanning with SkillPay billing hooks.
Users should expect a more consistent workflow output, faster repeated execution, and less time spent rewriting prompts from scratch.
Practical example
Example input
Use the "alpha-copilot-skill" skill to help with this workflow task. Context: Generate a daily priority leaderboard for 5 crypto tokens, with per-token fundamentals, liquidity, and risk summaries plus ready-to-publish drafts for X posts, group updates, and quick briefs. Use this skill when users want an OpenClaw research copilot for daily alpha scanning with SkillPay billing hooks.
Example output
A structured workflow result with clearer steps, more consistent formatting, and an output that is easier to reuse in the next run.
When to use this skill
- Use this skill when you want a reusable workflow rather than writing the same prompt again and again.
When not to use this skill
- Do not use this when you only need a one-off answer and do not need a reusable workflow.
- Do not use it if you cannot install or maintain the related files, repository context, or supporting tools.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/alpha-copilot-skill/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How alpha-copilot-skill Compares
| Feature / Agent | alpha-copilot-skill | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Generate a daily priority leaderboard for 5 crypto tokens, with per-token fundamentals, liquidity, and risk summaries plus ready-to-publish drafts for X posts, group updates, and quick briefs. Use this skill when users want an OpenClaw research copilot for daily alpha scanning with SkillPay billing hooks.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
Best AI Skills for ChatGPT
Find the best AI skills to adapt into ChatGPT workflows for research, writing, summarization, planning, and repeatable assistant tasks.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
SKILL.md Source
# 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. 1. 拉取 Binance Web3 的多个榜单视图(`trending`、`top_search`、`alpha`)。 2. 合并重复上榜的 token,生成候选池。 3. 补充 token 元数据与审计信息。 4. 计算今日优先级评分。 5. 输出 JSON 或 Markdown,并在成功执行 `rank` 后接入 SkillPay 计费。 ## Commands / 命令 Run from the skill root: 在 skill 根目录执行: ```bash 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`. 整份报告还包含 `leaderboard`、`top_tokens`、`summary` 和 `generated_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`(可选,`skillpay` 或 `noop`) - `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_PROXY`、`HTTPS_PROXY`、`ALL_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_zh`、`summary.message_en`、`summary.suggestions_zh`、`summary.suggestions_en`。
Related Skills
alphashop-text
AlphaShop(遨虾)文本处理 API 工具集。支持3个接口:大模型文本翻译、 生成商品多语言卖点、生成商品多语言标题。 触发场景:翻译文本、文字翻译、多语言翻译、生成卖点、商品卖点、 多语言卖点、生成标题、商品标题、多语言标题、SEO标题、 AlphaShop文本、遨虾文本处理。
alphashop-sel-product-search
商品搜索API SKILL:通过关键词搜索发现Amazon/TikTok平台商品。 支持价格、销量、评分、上架时间等多维度筛选条件。 通过 AlphaShop REST API 调用遨虾AI选品系统的商品搜索服务。
alphashop-sel-newproduct
AlphaShop新品选品SKILL:基于关键词和商品筛选条件生成深度市场分析和新品推荐报告。 支持Amazon和TikTok平台的跨境电商选品,提供市场评级、竞争分析、新品推荐、热销品对比等功能。
alphashop-image
AlphaShop(遨虾)图像处理 API 工具集。支持11个接口:图片翻译、图片翻译PRO、 图片高清放大、图片主题抠图、图片元素识别、图片元素智能消除、图像裁剪、 虚拟试衣(创建+查询)、模特换肤(创建+查询)。 触发场景:图片翻译、翻译图片文字、放大图片、高清放大、抠图、去背景、 检测水印/Logo/文字、消除水印、去牛皮癣、裁剪图片、虚拟试衣、AI试衣、 模特换肤、换模特、AlphaShop图像、遨虾图片处理。
alphaclaw
AlphaClaw 是 SkillHub 技能商店的 CLI 工具,用于搜索、安装、发布和管理 Claude Code 技能。支持 AK/SK 登录、关键词搜索技能、一键安装/发布技能包、收藏和评论等完整功能。
Meeting Brief Copilot
Turn people, companies, agendas, notes, and email threads into consulting-style meeting briefs, sharp questions, follow-up emails, and action items.
Binance Alpha Explorer
Binance Alpha new coin launch detector. Uses WebSocket to monitor !miniTicker@arr stream and detects new trading pairs immediately when they appear. Maintains known symbols set in memory and triggers alert for new symbols with valid opening price.
polymarket-alpha-suite
6 institutional-grade Polymarket trading tools. NegRisk arbitrage (100% win rate), latency arb, BTC scalping, alpha scanner, universe scanner, edge detection. Battle-tested on 8,347 signals. No Python required.
base-alpha-scanner
Real-time Base chain alpha intelligence for ZHAO (CryptoZhaoX). Use when scanning Base memecoins for second-wave setups or early gem launches; checking GMGN smart money flows; analyzing holder distribution for a Base token; scanning Clanker or Bankr.fun for high-quality narrative token deployments; monitoring VIRTUAL Protocol AI agent launches; running the AI narrative scanner on Base; generating trade alerts on Base memecoins or mainstream assets (BTC/ETH/UNI); any on-chain analysis task on Base chain.
alpha-pulse — A股次日短线收益最大化信号引擎
> 🤖 由 Jarvis 构建 | 专为 T+1 短线交易设计 | 每日收盘后自动生成 30 只高潜力标的
---
name: article-factory-wechat
humanizer
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.