← 返回 Skills 市场
315
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install j-stock-analyzer
功能描述
输入股票代码,深入分析财务数据、估值、护城河,生成投资分析报告
使用说明 (SKILL.md)
Stock Analyzer | 股票深度分析
当用户想要了解某只股票的投资价值时,使用此技能进行全面分析。
触发场景
- 用户问"帮我分析 XXX"
- 用户问"XXX 这只股票怎么样"
- 用户问"XXX 值得买吗"
- 用户想了解某家公司的基本面
分析框架(必须全部覆盖)
1. 基础信息
股票代码:
股票名称:
交易所:
行业:
主营业务:
2. 财务健康度(近3年)
| 指标 | 2023 | 2024 | 2025(E) | 趋势 |
|---|---|---|---|---|
| 营业收入(亿) | ||||
| 净利润(亿) | ||||
| 毛利率 | ||||
| 净利率 | ||||
| ROE | ||||
| 资产负债率 | ||||
| 自由现金流 |
3. 估值分析
| 估值指标 | 数值 | 行业平均 | 评价 |
|---|---|---|---|
| PE(TTM) | |||
| PB | |||
| PS | |||
| 股息率 | |||
| PEG |
4. 护城河分析( Checklist)
- 品牌护城河:强/中/弱/无
- 规模护城河:强/中/弱/无
- 技术护城河:强/中/弱/无
- 网络效应:强/中/弱/无
- 成本优势:强/中/弱/无
- 转换成本:强/中/弱/无
- 政策/牌照壁垒:强/中/弱/无
5. 风险分析
| 风险类型 | 风险描述 | 影响程度 |
|---|---|---|
| 行业风险 | 高/中/低 | |
| 竞争风险 | 高/中/低 | |
| 政策风险 | 高/中/低 | |
| 财务风险 | 高/中/低 | |
| 管理风险 | 高/中/低 |
6. 管理层评估
- 管理层诚信度:优秀/良好/一般/差
- 激励机制:股权激励/现金/无
- 资本配置历史:良好/一般/差
7. 投资决策(最终结论)
| 维度 | 评分(1-10) | 说明 |
|---|---|---|
| 商业模式 | ||
| 财务健康 | ||
| 估值水平 | ||
| 护城河 | ||
| 成长性 | ||
| 风险 | ||
| 综合评分 |
8. 安全边际评估
当前价格:
内在价值(DCF估算):
安全边际:
是否值得买入:
9. 关键问题清单
- 这家公司怎么赚钱?(一句话说清楚)
- 5年后这家公司会怎样?
- 最大的竞争对手是谁?
- 买入后跌50%怎么办?
数据获取方式
使用以下工具获取数据:
- exec + curl:调用东方财富/新浪财经 API 获取实时数据
- web_fetch:抓取公司财报、研报
- browser:访问公司官网、年报
输出格式
分析完成后,输出结构化报告,格式如下:
═══════════════════════════════════════
📊 股票深度分析报告:XXX(代码)
═══════════════════════════════════════
【一句话总结】
这只股票值得/不值得投资,因为...
【基础信息】
...
【财务健康度】
...
【估值分析】
...
【护城河评估】
...
【风险提示】
...
【投资决策】
综合评分:X/10
安全边际:XX%
建议操作:买入/持有/卖出
【需要进一步确认的问题】
...
═══════════════════════════════════════
⚠️ 免责声明:本分析仅供参考,不构成投资建议
═══════════════════════════════════════
注意事项
- 必须说明数据来源:东方财富/Wind/公司财报/研报等
- 保守估算:估值时使用保守假设
- 诚实面对不确定性:不确定的地方要明说
- 不预测短期股价:分析聚焦于基本面
- 关注现金流:利润可以造假,现金流很难造假
快速命令
当用户说"快速分析 XXX"时,只输出核心信息(5项):
- 一句话商业模式
- 近3年净利润趋势
- 当前PE/PB
- 护城河强弱
- 综合判断:值得深入/不建议
为 LEE 的投资伙伴 J 构建 | 投资有风险,分析仅供参考
安全使用建议
This skill is coherent for doing stock analysis and appears to only rely on web data. Before installing or enabling it: (1) confirm the runtime sandboxing for shell exec (the SKILL.md asks for 'exec + curl' — ensure the agent cannot run arbitrary host commands you don't expect); (2) know that scraping public sites can produce incomplete or brittle data, and 'Wind' is a paid source (no credentials are declared); (3) avoid supplying any unrelated secrets or API keys unless you understand how they will be used; (4) treat reports as informational only (the skill already includes a disclaimer). If you need use of paid data/APIs, ask the author to declare required credentials and expected endpoints explicitly.
功能分析
Type: OpenClaw Skill
Name: j-stock-analyzer
Version: 1.0.0
The skill instructions in SKILL.md direct the AI agent to use 'exec + curl' to fetch data from financial APIs (e.g., East Money, Sina Finance). While this capability is plausibly needed for the stated purpose of stock analysis, the use of shell execution (exec) is a high-risk behavior that could lead to command injection if the agent processes unsanitized user-provided stock codes. No evidence of intentional malice, data exfiltration, or persistence was found.
能力评估
Purpose & Capability
Name and description match the instructions: gathering financial data, analyzing valuation and moat, and producing reports. Data sources named (东方财富/新浪/公司年报/Wind) are appropriate for a stock analysis skill.
Instruction Scope
SKILL.md confines actions to fetching public financial data (exec + curl, web_fetch, browser) and producing a structured report. However, it explicitly instructs use of 'exec + curl' (shell execution) which, while reasonable for HTTP requests, grants the agent the ability to run arbitrary shell commands if implemented without proper sandboxing — monitor how exec is implemented in the runtime.
Install Mechanism
Instruction-only skill with no install spec and no code files. Nothing will be written to disk by an installer; lowest install risk.
Credentials
The skill requests no environment variables or credentials, which is proportionate. Minor inconsistency: it names Wind (a paid/data-provider) as a source but does not request credentials or explain how to access paid APIs — likely expects public scraping. If you intend it to use paid APIs, credentials will be needed and should be provided securely.
Persistence & Privilege
always:false and no install/persistence actions. The skill does not request permanent presence or system-wide configuration changes.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install j-stock-analyzer - 安装完成后,直接呼叫该 Skill 的名称或使用
/j-stock-analyzer触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
初始版本:股票深度分析框架
元数据
常见问题
Stock Analyzer | 股票深度分析 是什么?
输入股票代码,深入分析财务数据、估值、护城河,生成投资分析报告. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 315 次。
如何安装 Stock Analyzer | 股票深度分析?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install j-stock-analyzer」即可一键安装,无需额外配置。
Stock Analyzer | 股票深度分析 是免费的吗?
是的,Stock Analyzer | 股票深度分析 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Stock Analyzer | 股票深度分析 支持哪些平台?
Stock Analyzer | 股票深度分析 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Stock Analyzer | 股票深度分析?
由 jearrylee(@jearrylee)开发并维护,当前版本 v1.0.0。
推荐 Skills