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 fatfingererr/macro-skills --skill analyze-rolex-market-index-liquidity-proxygit clone --depth 1 https://github.com/fatfingererr/macro-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/fatfingererr/macro-skills/analyze-rolex-market-index-liquidity-proxy)<a href="https://agentmods.dev/skills/fatfingererr/macro-skills/analyze-rolex-market-index-liquidity-proxy"><img src="https://agentmods.dev/badge/skills/fatfingererr/macro-skills/analyze-rolex-market-index-liquidity-proxy/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/fatfingererr/macro-skills/analyze-rolex-market-index-liquidity-proxy"><img src="https://agentmods.dev/badge/skills/fatfingererr/macro-skills/analyze-rolex-market-index-liquidity-proxy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00062 | $0.03148 |
| Opus 5 | $0.00031 | $0.01574 |
| Sonnet 5 | $0.00012 | $0.00630 |
| Haiku 4.5 | $0.00006 | $0.00315 |
Grade A, and why
analyze-rolex-market-index-liquidity-proxy 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 12d 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.
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.
How it starts
The opening of the file, as written. The whole thing — 247 lines — stays where its author put it; the contents beside it link to each section on GitHub.
<essential_principles> 以勞力士指數分析流動性投機程度 核心原則
淨流動性上升 → 金融體系實際可用資金增加 → 風險資產與勞力士二級市場受益
以勞力士市場指數為核心,對照 Fed 淨流動性與實質利率,完成以下判斷:
- 確認參數:時間範圍、頻率、流動性模型
- 取得數據:從 FRED 取得流動性與利率數據,透過 CDP 抓取勞力士市場指數
- 計算指標:z-score、滾動斜率、滾動 β、距峰值距離
- 判讀狀態:grinding_higher(緩慢磨高)或 speculative_fever(投機狂熱)
- 產出報告:結構化 JSON + Markdown 摘要
- 提供建議:下一步監控重點與交叉驗證方向
<quick_start> 快速開始
# 1. 安裝依賴
pip install pandas numpy requests websocket-client matplotlib
# 2. 啟動 Chrome 調試模式並開啟 WatchCharts 頁面
# Windows:
# "C:\Program Files\Google\Chrome\Application\chrome.exe" ^
# --remote-debugging-port=9222 ^
# --remote-allow-origins=* ^
# --user-data-dir="%USERPROFILE%\.chrome-debug-profile" ^
# "https://watchcharts.com/watches/brand_index/rolex"
#
# macOS:
# /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \
# --remote-debugging-port=9222 \
# --remote-allow-origins=* \
# --user-data-dir="$HOME/.chrome-debug-profile" \
# "https://watchcharts.com/watches/brand_index/rolex"
# 3. 等待頁面完全載入(圖表顯示),然後執行分析
python scripts/rolex_market_index_analyzer.py \
--start-date 2019-01-01 \
--end-date 2026-01-29 \
--freq W \
--liquidity-model fed_net_liquidity \
--cdp-port 9222 \
--output result.json
</quick_start>
- 完整分析 - 從數據取得到狀態判讀的完整流程(推薦)
- 僅取得數據 - 只取得 FRED 數據與透過 CDP 抓取勞力士市場指數
- 僅計算指標 - 假設數據已備妥,直接計算所有指標
- 僅判讀狀態 - 假設指標已計算,判讀 grinding/fever 狀態
等待回應後再繼續。
讀取工作流程後,請完全遵循其步驟。
<directory_structure>
skills/analyze-rolex-market-index-liquidity-proxy/
├── SKILL.md # 本檔案(路由與核心原則)
├── skill.yaml # 前端展示設定
├── manifest.json # 技能元資料
├── workflows/
│ └── analyze.md # 主要分析工作流(6 步驟)
├── references/
│ ├── methodology.md # 方法論(公式、規則、判讀邏輯)
│ ├── input-schema.md # 輸入參數定義
│ └── data-sources.md # 數據來源文檔
├── templates/
│ ├── output-json.md # JSON 輸出模板
│ └── output-markdown.md # Markdown 報告模板
├── scripts/
│ ├── fetch_rolex_index.py # CDP 爬蟲(WatchCharts Rolex Index)
│ ├── rolex_market_index_analyzer.py # 主要分析腳本
│ └── rolex_market_index_plotter.py # 視覺化腳本(選配)
└── examples/
└── sample-output.json # 範例輸出
</directory_structure>
<reference_index>
參考文件 (references/)
What ships with it
13 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.
- examples/sample-output.json 2.9 KB
- manifest.json 1.9 KB
- references/data-sources.md 6.3 KB
- references/input-schema.md 4.0 KB
- references/methodology.md 4.8 KB
- scripts/fetch_rolex_index.py 24 KB runs code
- scripts/rolex_market_index_analyzer.py 18 KB runs code
- scripts/rolex_market_index_plotter.py 16 KB runs code
- scripts/start_chrome_debug.ps1 819 B runs code
- skill.yaml 22 KB
- templates/output-json.md 4.4 KB
- templates/output-markdown.md 4.3 KB
- workflows/analyze.md 10 KB
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.
- 12d ago First seen · 247 lines · 62 tokens per session scan A 4db0d4bc4833
analyze-rolex-market-index-liquidity-proxy is a skill published in the GitHub repository fatfingererr/macro-skills (3 stars, last pushed 7mo ago), licensed MIT. It adds 62 tokens to every session and 3,148 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-08-31.
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.
furusato
A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.
reading-receipt
An image-reading workflow for extracting structured information from receipts, invoices, and hometown-tax donation certificates. It can first extract text from PDFs and otherwise read their images.