← Back to Skills Marketplace
lean-zhouchao

Eastmoney Financial Search 1.0.2

by lean-zhouchao · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
2071
Downloads
6
Stars
9
Active Installs
1
Versions
Install in OpenClaw
/install eastmoney-financial-search-1-0-2
Description
本skill基于东方财富妙想搜索能力,基于金融场景进行信源智能筛选,用于获取涉及时效性信息或特定事件信息的任务,包括新闻、公告、研报、政策、交易规则、具体事件、各种影响分析、以及需要检索外部数据的非常识信息等。避免AI在搜索金融场景信息时,参考到非权威、及过时的信息。
README (SKILL.md)

东方财富资讯搜索skill (eastmoney_financial_search)

根据用户问句搜索相关金融资讯,获取与问句相关的资讯信息(如研报、新闻、解读等),并返回可读的文本内容,可选保存到工作目录。

使用方式

  1. 首先检查环境变量EASTMONEY_APIKEY是否存在:
    echo $EASTMONEY_APIKEY
    
    如果不存在,提示用户在东方财富Skills页面(https://marketing.dfcfs.com/views/finskillshub/indexuNdYscEA?appfenxiang=1)获取apikey并设置到环境变量。

⚠️ 安全注意事项

  • 外部请求: 本 Skill 会将用户的查询关键词(Keyword)发送至东方财富官方 API 接口 (mkapi2.dfcfs.com) 进行解析与检索。
  • 数据用途: 提交的数据仅用于资讯搜索,不包含个人隐私信息。
  • 凭据保护: API Key 仅通过环境变量 EASTMONEY_APIKEY 在服务端或受信任的运行环境中使用,不会在前端明文暴露。
  1. 使用POST请求调用接口:
    curl -X POST --location 'https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search' \
    --header 'Content-Type: application/json' \
    --header "apikey: $EASTMONEY_APIKEY" \
    --data '{"query":"用户的查询内容"}'
    

适用场景

当用户查询以下类型的内容时使用本skill:

  • 个股资讯:如"格力电器最新研报"、"贵州茅台机构观点"
  • 板块/主题:如"商业航天板块近期新闻"、"新能源政策解读"
  • 宏观/风险:如"A股具备自然对冲优势的公司 汇率风险"、"美联储加息对A股影响"
  • 综合解读:如"今日大盘异动原因"、"北向资金流向解读"

返回说明

字段路径 简短释义
title 信息标题,高度概括核心内容
secuList 关联证券列表,含代码、名称、类型等
secuList[].secuCode 证券代码(如 002475)
secuList[].secuName 证券名称(如立讯精密)
secuList[].secuType 证券类型(如股票 / 债券)
trunk 信息核心正文 / 结构化数据块,承载具体业务数据

示例

import os
import requests

api_key = os.getenv("EASTMONEY_APIKEY")
if not api_key:
    raise ValueError("请先设置EASTMONEY_APIKEY环境变量")

url = "https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search"
headers = {
    "Content-Type": "application/json",
    "apikey": api_key
}
data = {
    "query": "立讯精密的资讯"
}

response = requests.post(url, headers=headers, json=data)
response.raise_for_status()
result = response.json()
print(result)
Usage Guidance
This skill appears to do what it says, but consider the following before installing: (1) Verify you obtained the EASTMONEY_APIKEY from the official Eastmoney/skill marketplace link provided and keep the key in a secure environment variable (do not paste into chat). (2) Avoid including any personal or sensitive data in search queries, because queries are sent to the third-party endpoint mkapi2.dfcfs.com. (3) Confirm the domain and API usage policy (privacy, retention, rate limits) match your security/privacy requirements. (4) The package metadata shows minor ownerId/version mismatches — if you require provenance assurance, ask the publisher for clarification. (5) If you need stronger isolation, run the script in a sandboxed environment or review network egress policies to control outbound calls.
Capability Analysis
Type: OpenClaw Skill Name: eastmoney-financial-search-1-0-2 Version: 1.0.0 The skill bundle is a legitimate tool for searching financial news and reports via the Eastmoney (东方财富) API. The provided Python script (scripts/search.py) and instructions (SKILL.md) are transparent, performing standard HTTP POST requests to a specific, relevant endpoint (mkapi2.dfcfs.com) using a user-provided API key. No evidence of data exfiltration, malicious execution, or prompt injection was found.
Capability Assessment
Purpose & Capability
Name/description match behavior: SKILL.md and scripts/search.py only call mkapi2.dfcfs.com for financial content search and require an EASTMONEY_APIKEY. Requested artifacts (one API key) are appropriate for the described functionality. Note: _meta.json ownerId/version differ slightly from registry metadata (likely editorial), but this does not change functionality.
Instruction Scope
Runtime instructions and example code only read the EASTMONEY_APIKEY env var and send the user query to the documented Eastmoney API endpoint. There are no instructions to read other system files, extra environment variables, or exfiltrate unrelated data. The SKILL.md warns about external requests and states only query keywords are sent.
Install Mechanism
Instruction-only skill with a small helper script; there is no install spec, no downloads, and no third-party package installation. The script uses the requests library (normal for Python) and does not write or execute arbitrary external code.
Credentials
Only a single API key (EASTMONEY_APIKEY) is declared and used, which is proportionate to a remote API integration. No other credentials or config paths are requested.
Persistence & Privilege
Skill is not always-enabled and has no special persistence or privilege escalation behavior. It does not modify other skills or system-wide settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install eastmoney-financial-search-1-0-2
  3. After installation, invoke the skill by name or use /eastmoney-financial-search-1-0-2
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
eastmoney_financial_search 1.0.0 released - Initial release of the skill for searching financial information using Eastmoney's intelligent source screening. - Enables access to timely news, reports, announcements, policies, trading rules, event information, and analysis in various financial scenarios. - Uses a secure API key from Eastmoney; only environment variable authentication required. - Documentation includes example usage, required fields, and response structure for easy integration and reference. - Prioritizes sourcing from authoritative and up-to-date financial data, avoiding non-official or outdated information.
Metadata
Slug eastmoney-financial-search-1-0-2
Version 1.0.0
License MIT-0
All-time Installs 10
Active Installs 9
Total Versions 1
Frequently Asked Questions

What is Eastmoney Financial Search 1.0.2?

本skill基于东方财富妙想搜索能力,基于金融场景进行信源智能筛选,用于获取涉及时效性信息或特定事件信息的任务,包括新闻、公告、研报、政策、交易规则、具体事件、各种影响分析、以及需要检索外部数据的非常识信息等。避免AI在搜索金融场景信息时,参考到非权威、及过时的信息。 It is an AI Agent Skill for Claude Code / OpenClaw, with 2071 downloads so far.

How do I install Eastmoney Financial Search 1.0.2?

Run "/install eastmoney-financial-search-1-0-2" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Eastmoney Financial Search 1.0.2 free?

Yes, Eastmoney Financial Search 1.0.2 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Eastmoney Financial Search 1.0.2 support?

Eastmoney Financial Search 1.0.2 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Eastmoney Financial Search 1.0.2?

It is built and maintained by lean-zhouchao (@lean-zhouchao); the current version is v1.0.0.

💬 Comments