openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > agent-stock

面向 AI Agent 的股市数据命令行技能。根据用户关于股票查询、市场概览、行业热力图、板块涨跌、个股资讯、日K/技术指标、资金流向与代码搜索等诉求触发调用。

金融与交易

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v0.1.4

统计:⭐ 0 · 139 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:anoyix/agent-stock

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is internally consistent with a stock-quote CLI: it queries public finance endpoints (Baidu/QQ), needs no credentials, and its code matches the described functionality, though the SKILL.md claims

目的

Name/description match the implementation: this is a CLI tool for stock/market data and the repository contains commands and API adapters (baidu/qq) that implement those features. One inconsistency: the SKILL.md presents the skill as an instruction-only skill, but the package actually includes a full Python implementation (cli, commands, api). Other than that, requested capabilities (none) and declared requirements align with the stated purpose.

说明范围

SKILL.md contains user-facing runtime instructions that tell the agent to call the 'stock' CLI commands for specific intents. The instructions themselves do not request reading local files or secrets and only describe which command to run for which query. However, because code files are present (actual network-calling implementation), the runtime behavior will include outbound HTTP calls to public finance endpoints — this is consistent with th…

安装机制

No install specification is provided (instruction-only in registry), which is low-risk from an install-download perspective. The repository does include Python code but the skill does not request downloading arbitrary binaries or external archives at install time. Note: absence of an install spec means the agent or user must already have the 'stock' CLI available (or install the package manually) for the SKILL.md guidance to work.

证书

The skill declares no required environment variables, no credentials, and no config paths. All network activity goes to public finance endpoints (finance.pae.baidu.com, sqt.gtimg.cn, proxy.finance.qq.com, etc.), which is proportionate to a stock-data CLI. There are no signs the skill tries to access unrelated secrets or system config.

持久

Skill is not always-enabled and does not request elevated persistence or modification of other skills. Autonomous invocation is allowed (platform default) but not combined with other concerning privileges.

综合结论

This skill appears to be what it says: a CLI for stock data that queries public Baidu/QQ finance endpoints and requires no credentials. Two practical points to consider before installing: (1) SKILL.md claims an instruction-only skill, but the package includes a full Python implementation — if you actually run it, it will perform outbound HTTP requests; review the code or run in a sandbox if you need to be cautious. (2) The tool depends on reve…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「agent-stock」。简介:面向 AI Agent 的股市数据命令行技能。根据用户关于股票查询、市场概览、行业热力图、板块涨跌、个股资讯、日K/技术指标、资金流向与代码搜索等诉求触发调用。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/anoyix/agent-stock/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: agent-stock
description: 面向 AI Agent 的股市数据命令行技能。根据用户关于股票查询、市场概览、行业热力图、板块涨跌、个股资讯、日K/技术指标、资金流向与代码搜索等诉求触发调用。
author: AnoyiX
version: "0.1.3"
tags:
  - stock
  - cli
  - 股票数据
---

# agent-stock — 股票行情命令行技能

**命令名:** `stock`
**适用场景:** 市场概览(涨跌分布、行业热力图)、个股实时行情、板块涨跌、最新资讯、日 K 与技术指标,以及资金分布/净流向与股票搜索。

## 何时调用(意图触发)

- “查某只股票价格/涨跌幅/市值/成交量/估值” → quote
- “看某只股票相关地域/行业/概念板块涨跌幅” → plate
- “看某只股票最新资讯/新闻摘要” → news
- “看市场涨跌分布/涨跌家数” → chgdiagram
- “看行业板块热力图/热点行业/板块涨跌” → heatmap
- “搜股票代码或名称/模糊搜索” → search
- “看日K/技术指标/EMA/BOLL/KDJ/RSI/近N日数据” → kline
- “看资金分布/主力净流入/散户净流入/每日资金流向” → fundflow

## 参数规范

- symbol
  - A 股:6 位数字,如 600519、000001
  - 港股:5 位数字,如 00700
  - 美股:us.<ticker>,如 us.aapl、us.msft(大小写不敏感)
- market:市场枚举,用于市场类命令
  - 取值:ab|us|hk,默认 ab(A 股)


## 命令参数与帮助

- `stock --help` 或 `stock <命令> --help`:查看帮助

### 市场数据

```bash
stock index --market ab             # 大盘主要指数总览
stock chgdiagram --market ab        # 涨跌分布
stock heatmap --market ab           # 行业板块热力图
stock search <keyword>              # 股票搜索
```

### 个股数据

```bash
stock quote <symbol>                # 个股实时行情
stock plate <symbol>                # 个股相关板块涨跌幅(地域/行业/概念)
stock news <symbol>                 # 个股最新资讯
stock kline <symbol>                # 日K数据以及技术指标(EMA/BOLL/KDJ/RSI)
stock fundflow <symbol>             # 资金分布与每日主力/散户净流向
```

## 常用示例(映射到命令)

- `stock search 腾讯`
- `stock quote 600519`
- `stock plate 600519`
- `stock news 600519`
- `stock quote 00700`
- `stock quote us.aapl`
- `stock kline 600519 --count 60`
- `stock fundflow 600519`
- `stock chgdiagram --market ab`
- `stock heatmap --market hk`