Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计异常

analyze-rolex-market-index-liquidity-proxy分析劳力士市场指数流动性 Agent

Agent Skill

analyze-rolex-market-index-liquidity-proxy 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

233

周安装

10

GitHub Stars

3

下载量

82
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:analyze-rolex-market-index-liquidity-proxy(分析劳力士市场指数流动性 Agent)
来源仓库:https://github.com/fatfingererr/macro-skills
仓库路径:skills/analyze-rolex-market-index-liquidity-proxy
安装命令:
npx skills add https://github.com/fatfingererr/macro-skills --skill analyze-rolex-market-index-liquidity-proxy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/fatfingererr/macro-skills --skill analyze-rolex-market-index-liquidity-proxy

简介

analyze-rolex-market-index-liquidity-proxy 以劳力士市场指数为核心代理,结合 Fed 净流动性与实质利率判断金融体系资金动向。

  • 适用于识别 grinding_higher(缓慢磨高)或 speculative_fever(投机狂热)状态,辅助资产配置决策。
  • 需从 FRED 获取宏观数据并通过 CDP 抓取二级市场报价,输出结构化 JSON 与 Markdown 报告。
  • 依赖 Chrome 调试端口与 WebSocket 连接,仅适用于支持远程调试的环境,注意隐私与安全限制。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

<essential_principles> 以勞力士指數分析流動性投機程度 核心原則

淨流動性上升 → 金融體系實際可用資金增加 → 風險資產與勞力士二級市場受益

以勞力士市場指數為核心,對照 Fed 淨流動性與實質利率,完成以下判斷:

  1. 確認參數:時間範圍、頻率、流動性模型
  2. 取得數據:從 FRED 取得流動性與利率數據,透過 CDP 抓取勞力士市場指數
  3. 計算指標:z-score、滾動斜率、滾動 β、距峰值距離
  4. 判讀狀態:grinding_higher(緩慢磨高)或 speculative_fever(投機狂熱)
  5. 產出報告:結構化 JSON + Markdown 摘要
  6. 提供建議:下一步監控重點與交叉驗證方向

<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>

  1. 完整分析 - 從數據取得到狀態判讀的完整流程(推薦)
  2. 僅取得數據 - 只取得 FRED 數據與透過 CDP 抓取勞力士市場指數
  3. 僅計算指標 - 假設數據已備妥,直接計算所有指標
  4. 僅判讀狀態 - 假設指標已計算,判讀 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/)

文件內容
methodology.md方法論:z-score、滾動斜率、滾動 β、grinding/fever 判讀規則
input-schema.md所有輸入參數的定義、型別、預設值、可選值
data-sources.mdFRED 系列代碼、WatchCharts CDP 抓取、fallback 方案
</reference_index>

<workflows_index>

WorkflowPurpose
analyze.md完整分析流程(6 步驟:確認參數→取得數據→計算指標→判讀狀態→產出報告→建議)
</workflows_index>

<templates_index>

TemplatePurpose
output-json.md結構化 JSON 輸出模板(含 summary、metrics、signals、diagnostics)
output-markdown.mdMarkdown 報告模板(含 TL;DR、依據、風險、下一步)
</templates_index>

<scripts_index>

ScriptPurpose
fetch_rolex_index.pyCDP 爬蟲:從 WatchCharts 自動抓取 Rolex Market Index
rolex_market_index_analyzer.py主要分析腳本:FRED 數據取得、CDP 抓取、指標計算、狀態判讀
rolex_market_index_plotter.py視覺化腳本:雙軸圖(勞力士市場指數 vs 淨流動性)、z-score 熱力圖

執行範例:

# 完整分析(需先啟動 Chrome 調試模式並開啟 WatchCharts 頁面)
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

# 視覺化(選配)
python scripts/rolex_market_index_plotter.py \
  --input result.json \
  --output-dir output/

</scripts_index>

<input_schema_summary> 輸入參數摘要

參數型別必要預設值說明
start_datestring-分析起始日(YYYY-MM-DD)
end_datestring-分析結束日(YYYY-MM-DD)
frequencystring"W"頻率:D/W/M
liquidity_scopestring"US"US 或 GLOBAL
include_real_yieldbooleantrue是否加入 DFII10
real_yield_seriesstring"DFII10"FRED 實質利率代號
liquidity_modelstring"fed_net_liquidity"流動性模型
benchmark_assetsarray[]參考資產代號
fever_threshold_znumber2.0投機狂熱 z-score 閾值
grind_windowint13斜率/均線滾動窗口

完整定義請見 references/input-schema.md。 </input_schema_summary>

<output_schema_summary> 輸出結構摘要

{
  "skill": "analyze_veblen_goods_liquidity_proxy",
  "inputs": { "..." },
  "summary": {
    "state": "grinding_higher | speculative_fever | neutral | declining",
    "interpretation": ["..."]
  },
  "metrics": {
    "latest_index": 28400,
    "pct_below_peak": -0.33,
    "grind_slope": 12.4,
    "rolex_zscore": 0.6,
    "dfii10_level": 1.9,
    "net_liquidity_change": 2.1e10,
    "rolling_beta_vs_net_liquidity": 1.8
  },
  "signals": {
    "grinding_higher": true,
    "speculative_fever": false
  },
  "diagnostics": { "..." }
}

完整模板請見 templates/output-json.md。 </output_schema_summary>

<success_criteria> Skill 成功執行時:

  • FRED 數據(DFII10、WALCL、RRPONTSYD、WTREGEN)成功取得
  • WatchCharts Rolex Market Index CDP 自動抓取成功且缺值比例 < 5%
  • 所有頻率對齊完成(resample + forward-fill)
  • z-score、滾動斜率、滾動 β 計算完成
  • grinding_higher / speculative_fever 狀態判讀完成
  • JSON 輸出包含 summary、metrics、signals、diagnostics
  • Markdown 報告包含 TL;DR、依據、風險、下一步
  • 距峰值百分比(pct_below_peak)正確反映當前位置 </success_criteria>

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.69%
按下载量换算27

Claude

31.8%
按下载量换算26

Cursor

17.24%
按下载量换算14

Gemini CLI

10.14%
按下载量换算8

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills