You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flowchart TD
Q["文件查詢"] --> C{"per-question 分類:<br/>有沒有本機、<br/>version-matched 的源?"}
C -->|"web-only<br/>(Claude Code、SaaS、hosted docs)"| W["查 web-latest<br/>(不協調、<br/>不問升級)"]
C -->|"has-local<br/>(已裝套件 / CLI)"| T{"context-aware 觸發?<br/>在用到的專案裡,或<br/>版本 / 升級 / debug 問題"}
T -->|"否"| W
T -->|"是"| L["introspect: 本機已裝版<br/>(READ-ONLY, cwd-scoped)"]
L --> V["latest_version: web-latest"]
V --> CMP{"已裝 vs 最新"}
CMP -->|"相同"| LOCAL["以本機<br/>已裝版回答"]
CMP -->|"web 較新"| U{"升級?<br/>(需明確確認)"}
U -->|"不升"| LOCAL
U -->|"升"| INS["skill 執行安裝<br/>(MCP 維持 read-only)"]
INS --> LOCAL
Loading
說明
分類是 per-question。同一工具可兼兩者:「怎麼設定 Claude Code」是 web-only;「已裝的 claude 有什麼 flag」是 has-local。