kirkluokun/awesome-a-stock-openclawskills

capture-alphapai-unified

Alpha派默认投研技能 — 融合官方API(问答/RAG/Agent)和Web版(路演/点评/热门话题)。适合一般性投研问题、?

First seen Apr 3, 2026

Installation

$ npx skills add kirkluokun/awesome-a-stock-openclawskills --skill capture-alphapai-unified

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kirkluokun/awesome-a-stock-openclawskills · top by installs.

npx skills add kirkluokun/awesome-a-stock-openclawskills

Browse all from kirkluokun/awesome-a-stock-openclawskills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 65
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version2.1
Declared agents clawdbot
More metadata
version
2.1
openclaw
{"requires":{"bins":["python3"]},"primaryEnv":"ALPHAPAI_API_KEY","emoji":"📊","install":{"0":"id: \"setup\"","kind":"bash","label":"Setup dependencies","script":"bash {skillDir}\/scripts\/setup.sh"}}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 6,553 B
  • docs SUMMARY.md 298 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 34 installs

SKILL.md

AlphaPai Unified — 默认投研技能

融合官方API(问答/RAG/Agent)和Web版(路演/点评/热门话题),适合日常投研使用。

选择指南: 一般性问题 → 用本 skill(默认);大批量抓数据/获取列表 → 用 alphapai-web

功能矩阵

功能 数据源 命令
投研问答 官方API qa
数据召回(RAG) 官方API recall
公司一页纸 官方API company
业绩点评 官方API earnings
投资逻辑 官方API logic
可比公司 官方API peers
行业一页纸 官方API industry
主题选股 官方API screen
观点Challenge 官方API challenge
公告列表 官方API report
图表搜索 官方API chart
路演纪要 Web版 roadshow
点评 Web版 comment
热门话题 Web版 hot
热词 Web版 hot-word
热门报告 Web版 hot-report
热门股票 Web版 hot-stock
综合搜索 Web版 search
用户信息 Web版 user-info

认证配置

优先级:

  1. 环境变量 ALPHAPAIAPIKEY(推荐)
  2. 同级/上级/上上级目录 .env
  3. config.json

API Key(官方API):

export ALPHAPAI_API_KEY=your_key_here
# 或
python scripts/alphapai.py config --set-key YOUR_KEY

账号密码(Web版):

export ALPHAPAI_ACCOUNT=手机号
export ALPHAPAI_PASSWORD=密码
# 或
python scripts/alphapai.py config --set-account 手机号 --set-password 密码

API Key 可在 Alpha 派电脑端获取。账号密码用于 Web 版独有功能(路演、点评、热门话题)。


官方API命令

投研问答

python scripts/alphapai.py qa "茅台2024经营情况"
python scripts/alphapai.py qa "新能源趋势" --think      # Think模式(Wide Search)
python scripts/alphapai.py qa "近期新闻" --web-search   # 联网搜索

数据召回

python scripts/alphapai.py recall "茅台市值" --type comment,report
python scripts/alphapai.py recall "新能源" --no-cutoff   # 完整内容

数据类型: comment(点评) / report(研报) / roadShow(路演) / ann(公告) / qa(问答) / edb(时序数据)

快捷命令

# 公司一页纸
python scripts/alphapai.py company 300014.SZ:亿纬锂能

# 业绩点评(自动查询最新公告)
python scripts/alphapai.py earnings 603380.SH:易德龙

# 投资逻辑
python scripts/alphapai.py logic 300014.SZ:亿纬锂能

# 可比公司
python scripts/alphapai.py peers 002594.SZ:比亚迪

# 行业一页纸
python scripts/alphapai.py industry 白酒

# 主题选股
python scripts/alphapai.py screen "和白酒相关的公司"

# 观点Challenge
python scripts/alphapai.py challenge "小米汽车未来增长空间很大"

公告/图表

# 公告列表
python scripts/alphapai.py report 603380.SH

# 图表搜索
python scripts/alphapai.py chart "新能源车销量趋势"

Web版命令

路演纪要

# 列表
python scripts/alphapai.py roadshow --list

# 搜索
python scripts/alphapai.py roadshow --search "茅台业绩会"

# 详情(含AI摘要)
python scripts/alphapai.py roadshow --detail <纪要ID>

点评

# 推荐列表
python scripts/alphapai.py comment --list

# 搜索
python scripts/alphapai.py comment --search "茅台"

# 详情(含盈利预测)
python scripts/alphapai.py comment --detail <点评ID>

热门话题 / 热门报告 / 热门股票

# 热门话题列表
python scripts/alphapai.py hot

# 话题详情
python scripts/alphapai.py hot --detail <话题ID>

# 热词
python scripts/alphapai.py hot-word

# 热门报告
python scripts/alphapai.py hot-report

# 热门股票(公募/私募/险资持仓)
python scripts/alphapai.py hot-stock

综合搜索 / 用户信息

# 综合搜索(路演+公众号+股票一次全返回)
python scripts/alphapai.py search "贵州茅台"

# 用户信息
python scripts/alphapai.py user-info

输出原则

Alpha派返回内容由专业投研模型生成,直接呈现原始输出,不做二次加工

  • 禁止总结或压缩
  • 禁止截断
  • 保留原始 Markdown 格式
  • 引用来源随正文输出

文件结构

capture-alphapai-unified/
├── SKILL.md
├── scripts/
│   ├── alphapai.py              # 统一入口CLI
│   ├── alphapai_client.py       # 官方API客户端
│   ├── alphapai_web_client.py   # Web版客户端
│   └── setup.sh
├── references/
│   ├── api_reference.md         # 官方API参考
│   ├── web_api_reference.md     # Web版API参考
│   └── agent_modes.md           # Agent模式详解
└── .env.example

参考文件

文件 内容
[references/apireference.md](references/apireference.md) 官方API完整字段定义
[references/webapireference.md](references/webapireference.md) Web版API参考
[references/agentmodes.md](references/agentmodes.md) 11种Agent模式详解

升级

当用户要求升级时,拉取官方安装指引并按流程执行。