etf-announcements

etf-announcements is a skill for Claude Code, Codex from FTShare-Lab/FTShare-skill. It costs 50 tokens per session (940 once invoked), scanned A, original, MIT.

A lookup for public announcements from exchange-traded funds (ETFs), such as reports and other notices. It can search all announcements for one ETF or announcements published across the market on one day, with PDF download addresses when available.

In plain words
What is it for?
It helps find ETF annual or interim report announcements, search notices by fund or date, and obtain the related PDF links.
Why use it?
It avoids searching fund websites one by one for dated notices and report documents. Results are paginated so large lists can be retrieved in parts or all at once.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps find ETF annual or interim report announcements, search notices by fund or date, and obtain the related PDF links.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ftshare-lab/ftshare-skill/etf-announcements
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add FTShare-Lab/FTShare-skill --skill etf-announcements
Clone the repo
git clone --depth 1 https://github.com/FTShare-Lab/FTShare-skill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for etf-announcements

README.md
[![agentmods](https://agentmods.dev/badge/skills/ftshare-lab/ftshare-skill/etf-announcements/github.svg)](https://agentmods.dev/skills/ftshare-lab/ftshare-skill/etf-announcements)
Your own site
<a href="https://agentmods.dev/skills/ftshare-lab/ftshare-skill/etf-announcements"><img src="https://agentmods.dev/badge/skills/ftshare-lab/ftshare-skill/etf-announcements/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for etf-announcements

Your own site · 80×15
<a href="https://agentmods.dev/skills/ftshare-lab/ftshare-skill/etf-announcements"><img src="https://agentmods.dev/badge/skills/ftshare-lab/ftshare-skill/etf-announcements.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 940 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.00940
Opus 5 $0.00025 $0.00470
Sonnet 5 $0.00010 $0.00188
Haiku 4.5 $0.00005 $0.00094

Measured yesterday against content hash 316304d6107d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

etf-announcements scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/handler.py, scripts/test_handler.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

ftshare-market-data/sub-skills/etf-announcements/SKILL.md · 65 lines

What it actually says

ETF 公告列表

1. 接口描述

项目 说明
接口名称 ETF 公告列表(etf_announcements)
外部接口 GET /api/v2/market/data/announcements/etf-announcements
请求方式 GET(query 参数)
适用场景 按标的查单只 ETF 全部公告,或按单日日期查全市场 ETF 公告;公告正文 PDF 可按返回的 url_hash 另行下载

两种模式二选一:

  1. 按标的:传 etf_code,查单只 ETF 所有公告。
  2. 按日期:传 start_date(必须等于 end_date,仅支持单日),查指定日期全市场 ETF 公告。

2. 请求参数

参数名 类型 是否必填 描述 取值示例 备注
etf_code string 二选一 ETF 代码 159915 支持裸代码/短后缀/长后缀(159915.SZ510300.XSHG),大小写不敏感
start_date string 二选一 日期 20260831 YYYYMMDD;按日期查询时必填,仅支持单日
end_date string 日期 20260831 不填默认等于 start_date,且必须等于 start_date
page int 页码 1 必填
page_size int 每页条数 5 必填
--all - 自动翻页拉全量 - 仅本子 skill 扩展参数

3. 响应说明

外层固定为 code / message / datadata 为分页对象:pageNum / pageSize / total / pages / records

records 元素:

字段名 类型 说明
etf_code string ETF 代码,6 位裸代码,不带交易所后缀
etf_name string ETF 名称
announcement_id string 公告 id
announcement_title string 公告标题
announcement_time string 公告时间,格式 YYYY-MM-DD HH:MM:SS
url_hash string 公告文件 URL 哈希,用于下载正文文件

4. 调用方式

python <RUN_PY> etf-announcements --etf-code 159915 --page 1 --page-size 5
python <RUN_PY> etf-announcements --start-date 20260831 --page 1 --page-size 20
python <RUN_PY> etf-announcements --etf-code 159915 --page 1 --page-size 20 --all

<RUN_PY> 为主 SKILL.md 同级 run.py 的绝对路径。输出 JSON;HTTP 错误输出到 stderr 并以非零状态退出。

5. 注意事项

  • 必须提供 etf_codestart_date 之一,否则服务端报错(handler 会本地校验并拒绝)。
  • 按日期查询仅支持单日:end_date 不填默认等于 start_date,填了则必须相等。
  • ETF 范围为场内 ETF,不含联接基金、LOF。
  • 公告正文下载:GET /api/v2/market/data/announcements/etf-announcements/{url_hash},响应为 PDF 二进制附件;url_hash 须取自本接口返回值,勿硬编码。
  • 当前数据源仅覆盖深市 ETF(159 开头);查询沪市代码会返回空列表。
Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 65 lines · 50 tokens per session scan A 316304d6107d

Subscribe to this mod's changes

etf-announcements is a skill published in the GitHub repository FTShare-Lab/FTShare-skill (64 stars, last pushed yesterday), licensed MIT. It adds 50 tokens to every session and 940 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-11.

Related

Other skills, from other repositories