feat: Skills 全面升級 v3 — 真實開源技能 + 台股覆蓋 + 完整文檔

## Skills 變動(38 個技能)
- 刪除:para-memory-files(不存在於任何真實 repo)
- 新增 20 個來自真實開源 repo 的技能:
  tradermonty: trader-memory-core, earnings-calendar, sector-analyst,
               uptrend-analyzer, macro-regime-detector, canslim-screener,
               vcp-screener, ftd-detector, downtrend-duration-analyzer,
               edge-pipeline-orchestrator, trade-hypothesis-ideator,
               strategy-pivot-designer, data-quality-checker, edge-candidate-agent
  anthropics:  doc-coauthoring, internal-comms, xlsx
  langalpha:   morning-note, thesis-tracker, initiating-coverage

## Agent 技能更新(9 個 Agent)
- finance-researcher: 3 → 5 個技能(+earnings-calendar, morning-note)
- market-structure-researcher: 2 → 5 個技能(+sector-analyst, uptrend-analyzer, macro-regime-detector)
- bullish-researcher: 2 → 6 個技能(+canslim-screener, vcp-screener, ftd-detector, initiating-coverage)
- bearish-researcher: 2 → 3 個技能(+downtrend-duration-analyzer)
- quant-strategist: 3 → 7 個技能(+edge-pipeline-orchestrator, trade-hypothesis-ideator, thesis-tracker, macro-regime-detector)
- quant-engineer: 2 → 4 個技能(+strategy-pivot-designer, data-quality-checker)
- data-analyst: 1 → 3 個技能(+edge-candidate-agent, xlsx)
- reviewer: 1 → 2 個技能(+data-quality-checker)
- secretary: para-memory-files → trader-memory-core + doc-coauthoring + internal-comms

## 文檔新增(3 份)
- docs/skills-inventory.md:四大 repo 完整技能調查(tradermonty 51、OctagonAI 66、langalpha 26、anthropics 17)
- docs/mcp-plan.md:8 個 MCP Server 完整配置方案(台股+美股+總經+加密)
- docs/agent-skill-mapping.md:Agent 技能對應表 v2.0(含台股覆蓋說明)

## 台股覆蓋
- MCP 計畫包含 CasualMarket(23工具)+ twsemcp(22工具)+ Fugle 官方
- morning-note 技能整合台股盤前數據(外資、融資融券、台指期)
- market-environment-analysis 明確涵蓋台股加權指數

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Chris
2026-04-10 20:55:25 +00:00
parent c78afdbd4b
commit 3079e1a0ae
33 changed files with 1667 additions and 25 deletions

View File

@@ -0,0 +1,48 @@
---
name: 資料品質檢查器
description: 驗證金融數據的準確性,包括價格刻度、工具代碼格式、日期連續性、配置合計、單位一致性,防止錯誤數據影響分析
metadata:
sources:
- kind: github-file
repo: tradermonty/claude-trading-skills
path: skills/data-quality-checker/SKILL.md
usage: referenced
---
# 資料品質檢查器
在分析或回測執行前系統性驗證數據品質避免垃圾進垃圾出GIGO
## 驗證項目
### 價格數據
- 價格刻度合理性(股票不應出現 100 倍異常)
- OHLCV 邏輯一致性High ≥ Low、Volume ≥ 0
- 缺漏日期偵測(非交易日除外)
- 股票分割/股息調整確認
### 代碼格式
- 美股格式驗證AAPL、2330.TW、^TWII
- 台股代碼格式4-5位數字
- 加密貨幣格式BTC/USDT
### 財務數據
- 數值單位一致性(千元 vs 百萬元)
- YoY 成長率合理性檢查(排除異常值)
- 財報日期連續性
### 配置數據
- 部位合計 = 100%
- 個別部位不超過上限
## 輸出格式
- 通過/失敗評定
- 問題清單按嚴重度Critical / Warning / Info
- 數據修正建議
## 使用時機
- 回測工程師執行回測前
- 審查員審查財務報告前
- 任何 Agent 使用外部數據前