Skills of convertible bond data released by ft.tech.

A 股可转债数据技能集(market.ft.tech)。覆盖可转债全量列表、单只可转债基础信息(转股价、转股价值、到期日、发行规模等)。用户询问可转债列表、某只转债详情、转股价/转股价值时使用。

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 22 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description state it provides convertible-bond lists and per-issue base data; the included scripts implement exactly two GET endpoints on https://market.ft.tech and nothing else. No extra binaries, env vars, or unrelated permissions are requested.
Instruction Scope
SKILL.md instructs the agent to call run.py with a subskill name and optional parameters. The handlers only perform HTTP GETs, parse JSON, and print results. There are no instructions to read local files, environment variables, or transmit data to destinations other than the documented market.ft.tech endpoints.
Install Mechanism
No install spec is provided (instruction-only + small local scripts). The skill runs bundled Python scripts; nothing is downloaded or extracted from external URLs during install.
Credentials
The skill declares no required environment variables, no credentials, and no config paths. The code likewise does not access secrets or other environment variables.
Persistence & Privilege
always is false and the skill does not attempt to modify agent or system configuration. It will execute only when invoked and does not request permanent elevation or presence.
Assessment
This skill appears to do only unauthenticated GET requests to https://market.ft.tech and print the JSON results. Before installing, confirm you trust the market.ft.tech domain (the source is listed as unknown and there is no homepage). Note that the skill executes local Python scripts when invoked (they are small and readable in the bundle), and it requires outbound network access to fetch data. If you need stronger assurance, verify the domain ownership or run the scripts in an isolated environment; otherwise the request surface is small and no credentials or local files are accessed.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk970ezmerzq812rm8rr1m2e431831h7e

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

FT 可转债数据 Skills

本 skill 是 FTShare-cb-data统一路由入口

根据用户问题,从下方「能力总览」或「询问方式与子 skill 对应表」匹配对应子 skill,然后通过 run.py 执行并解析响应。

所有接口均以 https://market.ft.tech 为基础域名,本技能集子 skill 无需额外请求头。


调用方式(唯一规则)

run.py 与本文件(SKILL.md)位于同一目录。执行时:

  1. 取本文件的绝对路径,将末尾 /SKILL.md 替换为 /run.py,得到 <RUN_PY>
  2. 调用:python <RUN_PY> <子skill名> [参数...]
# 示例(<RUN_PY> 为实际绝对路径)
python <RUN_PY> cb-lists
python <RUN_PY> cb-base-data --symbol_code 110070.SH

run.py 内部通过 __file__ 自定位,无论安装在何处都能正确找到各子 skill 的脚本。


可转债 — 询问方式与子 skill 对应表

询问方式(用户常说的词)子 skill
可转债列表全部可转债转债代码列表有哪些可转债、可转债标的cb-lists
某只可转债基础信息转债详情110070 转债转股价/转股价值、到期日、发行规模cb-base-data

能力总览

  • cb-lists:获取可转债全量列表(全称、债券代码、正股代码、交易所)。无参数;数据为前一交易日。
  • cb-base-data:查询单只可转债基础信息(简称、全称、正股代码、转股价、转股价值、转股溢价率、起息日/到期日、发行规模等,数据为前一交易日)。必填:--symbol_code(转债代码,可带交易所后缀如 110070.SH)。

使用流程

  1. 记录本文件绝对路径,将 /SKILL.md 替换为 /run.py 得到 <RUN_PY>
  2. 理解用户意图,从「询问方式与子 skill 对应表」或「能力总览」匹配子 skill 名称。
  3. (可选)读取 sub-skills/<子skill名>/SKILL.md 了解接口与参数。
  4. 执行python <RUN_PY> <子skill名> [参数...],获取 JSON 输出。
  5. 解析并输出:以表格或要点形式展示给用户。

Files

6 total
Select a file
Select a file to preview.

Comments

Loading comments…