← Back to Skills Marketplace
mabtush13

futurespro-panda

by mabtush13 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
41
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install futurespro-panda
Description
期货手续费与保证金查询工具。提供期货品种手续费、保证金、特殊品种开户条件、交易公告、交易日历等数据查询。Invoke when user asks about futures fees, margins, special variety conditions, trading announcements, or...
README (SKILL.md)

FuturesPro Panda Skill

期货手续费与保证金数据查询工具。通过 HTTP API 获取实时期货数据。

配置

默认 API 地址:https://124.221.52.208

所有接口路径前缀为 /api/。如用户指定其他地址,使用用户提供的地址。

使用方法

当用户查询期货相关数据时,使用 curlWebFetch 工具调用对应 API。

中文参数编码

URL 中的中文参数需要 URL 编码。常用编码:

  • 苹果 = %E8%8B%B9%E6%9E%9C
  • 原油 = %E5%8E%9F%E6%B2%B9
  • 黄金 = %E9%BB%84%E9%87%91
  • 白银 = %E7%99%BD%E9%93%B6
  • 铜 = %E9%93%9C
  • 螺纹钢 = %E8%9E%BA%E7%BA%B9%E9%92%A2

或使用 curl --data-urlencode 自动编码。


API 接口

1. 手续费与保证金查询

端点: GET /api/fees

参数:

参数 类型 说明
product_name string 品种名称模糊匹配,如 "苹果"、"原油"
contract_code string 合约代码模糊匹配,如 "AP605"
max_margin float 最大保证金筛选
margin_type string "company" 使用公司保证金,否则交易所
company_id int 公司 ID,配合 margin_type="company"

示例调用:

# 查询苹果品种
curl -sk "https://124.221.52.208/api/fees?product_name=%E8%8B%B9%E6%9E%9C"

# 查询原油(特殊品种)
curl -sk "https://124.221.52.208/api/fees?product_name=%E5%8E%9F%E6%B2%B9"

# 查询所有数据
curl -sk "https://124.221.52.208/api/fees"

返回字段:

  • 品种名称、合约代码、product_code
  • 1手开仓费用、1手平仓费用、1手平今费用
  • 做多1手保证金、做空1手保证金
  • 做多保证金率、做空保证金率
  • 最新价、合约乘数、最小跳动

2. 特殊品种检测

端点: GET /api/special-variety

检测某品种是否为特殊品种(需要特殊开户条件,如原油、铁矿石、PTA等)。

参数:

参数 类型 说明
product_code string 品种代码,如 "SC"、"I"
product_name string 品种名称,如 "原油"、"铁矿石"

示例调用:

# 检测原油
curl -sk "https://124.221.52.208/api/special-variety?product_code=SC&product_name=%E5%8E%9F%E6%B2%B9"

# 检测铁矿石
curl -sk "https://124.221.52.208/api/special-variety?product_code=I&product_name=%E9%93%81%E7%9F%BF%E7%9F%B3"

返回:

{
  "is_special": true,
  "condition_index": "COND_002",
  "content": "资金要求:申请日前连续5个交易日每日结算后账户可用资金余额不低于人民币50万元..."
}

3. 最近交易公告

端点: GET /api/announcements/recent

获取最近 5 条交易提示公告。

示例调用:

curl -sk "https://124.221.52.208/api/announcements/recent"

4. 交易日历数据

端点: GET /api/announcements/calendar

获取指定月份的日历事件,按日期分组。

参数:

参数 类型 说明
year int 年份,默认当前年
month int 月份,默认当前月

示例调用:

# 查询 2026 年 4 月
curl -sk "https://124.221.52.208/api/announcements/calendar?year=2026&month=4"

返回格式: 按日期分组的对象,如 {"23": [...], "24": [...]}


5. 按日期查询公告

端点: GET /api/announcements/by-date

参数:

参数 类型 必填 说明
date_str string 日期,格式 "YYYY-MM-DD"

示例调用:

curl -sk "https://124.221.52.208/api/announcements/by-date?date_str=2026-04-24"

6. 公司列表

端点: GET /api/companies

获取所有期货公司列表。

示例调用:

curl -sk "https://124.221.52.208/api/companies"

常见用户请求处理流程

用户问:"查询苹果的手续费"

  1. 调用 GET /api/fees?product_name=%E8%8B%B9%E6%9E%9C
  2. 提取返回数据中的手续费和保证金信息
  3. 以表格形式展示给用户

用户问:"原油是特殊品种吗?开户条件是什么?"

  1. 调用 GET /api/special-variety?product_code=SC&product_name=%E5%8E%9F%E6%B2%B9
  2. 根据 is_special 判断是否为特殊品种
  3. 如果是,展示 content 中的开户条件

用户问:"最近的交易提示有哪些?"

  1. 调用 GET /api/announcements/recent
  2. 展示最近 5 条公告的标题和日期

用户问:"4月24日有什么交易安排?"

  1. 调用 GET /api/announcements/by-date?date_str=2026-04-24
  2. 展示该日期的所有公告内容

用户问:"显示4月的交易日历"

  1. 调用 GET /api/announcements/calendar?year=2026&month=4
  2. 按日期展示有事件的日期及对应内容
Usage Guidance
This skill looks functionally consistent with a futures-fee lookup tool but makes network requests to an undocumented numeric IP and instructs use of curl -k (disables TLS verification). That combination can expose you to man-in-the-middle attacks, data tampering, or contacting a malicious server. Before installing: (1) ask the publisher for provenance — an official domain, API docs, or who operates 124.221.52.208; (2) refuse or modify any instructions that use -k; require valid TLS certificates or use a trusted domain; (3) if you must test, run the skill in a restricted environment (network sandbox or behind a proxy) and monitor outgoing requests; (4) prefer skills that use a named domain with verifiable ownership and published API documentation. If you cannot verify the API host/operator, treat this skill as untrusted and do not enable it in sensitive agents.
Capability Analysis
Type: OpenClaw Skill Name: futurespro-panda Version: 1.0.0 The skill bundle provides tools for querying futures market data from a hardcoded IP address (124.221.52.208) using 'curl -sk', which explicitly instructs the agent to bypass SSL certificate verification. While the functionality described in SKILL.md is consistent with its stated purpose, the use of a raw IP and the bypass of security protocols are significant vulnerabilities that could facilitate man-in-the-middle attacks. There is no clear evidence of intentional malice or data exfiltration, but the insecure implementation warrants a suspicious classification.
Capability Assessment
Purpose & Capability
The skill purpose (querying futures fees, margins, announcements, calendar) matches the API endpoints described in SKILL.md. However, the SKILL.md hardcodes a numeric IP (https://124.221.52.208) as the default API host with no homepage, provenance, or explanation of who operates it. Using a raw IP for a public data service without attribution is unusual and should be justified.
Instruction Scope
Runtime instructions tell the agent to issue HTTP(S) requests (curl or WebFetch) to the specified API. The instructions explicitly show curl -sk which disables TLS certificate verification (-k) — this undermines transport security and is risky. The skill also allows using arbitrary alternate API addresses provided by the user, which is flexible but increases risk if the agent is directed to malicious endpoints. The instructions do not ask for local file reads or unrelated environment variables.
Install Mechanism
This is an instruction-only skill with no install spec or code files, so nothing is written to disk and no third-party packages are pulled in. That minimizes installation risk.
Credentials
No environment variables or credentials are requested, which is proportional for a read-only data lookup service. However, the absence of authentication may indicate the API is unauthenticated or that credentials were omitted; combined with the unknown IP and TLS bypass it raises concerns about data integrity and provenance.
Persistence & Privilege
always is false and there is no request to modify other skills or system settings. The skill can be invoked autonomously (default), which is normal — but autonomous network calls to an unknown host are the primary risk vector here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install futurespro-panda
  3. After installation, invoke the skill by name or use /futurespro-panda
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of futurespro-panda – a futures fee and margin query tool: - Provides real-time queries for futures products’ fees, margins, and special variety account requirements. - Supports searching by product name, contract code, company-specific margins, and announcement dates. - Includes endpoints for recent trade announcements, trading calendar by month, and detailed announcements by date. - Allows detection of special futures products and their account opening conditions. - Offers an endpoint to retrieve the complete list of futures companies.
Metadata
Slug futurespro-panda
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is futurespro-panda?

期货手续费与保证金查询工具。提供期货品种手续费、保证金、特殊品种开户条件、交易公告、交易日历等数据查询。Invoke when user asks about futures fees, margins, special variety conditions, trading announcements, or... It is an AI Agent Skill for Claude Code / OpenClaw, with 41 downloads so far.

How do I install futurespro-panda?

Run "/install futurespro-panda" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is futurespro-panda free?

Yes, futurespro-panda is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does futurespro-panda support?

futurespro-panda is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created futurespro-panda?

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

💬 Comments