skills/stock-financials-analysis/SKILL.md
Pulls 3-year financial statements (income, balance sheet, cash flow) for a single stock and produces a deep Chinese-language report, OR compares multiple peers head-to-head. Use whenever the user asks to 分析/解读/看一下 a company's 财报/财务/营收/利润/资产负债/现金流, asks for 三年/近三年/最近几年 financials, or wants to compare multiple stocks 对比/PK/比较 on financial metrics. Triggers on phrases like "帮我看下 X 的财报"、"分析 X 这三年的财务"、"X 和 Y 哪个更好"、"对比 A B C 三家". Covers US/HK/KR/A-share stocks via stockanalysis.com.
npx skillsauth add liulixiang1988/agent-skills stock-financials-analysisInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
把一只股票的近三年三大报表浓缩成"数据表 + 关键判断 + 风险提示"的中文报告;或把 2-4 只同业股票放在一起做横向对比。
用户的请求落入以下两种模式之一:
| 模式 | 用户提问示例 | 走哪个流程 | |---|---|---| | 单股深度分析 | "分析美光这三年的财务"、"帮我看下腾讯的财报"、"NVDA 近三年怎么样" | 走 §单股流程 | | 同业对比 | "对比三星和 SK 海力士"、"美光、海力士、三星谁更强"、"BABA 和 PDD 比较" | 走 §对比流程 |
如果用户先做了单股分析、再说"对比一下 X 和 Y",继承上一次的主标的作为对比的第一家,再加上用户新提到的对手。
用户给的可能是中文名("腾讯")、英文简称("NVDA")、或带前缀代码("US.MU")。先解析为:
不确定时用 AskUserQuestion 让用户确认,不要瞎猜(特别是中港同名股、ADR 与原股的关系)。
URL 拼接规则与各市场 ticker 写法详见 references/markets.md。
必须用一次 message 内多个 WebFetch 并行拉取,不要串行——三个请求互相独立,串行会浪费 1-2 分钟:
WebFetch(url=「基础页+financials/」, prompt="...利润表...")
WebFetch(url=「基础页+financials/balance-sheet/」, prompt="...资产负债表...")
WebFetch(url=「基础页+financials/cash-flow-statement/」, prompt="...现金流量表...")
每个 prompt 里都要显式要求返回 fiscal year end date,避免读到的是 TTM 还是 FY 搞不清。
具体的 URL 模式、字段清单、A 股回退方案见 references/markets.md。
读 references/templates.md 的 模板 A,把数据填进去。务必保留:
报告末尾留一个 hook,邀请用户继续深挖:
"如需进一步对比同业,或拉取最近 4 个季度的季报演变,告诉我即可。"
如果用户只给了对手名字没给主题("对比三星和 SK 海力士"),自己根据上下文推断报告主题("内存三巨头三年对决"),但不要自作主张加第三、第四家——除非用户明确说"还有 X"。
每家 3 个 WebFetch,多家并行——一次 message 可以发起 6-12 个 WebFetch 调用。Claude Code 单 message 多 tool 的并行能力是这个 skill 节省时间的关键,不要嫌多。
韩股/港股/日股的报表是本币,做横向对比时统一折算为美元:
₩97.1 万亿 ≈ $694 亿)按 1 USD ≈ 1,400 KRW 折算)references/markets.md模板 B 的"投资视角的'个性'对比"那张表是核心——纯数字看不出 alpha 在哪,要把"为什么投 A 不投 B"的判断显式写出来。维度至少包括:
当对比主题集中在某个垂直市场(HBM、云计算、新能源车、电商)时,纯财务对比不够,需要补一段行业份额数据。这部分通常需要凭已有知识写,注明"行业研究报告普遍数据"。
> 仅供学习研究,不构成投资建议。references/markets.mdreferences/templates.mddevelopment
Register and verify a sandbox-hosted HTTP service through Lumina App Proxy (LuminaProxyAPI). Use when the user wants to spin up a tiny FastAPI server inside a Lumina sandbox, expose it under {appId}.{BaseDomain}, hand the resulting URL to teammates, or compare access_scope=owner vs access_scope=all behavior of the AppProxyAuthHandler. Pairs with lumina-eps-token to acquire the bearer token and create the sandbox first.
tools
Acquire and validate Lumina EPS/LuminaServiceAPI bearer tokens using the CopilotLumina eps_client.py and get-lumina-token.ts helpers. Use when the user asks about Lumina token acquisition, EPS client authentication, testing luminaserviceapi hosts, running eps_client.py, validating v1/v3 EPS routes, resolving bundled helper script paths across .agents/.claude/.copilot installs, or fixing local Bun/Python/uv environment issues for these flows.
tools
End-to-end Microsoft Connect (half-yearly performance review) drafting + inject into the Connect tool. Trigger when user mentions Connect, connect draft, 绩效盘点, Microsoft performance review, "write my connect", "draft my connect", "帮我写 connect", or asks to populate v2.msconnect.microsoft.com. Gathers evidence (ADO work items + PRs, SharePoint-authored docs via workiq, historical Connects via Playwright for style), builds a local sign-off flow chart for the user to review, then injects HTML-formatted content (with hyperlinks, nested lists, underlines) directly into the Roosterjs rich-text editor fields via simulated paste events. Asks the user for period dates, repos, SharePoint URLs, and historical Connect IDs at runtime because these vary per person.
tools
Record work log / save work summary / add TODO items. TRIGGER when: user says '记录工作', '保存工作', 'record work', 'save work', 'log work', '工作记录', '写工作日志', '保存工作记录', '记录一下', or similar phrases about saving/recording what was done in the current session. Also trigger when user mentions work log, work record, 工作日志, or wants to summarize completed work for future performance review. Also trigger when user says '加一个todo', 'add a todo', '添加todo', '加个待办', '记录todo', or similar phrases about adding a TODO/待办 item to the work log.