Claude Code Skills Marketplace is a collection and marketplace of skills, plugins, agents, and instructions that extend Claude Code with specialized development workflows. It is for developers who want to install existing workflows or create, validate, and package their own Claude Code skills.
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.
npx skills add daymade/claude-code-skills --skill pharma-daily-reportgit clone --depth 1 https://github.com/daymade/claude-code-skillsWrote 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.
[](https://agentmods.dev/skills/daymade/claude-code-skills/pharma-daily-report)<a href="https://agentmods.dev/skills/daymade/claude-code-skills/pharma-daily-report"><img src="https://agentmods.dev/badge/skills/daymade/claude-code-skills/pharma-daily-report/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.
<a href="https://agentmods.dev/skills/daymade/claude-code-skills/pharma-daily-report"><img src="https://agentmods.dev/badge/skills/daymade/claude-code-skills/pharma-daily-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00185 | $0.01498 |
| Opus 5 | $0.00093 | $0.00749 |
| Sonnet 5 | $0.00037 | $0.00300 |
| Haiku 4.5 | $0.00018 | $0.00150 |
Grade A, and why
pharma-daily-report scanned grade A with 1 finding 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 9d ago.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Python 3.8+(只用 stdlib 的 `urllib`,无需 pip 装任何包) How it starts
The opening of the file, as written. The whole thing — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.
医药行业日报
从新浪财经免费公开接口抓取 A 股医药板块实时行情,分析后通过飞书发送日报。
这个 skill 做什么
- 抓取 20 只核心医药股实时数据(新浪
hq.sinajs.cn,GBK 编码,免费无需认证) - 计算赛道排名、涨跌榜 TOP 3、资金流向估算
- 生成飞书富文本日报(含涨跌颜色、赛道奖牌)
- 通过 lark-cli 发送到指定飞书对话
- 在原始数据目录保存当日快照 JSON
能力边界
能做的:
- A 股医药行业 20 只核心标的的实时快照
- 7 大细分赛道对比(创新药 / CXO / 医疗器械 / 中药 / 综合医药 / 医疗服务 / 生物制品)
- 飞书 markdown 美化的日报输出
不能做的:
- 不提供投资建议(日报自带免责声明)
- 不抓取付费/Paywall 内容(只用新浪免费接口)
- 不保证数据无误(来源标注为新浪,交易决策请多方交叉验证)
前置条件
- Python 3.8+(只用 stdlib 的
urllib,无需 pip 装任何包) - lark-cli 已安装且已登录飞书账号
- 能访问
hq.sinajs.cn
如果用户没装 lark-cli:
npm install -g @larksuite/cli
lark-cli auth login --recommend
注意:飞书是国内服务,lark-cli 命令行前必须加 LARK_CLI_NO_PROXY=1。
使用流程
Step 1:确认参数
问用户确认:
- 飞书 profile:用哪个飞书账号发?如果不清楚自己有哪些 profile,运行
lark-cli profile list查看(详见references/feishu_profiles.md) - 飞书对话:发到哪个群/人?用户如果不清楚自己的 chat_id,帮他查:
发给自己就用 Feishu Assistant 对话。发给群就搜群名。LARK_CLI_NO_PROXY=1 lark-cli im +chat-search --query " " --page-size 20 - 股票池:默认用 20 只医药核心标的(见
references/stock_pool.md)。用户可以说"只看创新药"或"加上某某股票"来定制。
Step 2:运行数据管线
直接执行 scripts/daily_pipeline.py:
python3 scripts/daily_pipeline.py \
--feishu-profile <你的飞书profile名> \
--feishu-chat-id <你的飞书chat_id>
脚本一气呵成:抓数据 → 分析 → 生成日报 → 发飞书 → 存快照。
Step 3:向用户汇报结果
告诉用户关键数据:
- 几只上涨 / 几只下跌 / 平均涨跌幅
- 最强赛道和最弱赛道
- 领涨和领跌 TOP 3
- 飞书是否发送成功
数据管线详解
新浪财经实时行情接口
http://hq.sinajs.cn/list=sh600276,sz300122,...
返回 GBK 编码文本,每行格式:
var hq_str_sh600276="股票名称,今开,昨收,现价,最高,最低,...,成交金额,...,日期,时间"
32 个逗号分隔字段。关键字段(从 0 开始数):
| 位置 | 含义 | 示例 |
|---|---|---|
| 0 | 股票名称 | 恒瑞医药 |
| 2 | 昨收 | 45.60 |
| 3 | 现价 | 46.10 |
| 4 | 今日最高 | 46.50 |
| 5 | 今日最低 | 45.30 |
| 9 | 成交金额(元) | 850000000 |
代码前缀规则:6 开头 = sh,其他 = sz。
完整字段速查见 references/sina_api.md。
赛道分类
20 只股票分为 7 个赛道(见 references/stock_pool.md),分析时按赛道聚合涨跌幅和成交额。
资金流向估算
新浪免费接口不提供买卖方向数据。脚本用"涨的股票的成交额 - 跌的股票的成交额"粗略估算净流向,报告中标注为"估算"。
常见问题
股票名称出现空格
新浪返回的个别名称带空格(如"新 和 成"),脚本内置归一化。
What ships with it
4 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.
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.
- 9d ago First seen · 145 lines · 185 tokens per session scan A 42507f60f567
pharma-daily-report is a skill published in the GitHub repository daymade/claude-code-skills (1,384 stars, last pushed yesterday), licensed MIT. It adds 185 tokens to every session and 1,498 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
sector-rotation
An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.
strategy-pivot-designer
Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.
twitter-reader
Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…
chenhao-limit-up
A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.
trading-risk-gate
Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.
vectorbt
High-performance vectorized backtesting with parameter optimization, portfolio simulation, and rich performance metrics.