From book-study
Use this skill when the user asks to "調查問題", "研究這個概念", "為什麼會這樣", "深入了解", "investigate", "research this", "回答問題", "Q&A", "幫我查", "這是什麼意思", or raises questions about study material that need deeper investigation beyond what the notes cover. Also triggered when user has a list of questions in a notes file and wants them all investigated.
npx claudepluginhub tim80411/ai-agent-extension --plugin book-studyThis skill uses the workspace's default tool permissions.
接收用戶的疑問,調查原始碼、文件、網路資源,產生結構化的 Q&A 回答。
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
接收用戶的疑問,調查原始碼、文件、網路資源,產生結構化的 Q&A 回答。
Goal: 確認所有必要參數。
Actions:
檢查當前目錄是否有 .study-progress.json,若有則讀取:
source(原始素材路徑)chapter(學習單元名稱,用於推斷檔案名稱)output(筆記檔案路徑)output(已存在的 Q&A 檔案路徑)使用 AskUserQuestion 確認:
.study-progress.json 的 source 取得).study-progress.json 的 Phase 1 output 取得。用於提供 agent 調查的背景脈絡)Goal: 確定所有需要調查的問題。
Actions:
AskUserQuestion 確認是否全部調查,或讓用戶挑選Goal: 以原文為基礎,對每個問題進行深入調查。
Actions:
Agent 工具,run_in_background: true)Goal: 將所有調查結果整合為結構化的 Q&A 文件。
Actions:
檔案命名:{chapter-name}-qa.md
# {章節標題} Q&A
---
## Q1: {問題標題}
### {子標題}
{回答內容}
- 使用表格比較不同情境
- 使用程式碼區塊示範具體案例
- 粗體標記關鍵概念
> **來源**:{引用來源,如文件章節、原始碼路徑、技術文章 URL}
---
## Q2: {問題標題}
...
## Q{N}: {問題標題(繁體中文)}### 用於組織回答的不同面向> **來源**:... 格式標註--- 分隔若存在 .study-progress.json,更新 Phase 4 狀態。