
如果 AI 能夠找出你甚至沒想到要問的錯誤,會怎樣?
在本章中,GitHub Copilot CLI 將成為你日常開發的主力工具。你將在日常依賴的工作流程中使用它:測試、重構、除錯,以及 Git。
🎯 學習目標
完成本章後,你將能夠:
- 使用 Copilot CLI 執行全面的程式碼審查
- 安全地重構舊有程式碼
- 在 AI 協助下進行除錯
- 自動產生測試
- 將 Copilot CLI 整合進你的 git 工作流程
⏱️ 預估時間:約 60 分鐘(閱讀 15 分鐘 + 實作 45 分鐘)
🧩 真實世界類比:木工師傅的工作流程
木工師傅不只是會用工具,他們針對不同工作有專屬流程:

同樣地,開發者針對不同任務也有各自的工作流程。GitHub Copilot CLI 能強化這些流程,讓你在日常寫程式時更有效率、更有成效。
五大工作流程

以下每個工作流程都是獨立的。你可以選擇符合當前需求的流程,或全部依序練習。
自選冒險
本章涵蓋開發者常用的五種工作流程。不需要一次全部讀完! 每個流程都收納在下方可展開的區塊中。請挑選最符合你需求、最適合你目前專案的流程練習。你隨時可以回來探索其他流程。

請在下方選擇一個工作流程展開,看看 GitHub Copilot CLI 如何強化你在該領域的開發流程。
工作流程 1:程式碼審查 - 審查檔案、使用 /review agent、建立嚴重性檢查清單
### 基本審查
這個範例使用 `@` 符號參照檔案,讓 Copilot CLI 能直接存取其內容進行審查。
```bash
copilot
> Review @samples/book-app-project/book_app.py for code quality
```
---
🎬 實際操作影片

*Demo 輸出會有所不同。你的模型、工具與回應內容可能和這裡顯示的不一樣。*
---
### 輸入驗證審查
請 Copilot CLI 專注於特定議題(這裡是輸入驗證),只要在提示中列出你關心的類別即可。
```text
copilot
> Review @samples/book-app-project/utils.py for input validation issues. Check for: missing validation, error handling gaps, and edge cases
```
### 跨檔案專案審查
用 `@` 參照整個目錄,讓 Copilot CLI 一次掃描專案中的所有檔案。
```bash
copilot
> @samples/book-app-project/ Review this entire project. Create a markdown checklist of issues found, categorized by severity
```
### 互動式程式碼審查
使用多輪對話深入探討。先進行廣泛審查,再提出後續問題,無需重新開始。
```bash
copilot
> @samples/book-app-project/book_app.py Review this file for:
> - Input validation
> - Error handling
> - Code style and best practices
# Copilot CLI 提供詳細審查
> The user input handling - are there any edge cases I'm missing?
# Copilot CLI 顯示空字串、特殊字元等潛在問題
> Create a checklist of all issues found, prioritized by severity
# Copilot CLI 產生依嚴重性排序的行動項目清單
```
### 審查檢查清單範本
請 Copilot CLI 以特定格式輸出(例如:可直接貼到 issue 的依嚴重性分類的 markdown 檢查清單)。
```bash
copilot
> Review @samples/book-app-project/ and create a markdown checklist of issues found, categorized by:
> - Critical (data loss risks, crashes)
> - High (bugs, incorrect behavior)
> - Medium (performance, maintainability)
> - Low (style, minor improvements)
```
### 了解 Git 變更(/review 很重要)
在使用 `/review` 指令前,你需要了解 git 變更的兩種類型:
| 變更類型 | 意義 | 如何查看 |
|-------------|---------------|------------|
| **已暫存變更** | 你已用 `git add` 標記,準備下次提交的檔案 | `git diff --staged` |
| **未暫存變更** | 你已修改但尚未加入暫存區的檔案 | `git diff` |
```bash
# 快速參考
git status # 顯示已暫存與未暫存變更
git add file.py # 將檔案加入暫存區
git diff # 顯示未暫存變更
git diff --staged # 顯示已暫存變更
```
### 使用 /review 指令
`/review` 指令會呼叫內建的**程式碼審查 agent**,專為分析已暫存與未暫存變更設計,能產生高訊息密度的回饋。用 slash 指令觸發專門的內建 agent,而非自由格式提示。
```bash
copilot
> /review
# 針對已暫存/未暫存變更啟動程式碼審查 agent
# 提供聚焦且可行的回饋
> /review Check for security issues in authentication
# 針對特定重點執行審查
```
> 💡 **提示**:程式碼審查 agent 在你有待提交變更時效果最佳。請用 `git add` 將檔案加入暫存區,以獲得更聚焦的審查。
工作流程 2:重構 - 重組程式碼、分離關注點、改善錯誤處理
### 簡單重構
> **先試試這個:** `@samples/book-app-project/book_app.py The command handling uses if/elif chains. Refactor it to use a dictionary dispatch pattern.`
從簡單的改善開始。請在書籍應用程式上嘗試這些範例。每個提示都用 `@` 檔案參照搭配明確的重構指令,讓 Copilot CLI 知道要改什麼。
```bash
copilot
> @samples/book-app-project/book_app.py The command handling uses if/elif chains. Refactor it to use a dictionary dispatch pattern.
> @samples/book-app-project/utils.py Add type hints to all functions
> @samples/book-app-project/book_app.py Extract the book display logic into utils.py for better separation of concerns
```
> 💡 **重構新手?** 先從加上 type hints 或改善變數命名這類簡單請求開始,再挑戰複雜的轉換。
---
🎬 實際操作影片

*Demo 輸出會有所不同。你的模型、工具與回應內容可能和這裡顯示的不一樣。*
---
### 分離關注點
在單一提示中用 `@` 參照多個檔案,讓 Copilot CLI 能在重構時跨檔案移動程式碼。
```bash
copilot
> @samples/book-app-project/utils.py @samples/book-app-project/book_app.py
> The utils.py file has print statements mixed with logic. Refactor to separate display functions from data processing.
```
### 改善錯誤處理
提供兩個相關檔案並描述橫跨多處的議題,讓 Copilot CLI 能建議一致的修正方式。
```bash
copilot
> @samples/book-app-project/utils.py @samples/book-app-project/books.py
> These files have inconsistent error handling. Suggest a unified approach using custom exceptions.
```
### 增加文件註解
用詳細的條列清單指定每個 docstring 應包含的內容。
```bash
copilot
> @samples/book-app-project/books.py Add comprehensive docstrings to all methods:
> - Include parameter types and descriptions
> - Document return values
> - Note any exceptions raised
> - Add usage examples
```
### 搭配測試安全重構
在多輪對話中串接兩個相關請求。先產生測試,再進行重構,讓測試成為安全網。
```bash
copilot
> @samples/book-app-project/books.py Before refactoring, generate tests for current behavior
# 先取得測試
> Now refactor the BookCollection class to use a context manager for file operations
# 有信心地重構——測試可驗證行為未變
```
工作流程 3:除錯 - 追蹤錯誤、安全稽核、跨檔案追蹤問題
### 簡單除錯
> **先試試這個:** `@samples/book-app-buggy/books_buggy.py Users report that searching for "The Hobbit" returns no results even though it's in the data. Debug why.`
先描述發生了什麼問題。這裡有幾種常見的除錯模式,你可以在有錯誤的書籍應用程式上嘗試。每個提示都用 `@` 檔案參照搭配明確的症狀描述,讓 Copilot CLI 能定位並診斷錯誤。
```bash
copilot
# 模式:「預期 X,實際卻是 Y」
> @samples/book-app-buggy/books_buggy.py Users report that searching for "The Hobbit" returns no results even though it's in the data. Debug why.
# 模式:「出現非預期行為」
> @samples/book-app-buggy/book_app_buggy.py When I remove a book that doesn't exist, the app says it was removed. Help me find why.
# 模式:「結果錯誤」
> @samples/book-app-buggy/books_buggy.py When I mark one book as read, ALL books get marked. What's the bug?
```
> 💡 **除錯小技巧**:描述*症狀*(你看到什麼)和*預期*(應該發生什麼)。Copilot CLI 會幫你找出原因。
---
🎬 實際操作影片

*Demo 輸出會有所不同。你的模型、工具與回應內容可能和這裡顯示的不一樣。*
---
### 「錯誤偵探」——AI 找出*相關*錯誤
這正是情境感知除錯的強大之處。請在有錯誤的書籍應用程式上試試這個情境。用 `@` 提供整個檔案,只描述使用者回報的症狀。Copilot CLI 會追蹤根本原因,甚至可能發現附近的其他錯誤。
```bash
copilot
> @samples/book-app-buggy/books_buggy.py
>
> Users report: "Finding books by author name doesn't work for partial names"
> Debug why this happens
```
**Copilot CLI 的做法**:
```
根本原因:第 80 行使用了完全比對(==)而非部分比對(in)。
Line 80: return [b for b in self.books if b.author == author]
find_by_author 函式需要完全比對。搜尋 "Tolkien" 找不到 "J.R.R. Tolkien" 的書。
修正:改為不分大小寫的部分比對:
return [b for b in self.books if author.lower() in b.author.lower()]
```
**為什麼這很重要**:Copilot CLI 會讀取整個檔案,理解你的錯誤報告情境,並給你具體的修正建議與清楚的說明。
> 💡 **加分**:因為 Copilot CLI 會分析整個檔案,經常能發現你沒問到的*其他*問題。例如,在修正作者搜尋時,Copilot CLI 可能也會注意到 `find_book_by_title` 的大小寫問題!
### 真實世界安全性補充
除錯自己的程式碼很重要,但理解生產環境應用程式的安全漏洞更是關鍵。請試試這個範例:將 Copilot CLI 指向一個你不熟悉的檔案,請它稽核安全性問題。
```bash
copilot
> @samples/buggy-code/python/user_service.py Find all security vulnerabilities in this Python user service
```
這個檔案展示了你在生產環境應用程式中會遇到的真實安全模式。
> 💡 **你會遇到的常見安全術語:**
> - **SQL Injection(SQL 注入)**:當使用者輸入直接放進資料庫查詢,讓攻擊者能執行惡意指令
> - **Parameterized queries(參數化查詢)**:安全做法——用佔位符(`?`)將使用者資料與 SQL 指令分離
> - **Race condition(競爭條件)**:兩個操作同時發生而互相干擾
> - **XSS(跨站腳本攻擊)**:攻擊者將惡意腳本注入網頁
---
### 了解錯誤
將堆疊追蹤直接貼進提示,並加上 `@` 檔案參照,讓 Copilot CLI 能將錯誤對應到原始碼。
```bash
copilot
> I'm getting this error:
> AttributeError: 'NoneType' object has no attribute 'title'
> at show_books (book_app.py:19)
>
> @samples/book-app-project/book_app.py Explain why and how to fix it
```
### 用測試案例除錯
描述確切的輸入與觀察到的輸出,讓 Copilot CLI 能根據具體、可重現的測試案例進行推理。
```bash
copilot
> @samples/book-app-buggy/books_buggy.py The remove_book function has a bug. When I try to remove "Dune",
> it also removes "Dune Messiah". Debug this: explain the root cause and provide a fix.
```
### 跨檔案追蹤問題
參照多個檔案,請 Copilot CLI 追蹤資料流,找出問題源頭。
```bash
copilot
> Users report that the book list numbering starts at 0 instead of 1.
> @samples/book-app-buggy/book_app_buggy.py @samples/book-app-buggy/books_buggy.py
> Trace through the list display flow and identify where the issue occurs
```
### 了解資料問題
同時提供資料檔案與讀取該資料的程式碼,讓 Copilot CLI 在建議錯誤處理改善時能掌握全貌。
```bash
copilot
> @samples/book-app-project/data.json @samples/book-app-project/books.py
> Sometimes the JSON file gets corrupted and the app crashes. How should we handle this gracefully?
```
工作流程 4:測試產生 - 自動產生全面測試與邊界案例
> **先試試這個:** `@samples/book-app-project/books.py Generate pytest tests for all functions including edge cases`
### 「測試爆炸」——2 個測試 vs 15+ 個測試
手動寫測試時,開發者通常只會寫 2-3 個基本測試:
- 測試有效輸入
- 測試無效輸入
- 測試邊界案例
看看當你請 Copilot CLI 產生全面測試時會發生什麼!這個提示用條列清單搭配 `@` 檔案參照,引導 Copilot CLI 產生完整的測試覆蓋:
```bash
copilot
> @samples/book-app-project/books.py Generate comprehensive pytest tests. Include tests for:
> - Adding books
> - Removing books
> - Finding by title
> - Finding by author
> - Marking as read
> - Edge cases with empty data
```
---
🎬 實際操作影片

*Demo 輸出會有所不同。你的模型、工具與回應內容可能和這裡顯示的不一樣。*
---
**你會得到**:15+ 個全面測試,包括:
```python
class TestBookCollection:
# Happy path
def test_add_book_creates_new_book(self):
...
def test_list_books_returns_all_books(self):
...
# Find operations
def test_find_book_by_title_case_insensitive(self):
...
def test_find_book_by_title_returns_none_when_not_found(self):
...
def test_find_by_author_partial_match(self):
...
def test_find_by_author_case_insensitive(self):
...
# Edge cases
def test_add_book_with_empty_title(self):
...
def test_remove_nonexistent_book(self):
...
def test_mark_as_read_nonexistent_book(self):
...
# Data persistence
def test_save_books_persists_to_json(self):
...
def test_load_books_handles_missing_file(self):
...
def test_load_books_handles_corrupted_json(self):
...
# Special characters
def test_add_book_with_unicode_characters(self):
...
def test_find_by_author_with_special_characters(self):
...
```
**成果**:30 秒內,你就能得到原本要花一小時思考與撰寫的邊界案例測試。
---
### 單元測試
針對單一函式,列出你想測試的輸入類型,讓 Copilot CLI 產生聚焦且完整的單元測試。
```bash
copilot
> @samples/book-app-project/utils.py Generate comprehensive pytest tests for get_book_details covering:
> - Valid input
> - Empty strings
> - Invalid year formats
> - Very long titles
> - Special characters in author names
```
### 執行測試
用白話英文詢問你的工具鏈。Copilot CLI 會幫你產生正確的 shell 指令。
```bash
copilot
> How do I run the tests? Show me the pytest command.
# Copilot CLI 回應:
# cd samples/book-app-project && python -m pytest tests/
# 或顯示詳細輸出:python -m pytest tests/ -v
# 若要看到 print 輸出:python -m pytest tests/ -s
```
### 特定情境測試
列出進階或棘手的情境,讓 Copilot CLI 超越一般情境,涵蓋更多測試面向。
```bash
copilot
> @samples/book-app-project/books.py Generate tests for these scenarios:
> - Adding duplicate books (same title and author)
> - Removing a book by partial title match
> - Finding books when collection is empty
> - File permission errors during save
> - Concurrent access to the book collection
```
### 為現有檔案新增測試
請 Copilot CLI 為單一函式產生*額外*測試,讓新案例能補足你已經有的測試。
```bash
copilot
> @samples/book-app-project/books.py
> Generate additional tests for the find_by_author function with edge cases:
> - Author name with hyphens (e.g., "Jean-Paul Sartre")
> - Author with multiple first names
> - Empty string as author
> - Author name with accented characters
```
工作流程 5:Git 整合 - 提交訊息、PR 描述、/pr、/delegate、/diff 與 /branch
> 💡 **本流程假設你已熟悉 git 基本操作**(暫存、提交、分支)。如果你是 git 新手,建議先練習前四個流程。
### 產生提交訊息
> **先試試這個:** `copilot -p "Generate a conventional commit message for: $(git diff --staged)"` — 先將一些變更加入暫存區,再執行這個指令,看看 Copilot CLI 如何幫你寫提交訊息。
這個範例用 `-p` 行內提示旗標搭配 shell 指令替換,將 `git diff` 輸出直接傳給 Copilot CLI,讓它一次性產生提交訊息。`$(...)` 語法會執行括號內的指令,並將其輸出插入外部指令。
```bash
# 查看變更內容
git diff --staged
# 用 [Conventional Commit](/GLOSSARY.html#conventional-commit) 格式產生提交訊息
# (結構化訊息,如 "feat(books): add search" 或 "fix(data): handle empty input")
copilot -p "Generate a conventional commit message for: $(git diff --staged)"
# 輸出範例:"feat(books): add partial author name search
#
# - Update find_by_author to support partial matches
# - Add case-insensitive comparison
# - Improve user experience when searching authors"
```
---
🎬 實際操作影片

*Demo 輸出會有所不同。你的模型、工具與回應內容可能和這裡顯示的不一樣。*
---
### 解釋變更
將 `git show` 輸出導入 `-p` 提示,取得上一個提交的白話摘要。
```bash
# 這次提交改了什麼?
copilot -p "Explain what this commit does: $(git show HEAD --stat)"
```
### PR 描述
結合 `git log` 輸出與結構化提示範本,自動產生完整的 pull request 描述。
```bash
# 根據分支變更產生 PR 描述
copilot -p "Generate a pull request description for these changes:
$(git log main..HEAD --oneline)
Include:
- Summary of changes
- Why these changes were made
- Testing done
- Breaking changes? (yes/no)"
```
### 在互動模式下用 /pr 操作目前分支
如果你在 Copilot CLI 互動模式下操作分支,可以用 `/pr` 指令管理 pull request。用 `/pr` 查看 PR、建立新 PR、修正現有 PR,或讓 Copilot CLI 根據分支狀態自動決定。
```bash
copilot
> /pr [view|create|fix|auto]
```
### 推送前審查
在 `-p` 提示中用 `git diff main..HEAD`,快速檢查所有分支變更,確保推送前沒問題。
```bash
# 推送前最後檢查
copilot -p "Review these changes for issues before I push:
$(git diff main..HEAD)"
```
### 用 /delegate 處理背景任務
`/delegate` 指令會將工作交給 GitHub Copilot 雲端 agent。用 `/delegate` slash 指令(或 `&` 快捷鍵)將明確的任務交給背景 agent 處理。
```bash
copilot
> /delegate Add input validation to the login form
# 或用 & 前綴快捷鍵:
> & Fix the typo in the README header
# Copilot CLI:
# 1. 將你的變更提交到新分支
# 2. 開啟草稿 pull request
# 3. 在 GitHub 背景作業
# 4. 完成後請你審查
```
這很適合你想專心做其他事時,讓明確任務在背景自動完成。
### 用 /diff 檢視會話變更
`/diff` 指令會顯示目前會話中所有變更。用這個 slash 指令檢視 Copilot CLI 修改過的所有檔案差異,方便你在提交前審查。即使在非 git 專案資料夾也能用。
```bash
copilot
# 做了一些變更後...
> /diff
# 顯示本會話所有被修改檔案的視覺化差異
# 很適合提交前審查
```
### 用 /branch 或 /fork 分支你的會話
有時你想同時探索兩種不同解法,又不想失去原本的對話內容。`/branch` 指令(也可用 `/fork`)會複製你目前的會話,讓你能嘗試不同方向,之後再比較成果。
```bash
copilot
> Fix the find_by_author function to support partial matches
# 想嘗試不同做法——先分支!
> /branch
```# 現在你已進入新的會話副本。嘗試你的替代方案:
> 使用不同的正則表達式策略修正 find_by_author
# 如果你不喜歡這個結果,可以使用 /session 切換回原本的會話
```
> 💡 **`/branch` 和 `/fork` 是相同的**:這兩個指令執行的動作完全一樣。`/branch` 只是為了更直觀而新增的名稱。你可以選擇你覺得比較合理的那個來用。
> 💡 **什麼時候要分支**:當你不確定哪種做法比較好,想同時保留多個選項時,分支是很好的選擇。
快速提示:在規劃或撰寫程式前先做研究
當你需要調查某個函式庫、了解最佳實踐,或探索不熟悉的主題時,可以在寫任何程式碼之前,使用 /research 進行深入研究:
copilot
> /research What are the best Python libraries for validating user input in CLI apps?
Copilot 會搜尋 GitHub 儲存庫和網路資源,然後回傳帶有參考資料的摘要。這在你即將開始新功能、想先做出明智決策時特別有用。你也可以用 /share 分享研究結果。
💡 提示:/research 最適合在 /plan 之前使用。先研究做法,再規劃實作細節。
整合流程:修復錯誤的完整工作流程
以下是一個修復回報錯誤的完整工作流程:
# 1. 了解錯誤回報
copilot
> Users report: 'Finding books by author name doesn't work for partial names'
> @samples/book-app-project/books.py Analyze and identify the likely cause
# 2. 偵錯並修正(在同一會話中繼續)
> Based on the analysis, show me the find_by_author function and explain the issue
> Fix the find_by_author function to handle partial name matches
# 3. 產生修正用的測試
> @samples/book-app-project/books.py Generate pytest tests specifically for:
> - Full author name match
> - Partial author name match
> - Case-insensitive matching
> - Author name not found
# 離開互動式會話
> /exit
# 4. 執行 git add
# 將變更加入暫存區,讓 git diff --staged 有內容可用
git add .
# 5. 產生提交訊息
copilot -p "Generate commit message for: $(git diff --staged)"
# 範例輸出: "fix(books): support partial author name search"
# 6. 提交變更(可選)
git commit -m "<paste generated message>"
修復錯誤流程總結
| 步驟 |
動作 |
Copilot 指令 |
| 1 |
了解錯誤 |
> [describe bug] @relevant-file.py Analyze the likely cause |
| 2 |
分析與修正 |
> Show me the function and fix the issue |
| 3 |
產生測試 |
> Generate tests for [specific scenarios] |
| 4 |
暫存變更 |
git add . |
| 5 |
產生提交訊息 |
copilot -p "Generate commit message for: $(git diff --staged)" |
| 6 |
提交變更 |
git commit -m "<paste generated message>" |
練習

現在輪到你來實作這些工作流程。
▶️ 自己動手試試看
完成示範後,請嘗試以下變化:
-
錯誤偵探挑戰:請 Copilot CLI 偵錯 samples/book-app-buggy/books_buggy.py 中的 mark_as_read 函式。它是否有解釋為什麼這個函式會把所有書都標記為已讀,而不是只標記一本?
-
測試挑戰:為書籍應用程式中的 add_book 函式產生測試。計算 Copilot CLI 包含了多少你沒想到的邊界情境。
-
提交訊息挑戰:對書籍應用程式的任一檔案做個小變更,將其加入暫存區(git add .),然後執行:
copilot -p "Generate a conventional commit message for: $(git diff --staged)"
產生的訊息是否比你臨時寫的還要好?
自我檢查:當你能解釋為什麼「debug this bug」比「find bugs」更有力時(情境很重要!),就代表你已經理解開發工作流程。
📝 作業
主要挑戰:重構、測試並發佈
動手範例聚焦於 find_book_by_title 和程式碼審查。現在請你在 book-app-project 的其他函式上練習相同的工作流程:
- 審查:請 Copilot CLI 審查
books.py 中的 remove_book(),找出邊界情境與潛在問題:
@samples/book-app-project/books.py Review the remove_book() function. What happens if the title partially matches another book (e.g., "Dune" vs "Dune Messiah")? Are there any edge cases not handled?
- 重構:請 Copilot CLI 改善
remove_book(),讓它能處理像是不分大小寫比對、找不到書時回傳有用訊息等邊界情境
- 測試:為改良後的
remove_book() 產生 pytest 測試,涵蓋:
- 移除已存在的書
- 不分大小寫的標題比對
- 找不到書時回傳適當訊息
- 從空集合移除
- 審查:將變更加入暫存區並執行
/review,檢查是否還有遺漏的問題
- 提交:產生一則 conventional commit 訊息:
copilot -p "Generate a conventional commit message for: $(git diff --staged)"
💡 提示(點擊展開)
**每個步驟的範例提示:**
```bash
copilot
# 步驟 1:審查
> @samples/book-app-project/books.py Review the remove_book() function. What edge cases are not handled?
# 步驟 2:重構
> Improve remove_book() to use case-insensitive matching and return a clear message when the book isn't found. Show me the before and after code.
# 步驟 3:測試
> Generate pytest tests for the improved remove_book() function, including:
> - Removing a book that exists
> - Case-insensitive matching ("dune" should remove "Dune")
> - Book not found returns appropriate response
> - Removing from an empty collection
# 步驟 4:審查
> /review
# 步驟 5:提交
> Generate a conventional commit message for this refactor
```
**提示:** 改善完 `remove_book()` 後,可以問 Copilot CLI:「這個檔案裡還有哪些函式也適合做同樣的改善?」它可能會建議你對 `find_book_by_title()` 或 `find_by_author()` 做類似調整。
加分挑戰:用 Copilot CLI 建立一個應用程式
💡 注意:這個 GitHub Skills 練習使用的是 Node.js 而非 Python。你將練習的 GitHub Copilot CLI 技巧——建立 issue、產生程式碼、從終端機協作——適用於任何語言。
這個練習會教你如何用 GitHub Copilot CLI 建立 issue、產生程式碼,並在開發 Node.js 計算機應用程式時從終端機協作。你會安裝 CLI、使用範本與 Agent,並練習以指令列為主的反覆開發。
🔧 常見錯誤與疑難排解(點擊展開)
### 常見錯誤
| 錯誤 | 結果 | 修正方式 |
|------|------|----------|
| 使用模糊提示詞如「Review this code」 | 回饋過於籠統,容易漏掉重點問題 | 具體描述:「Review for SQL injection, XSS, and auth issues」 |
| 沒用 `/review` 做程式碼審查 | 錯過最佳化的程式碼審查 Agent | 使用 `/review`,它專為高訊號低雜訊輸出設計 |
| 只說「find bugs」沒給情境 | Copilot CLI 不知道你遇到什麼 bug | 描述症狀:「Users report X happens when Y」 |
| 產生測試時沒指定框架 | 可能用錯語法或斷言函式庫 | 指定:「Generate tests using Jest」或「using pytest」 |
### 疑難排解
**審查結果不完整**——請更明確指定要檢查什麼:
```bash
copilot
# 不要這樣:
> Review @samples/book-app-project/book_app.py
# 試試這樣:
> Review @samples/book-app-project/book_app.py for input validation, error handling, and edge cases
```
**測試語法不符我的框架**——請指定測試框架:
```bash
copilot
> @samples/book-app-project/books.py Generate tests using pytest (not unittest)
```
**重構後行為改變**——請 Copilot CLI 保持行為一致:
```bash
copilot
> @samples/book-app-project/book_app.py Refactor command handling to use dictionary dispatch. IMPORTANT: Maintain identical external behavior - no breaking changes
```
總結
🔑 重要重點

- 程式碼審查:用具體提示詞讓審查更全面
- 重構:先產生測試再重構更安全
- 除錯:同時給 Copilot CLI 錯誤訊息和程式碼效果更好
- 測試產生:應涵蓋邊界情境與錯誤狀況
- Git 整合:自動產生提交訊息與 PR 描述
📋 快速參考:完整指令與捷徑請見 GitHub Copilot CLI 指令參考。
✅ 檢查點:你已掌握核心技能
恭喜! 你已經具備 GitHub Copilot CLI 的所有核心技能:
| 技能 |
章節 |
你現在可以… |
| 基本指令 |
Ch 01 |
使用互動模式、規劃模式、程式化模式(-p)與斜線指令 |
| 情境 |
Ch 02 |
用 @ 參考檔案、管理會話、理解 context window |
| 工作流程 |
Ch 03 |
程式碼審查、重構、除錯、產生測試、與 git 整合 |
第 04-06 章介紹更多進階功能,值得進一步學習。
🛠️ 建立你的個人工作流程
沒有唯一正確的 GitHub Copilot CLI 用法。以下是一些建立個人習慣的建議:
📚 官方文件:Copilot CLI 最佳實踐,收錄 GitHub 推薦的工作流程與技巧。
- 遇到非小事就從
/plan 開始。 先規劃再執行——好計畫帶來好成果。
- 把有效的提示詞記下來。 當 Copilot CLI 出錯時,記錄問題所在。久而久之,這會成為你的個人攻略。
- 盡情嘗試。 有些開發者喜歡長且詳細的提示詞,有些則偏好短句加追問。多試幾種,找出最自然的方式。
💡 預告:第 04、05 章會教你如何把最佳實踐寫成自動載入的自訂指令與技能。
➡️ 接下來
後續章節將介紹更多擴充 Copilot CLI 能力的功能:
| 章節 |
內容 |
適用時機 |
| Ch 04: Agents |
建立專業化 AI 角色 |
需要領域專家(前端、安全性)時 |
| Ch 05: Skills |
任務自動載入指令 |
經常重複相同提示時 |
| Ch 06: MCP |
連接外部服務 |
需要 GitHub、資料庫等即時資料時 |
建議:先用一週核心工作流程,有特定需求時再回來看 04-06 章。
繼續進階主題
在 第 04 章:Agent 與自訂指令,你將學到:
- 使用內建 Agent(
/plan、/review)
- 用
.agent.md 檔案建立專業化 Agent(前端專家、安全稽核員)
- 多 Agent 協作模式
- 專案標準的自訂指令檔案