plugins/taipei-open-data-list/skills/taipei-open-data-list/SKILL.md
This skill should be used when the user asks to "查詢台北市/新北市開放資料", "列出台北市/新北市資料集", "台北開放資料有哪些", or wants to browse or filter Taipei/New Taipei Open Data datasets by category.
npx skillsauth add 0yukali0/my-skills taipei-open-data-listInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| 參數 | 必填 | 說明 |
|------|------|------|
| urls | 否 | JSON 格式的城市→API URL 對照表;不填則同時查詢台北市與新北市 |
當使用者要查詢台北市或新北市開放資料集時,依需求選擇以下功能執行。
從使用者的描述中判斷要查詢哪個城市:
--urls)--urls '{"taipei": "https://data.taipei/api/frontstage/tpeod/dataset.download?format=json"}'--urls '{"new-taipei": "https://data.ntpc.gov.tw/api/datasets/info/json"}'在 plugins/taipei-open-data-list/commands 目錄下執行:
cd plugins/taipei-open-data-list/commands
UV_PROJECT_ENVIRONMENT=/tmp/.taipei-open-data-list-venv uv sync --locked && source /tmp/.taipei-open-data-list-venv/bin/activate
查詢全部(兩市):
flyte run --local wf.py describe_wf
僅查詢台北市:
flyte run --local wf.py describe_wf --urls '{"taipei": "https://data.taipei/api/frontstage/tpeod/dataset.download?format=json"}'
僅查詢新北市:
flyte run --local wf.py describe_wf --urls '{"new-taipei": "https://data.ntpc.gov.tw/api/datasets/info/json"}'
告知使用者查詢到的資料集清單,說明各城市的資料集總數。
回傳所有資料集的下載連結,格式為 {資料集名稱: url}。
cd plugins/taipei-open-data-list/commands
UV_PROJECT_ENVIRONMENT=/tmp/.taipei-open-data-list-venv uv sync --locked && source /tmp/.taipei-open-data-list-venv/bin/activate && flyte run --local wf.py links_wf
僅查台北市:
flyte run --local wf.py links_wf --urls '{"taipei": "https://data.taipei/api/frontstage/tpeod/dataset.download?format=json"}'
僅查新北市:
flyte run --local wf.py links_wf --urls '{"new-taipei": "https://data.ntpc.gov.tw/api/datasets/info/json"}'
連結格式:
https://data.taipei/<資料存取網址>(若已是完整 URL 則直接使用)https://data.ntpc.gov.tw/api/datasets/<識別碼>/<提供格式>輸入關鍵字,回傳名稱包含該關鍵字的資料集連結,格式為 {資料集名稱: url}。關鍵字比對不區分大小寫。
| 參數 | 必填 | 說明 |
|------|------|------|
| urls | 否 | 城市→API URL 對照表;不填則查詢兩市 |
| keyword | 是 | 過濾用關鍵字(比對資料集名稱) |
查詢含特定關鍵字的資料集:
flyte run --local wf.py keyword_links_wf --keyword '交通'
限定城市查詢:
flyte run --local wf.py keyword_links_wf --urls '{"taipei": "https://data.taipei/api/frontstage/tpeod/dataset.download?format=json"}' --keyword '空氣品質'
development
This skill should be used when the user wants to visualize data from URLs (CSV or JSON) using interactive charts. Claude fetches the data, analyzes the columns and content, decides the best chart type, generates a Gradio gr.HTML app with Plotly, and verifies the result with Playwright.
development
This skill should be used when the user asks to "查詢新北市開放資料", "列出新北市資料集", "新北開放資料有哪些", or wants to browse or filter New Taipei City Open Data datasets by category.
development
This skill should be used when the user asks to "create a mindmap", "generate a mindmap", "draw a mindmap", or wants to visualize structured information as a mindmap diagram.
data-ai
Download a Roboflow COCO dataset and train a Faster RCNN object detection model with PyTorch Lightning, returning model.pt if accuracy meets the requirement.