<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>AI on Justmaker's KB</title><link>https://justmaker.github.io/tags/ai/</link><description>Recent content in AI on Justmaker's KB</description><generator>Hugo -- gohugo.io</generator><language>zh-tw</language><lastBuildDate>Wed, 01 Apr 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://justmaker.github.io/tags/ai/index.xml" rel="self" type="application/rss+xml"/><item><title>AI 使用技巧、經驗與避坑指南</title><link>https://justmaker.github.io/post/ai-tools/ai-tips-and-pitfalls/</link><pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate><guid>https://justmaker.github.io/post/ai-tools/ai-tips-and-pitfalls/</guid><description>&lt;h1 id="一切從-prompt-開始">一切從 Prompt 開始
&lt;/h1>&lt;p>生成式 AI 是工具，一切效能的關鍵在&lt;strong>如何與之互動&lt;/strong>。如果 &amp;ldquo;好問題等於工作完成一半&amp;rdquo;，那麼 &amp;ldquo;好 prompt&amp;rdquo; 就是這時代的高效捷徑。&lt;/p>
&lt;h3 id="一切從-prompt-開始-1">一切從 Prompt 開始
&lt;/h3>&lt;p>Prompt 精準度，決定了 AI 工具的效能。以下是讓生成式 AI 更有效率的方式：&lt;/p>
&lt;h4 id="如何優化-prompt">如何優化 Prompt
&lt;/h4>&lt;ul>
&lt;li>&lt;strong>明確定義角色&lt;/strong>：告訴 AI，它是什麼角色，例如「你是一位資深的 DevOps 工程師，請分析以下 Kubernetes cluster log」比模糊陳述更有效。&lt;/li>
&lt;li>&lt;strong>上下文前置&lt;/strong>：AI 沒有閱讀整個 universe 的超能力。輸入需包含背景資料、限制條件，才能產出更符合需求的回答。&lt;/li>
&lt;li>&lt;strong>具體化輸出格式&lt;/strong>：需要 Excel 表、JSON 還是 Markdown，都要先說明清楚。模糊的目標，往往得到隨機效果。&lt;/li>
&lt;li>&lt;strong>拆解複雜問題&lt;/strong>：分步問題、逐步提問是必須。瞬間丟入十個目標問題的「all-in」，效果通常失敗。&lt;/li>
&lt;/ul>
&lt;h4 id="常見陷阱">常見陷阱
&lt;/h4>&lt;ul>
&lt;li>❌ &lt;strong>笨拙的 Prompt&lt;/strong>：「需要更好答案」這種話無具體細緻力。&lt;/li>
&lt;li>❌ &lt;strong>一次要求過多&lt;/strong>：Prompt 過長反而前後矛盾，需要過濾具有邏輯整合。&lt;/li>
&lt;li>❌ &lt;strong>期望 AI 自帶歷史記憶&lt;/strong>：生成模型沒有 Session 永久性，每次的斷句都切換「內部共享脈絡窗」的血。」&lt;/li>
&lt;/ul>
&lt;hr></description></item><item><title>Claude Code vs GitHub Copilot：工程師實測比較</title><link>https://justmaker.github.io/post/ai-tools/claude-code-vs-github-copilot/</link><pubDate>Sat, 05 Apr 2025 00:00:00 +0000</pubDate><guid>https://justmaker.github.io/post/ai-tools/claude-code-vs-github-copilot/</guid><description>&lt;h2 id="前言">前言
&lt;/h2>&lt;p>AI coding assistant 已經是日常開發的標配工具。我同時使用 Claude Code 和 GitHub Copilot 超過半年，這篇分享實際使用的比較心得。&lt;/p>
&lt;blockquote>
&lt;p>⚠️ 這是 2025 年初的體驗，AI 工具迭代很快，結論可能很快過時。&lt;/p>&lt;/blockquote>
&lt;h2 id="測試環境">測試環境
&lt;/h2>&lt;ul>
&lt;li>&lt;strong>日常工作&lt;/strong>：Vue.js 前端 + Python/Go 後端 + Shell scripts&lt;/li>
&lt;li>&lt;strong>使用場景&lt;/strong>：寫新功能、debug、code review、重構、寫文件&lt;/li>
&lt;li>&lt;strong>Claude Code&lt;/strong> 透過 OpenClaw agent 使用&lt;/li>
&lt;li>&lt;strong>GitHub Copilot&lt;/strong> 在 VS Code 中使用&lt;/li>
&lt;/ul>
&lt;h2 id="比較維度">比較維度
&lt;/h2>&lt;h3 id="1-程式碼生成品質">1. 程式碼生成品質
&lt;/h3>&lt;p>&lt;strong>Copilot&lt;/strong> 擅長：&lt;/p>
&lt;ul>
&lt;li>行內補完，手感很好&lt;/li>
&lt;li>根據上下文自動補完函式名、參數&lt;/li>
&lt;li>重複模式的程式碼（測試、CRUD）&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>Claude Code&lt;/strong> 擅長：&lt;/p>
&lt;ul>
&lt;li>完整函式/模組的生成&lt;/li>
&lt;li>跨檔案的重構&lt;/li>
&lt;li>理解複雜需求後一次產出正確程式碼&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>結論&lt;/strong>：小粒度用 Copilot，大粒度用 Claude Code。&lt;/p>
&lt;h3 id="2-程式碼理解力">2. 程式碼理解力
&lt;/h3>&lt;p>這是最大的差異。&lt;/p>
&lt;p>Claude Code 可以讀完整個 repo 的結構、理解 module 之間的關係，然後做出跨檔案的修改。Copilot 主要看當前檔案和相鄰檔案。&lt;/p>
&lt;p>實測：給一個「把這個元件的狀態管理從 local state 改成 Pinia」的需求：&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Copilot&lt;/strong>：只改了當前檔案，其他引用點要自己找&lt;/li>
&lt;li>&lt;strong>Claude Code&lt;/strong>：一次改完所有相關檔案，包括 store 定義、元件引用、測試&lt;/li>
&lt;/ul>
&lt;h3 id="3-debug-能力">3. Debug 能力
&lt;/h3>&lt;p>&lt;strong>Claude Code&lt;/strong> 明顯勝出。可以：&lt;/p>
&lt;ul>
&lt;li>讀 error log → 定位問題 → 提出修復&lt;/li>
&lt;li>理解 stack trace 的上下文&lt;/li>
&lt;li>跨多個 service 追蹤問題&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>Copilot&lt;/strong> 的 debug 建議通常比較表面，需要你自己縮小範圍。&lt;/p>
&lt;h3 id="4-工作流整合">4. 工作流整合
&lt;/h3>&lt;table>
&lt;thead>
&lt;tr>
&lt;th>面向&lt;/th>
&lt;th>Copilot&lt;/th>
&lt;th>Claude Code&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>IDE 整合&lt;/td>
&lt;td>✅ 原生 VS Code&lt;/td>
&lt;td>❌ CLI/Agent&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>即時補完&lt;/td>
&lt;td>✅ 毫秒級&lt;/td>
&lt;td>❌ 不適用&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>批量操作&lt;/td>
&lt;td>❌ 單檔為主&lt;/td>
&lt;td>✅ 跨檔案&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Git 操作&lt;/td>
&lt;td>❌ 不能&lt;/td>
&lt;td>✅ 可以 commit/push&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>自動化&lt;/td>
&lt;td>❌ 需手動觸發&lt;/td>
&lt;td>✅ 可以背景執行&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="我的用法">我的用法
&lt;/h2>&lt;p>兩個都用，各取所長：&lt;/p>
&lt;ol>
&lt;li>&lt;strong>寫程式時&lt;/strong>：Copilot 開著，享受行內補完&lt;/li>
&lt;li>&lt;strong>大重構/新功能&lt;/strong>：派 Claude Code（透過 OpenClaw）跑&lt;/li>
&lt;li>&lt;strong>Debug&lt;/strong>：先自己看，看不出來就丟給 Claude Code&lt;/li>
&lt;li>&lt;strong>Code Review&lt;/strong>：Claude Code，可以讀完整個 MR&lt;/li>
&lt;/ol>
&lt;h2 id="總結">總結
&lt;/h2>&lt;table>
&lt;thead>
&lt;tr>
&lt;th>&lt;/th>
&lt;th>Copilot&lt;/th>
&lt;th>Claude Code&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>&lt;strong>最佳場景&lt;/strong>&lt;/td>
&lt;td>日常寫碼、行內補完&lt;/td>
&lt;td>大型任務、重構、debug&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>學習曲線&lt;/strong>&lt;/td>
&lt;td>低&lt;/td>
&lt;td>中&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>成本&lt;/strong>&lt;/td>
&lt;td>$10-19/月&lt;/td>
&lt;td>依 token 計費&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>推薦度&lt;/strong>&lt;/td>
&lt;td>⭐⭐⭐⭐&lt;/td>
&lt;td>⭐⭐⭐⭐⭐&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;p>不是非此即彼的選擇。最佳策略是兩者搭配使用。&lt;/p></description></item><item><title>用 OpenClaw 打造 AI 助理：從零開始</title><link>https://justmaker.github.io/post/ai-tools/openclaw-getting-started/</link><pubDate>Fri, 04 Apr 2025 00:00:00 +0000</pubDate><guid>https://justmaker.github.io/post/ai-tools/openclaw-getting-started/</guid><description>&lt;h2 id="什麼是-openclaw">什麼是 OpenClaw？
&lt;/h2>&lt;p>&lt;a class="link" href="https://github.com/openclaw/openclaw" target="_blank" rel="noopener"
>OpenClaw&lt;/a> 是一個開源的 AI agent 框架，可以讓 LLM（如 Claude、GPT）不只是聊天，還能實際操作你的電腦：讀寫檔案、執行指令、管理 Git、呼叫 API。&lt;/p>
&lt;p>它不是另一個 ChatGPT 包裝，而是一個&lt;strong>能幹活的 AI 助理&lt;/strong>。&lt;/p>
&lt;h2 id="核心概念">核心概念
&lt;/h2>&lt;h3 id="agent--chatbot">Agent ≠ Chatbot
&lt;/h3>&lt;p>一般 chatbot 只能接收文字、回覆文字。OpenClaw 的 agent 可以：&lt;/p>
&lt;ul>
&lt;li>📁 讀寫你的檔案系統&lt;/li>
&lt;li>🖥️ 執行 shell 指令&lt;/li>
&lt;li>🔧 操作 Git（commit、push、建 MR）&lt;/li>
&lt;li>🌐 瀏覽網頁、呼叫 API&lt;/li>
&lt;li>📱 連接 Discord / Telegram 接收訊息&lt;/li>
&lt;li>🧠 記住對話脈絡（透過 MEMORY.md）&lt;/li>
&lt;/ul>
&lt;h3 id="workspace-結構">Workspace 結構
&lt;/h3>&lt;pre tabindex="0">&lt;code>~/.openclaw/workspace/
├── AGENTS.md # Agent 行為規範
├── SOUL.md # Agent 的個性設定
├── USER.md # 關於你的資訊
├── TOOLS.md # 可用工具說明
├── IDENTITY.md # Agent 的身份
├── TODO.md # 待辦事項
└── MEMORY.md # Agent 的記憶
&lt;/code>&lt;/pre>&lt;p>這些 &lt;code>.md&lt;/code> 檔案就是 agent 的「大腦」——每次啟動時讀取，形成行為模式。&lt;/p>
&lt;h2 id="能做什麼">能做什麼？
&lt;/h2>&lt;p>以我日常使用為例：&lt;/p>
&lt;h3 id="自動化開發">自動化開發
&lt;/h3>&lt;blockquote>
&lt;p>「幫我寫一個 KVM 效能監控腳本，放到 ~/scripts/ 裡」&lt;/p>&lt;/blockquote>
&lt;p>Agent 會直接寫好腳本、設定執行權限、甚至幫你加到 crontab。&lt;/p>
&lt;h3 id="知識管理">知識管理
&lt;/h3>&lt;blockquote>
&lt;p>「把今天 Discord #ai-tools 頻道的討論整理成一篇部落格文章」&lt;/p>&lt;/blockquote>
&lt;p>Agent 讀取 Discord 訊息、整理成結構化文章、push 到 Hugo 部落格。&lt;/p>
&lt;h3 id="程式碼審查">程式碼審查
&lt;/h3>&lt;blockquote>
&lt;p>「Review 一下最新的 MR」&lt;/p>&lt;/blockquote>
&lt;p>Agent 會讀 MR diff、分析問題、留下 review comment。&lt;/p>
&lt;h2 id="適合誰">適合誰？
&lt;/h2>&lt;ul>
&lt;li>工程師、開發者（最大受益者）&lt;/li>
&lt;li>需要自動化重複工作的人&lt;/li>
&lt;li>願意花時間調教 AI 行為的人&lt;/li>
&lt;/ul>
&lt;h2 id="下一步">下一步
&lt;/h2>&lt;p>如果你對 OpenClaw 感興趣，可以到 &lt;a class="link" href="https://github.com/openclaw/openclaw" target="_blank" rel="noopener"
>GitHub repo&lt;/a> 看看文件和範例。&lt;/p>
&lt;p>後續文章會深入介紹進階功能：MCP server 串接、多 agent 協作、自動化工作流。&lt;/p></description></item><item><title>AI Native IDE / Code Editor 全景報告（2025-2026）</title><link>https://justmaker.github.io/post/ai-tools/ai-native-ide-landscape-2025/</link><pubDate>Tue, 01 Apr 2025 00:00:00 +0000</pubDate><guid>https://justmaker.github.io/post/ai-tools/ai-native-ide-landscape-2025/</guid><description>&lt;p>最後更新：2026-04-01&lt;/p>
&lt;h2 id="-獨立-ai-ide完整的-editor">🖥️ 獨立 AI IDE（完整的 Editor）
&lt;/h2>&lt;table>
&lt;thead>
&lt;tr>
&lt;th>工具&lt;/th>
&lt;th>公司&lt;/th>
&lt;th>開源&lt;/th>
&lt;th>定價&lt;/th>
&lt;th>核心特色&lt;/th>
&lt;th>支援 Model&lt;/th>
&lt;th>狀態&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>&lt;strong>Cursor&lt;/strong>&lt;/td>
&lt;td>Anysphere&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free / Pro $20/mo / Biz $40/mo&lt;/td>
&lt;td>VS Code fork，內建 AI chat、Tab completion、multi-file edit、Agent mode。目前最成熟的 AI IDE&lt;/td>
&lt;td>GPT-4o, Claude 3.5/Opus, 自選 API key&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Windsurf&lt;/strong>&lt;/td>
&lt;td>Codeium（被 OpenAI 收購，~$3B）&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free / Pro $15/mo&lt;/td>
&lt;td>Cascade 多步驟 agent、Flows 概念，自動讀 codebase context&lt;/td>
&lt;td>GPT, Claude, 自研 model&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Trae&lt;/strong>&lt;/td>
&lt;td>ByteDance&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free (Beta)&lt;/td>
&lt;td>字節跳動出品，內建 AI chat + Builder mode，支援中文&lt;/td>
&lt;td>Claude, GPT, 豆包大模型&lt;/td>
&lt;td>Beta&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Zed&lt;/strong>&lt;/td>
&lt;td>Zed Industries&lt;/td>
&lt;td>是 (GPL/AGPL)&lt;/td>
&lt;td>Free / Pro $10/mo (AI)&lt;/td>
&lt;td>Rust 原生高效能 editor，速度極快，native collaboration，AI assistant&lt;/td>
&lt;td>Claude, GPT, Ollama (本地)&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Void&lt;/strong>&lt;/td>
&lt;td>Void Dev&lt;/td>
&lt;td>是 (MIT)&lt;/td>
&lt;td>Free&lt;/td>
&lt;td>開源 AI code editor，對標 Cursor 的開源替代，支援自選 LLM&lt;/td>
&lt;td>任意（自選 API）&lt;/td>
&lt;td>Alpha/Beta&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>PearAI&lt;/strong>&lt;/td>
&lt;td>PearAI 團隊&lt;/td>
&lt;td>是 (Apache 2.0)&lt;/td>
&lt;td>Free / Pro $15/mo&lt;/td>
&lt;td>開源 AI editor，fork of Continue + VS Code，整合 AI chat 和 inline edit&lt;/td>
&lt;td>Claude, GPT, 本地 model&lt;/td>
&lt;td>Beta&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Melty&lt;/strong>&lt;/td>
&lt;td>Melty 團隊&lt;/td>
&lt;td>是 (MIT)&lt;/td>
&lt;td>Free&lt;/td>
&lt;td>主打「理解整個 codebase 變更歷史」，與 git diff 深度整合&lt;/td>
&lt;td>Claude, GPT&lt;/td>
&lt;td>Alpha（可能停止活躍開發）&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="-vs-code--ide-extension">🔌 VS Code / IDE Extension
&lt;/h2>&lt;table>
&lt;thead>
&lt;tr>
&lt;th>工具&lt;/th>
&lt;th>公司&lt;/th>
&lt;th>開源&lt;/th>
&lt;th>定價&lt;/th>
&lt;th>核心特色&lt;/th>
&lt;th>支援 Model&lt;/th>
&lt;th>狀態&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>&lt;strong>GitHub Copilot&lt;/strong>&lt;/td>
&lt;td>Microsoft/GitHub&lt;/td>
&lt;td>否&lt;/td>
&lt;td>$10/mo / Biz $19/mo / Ent $39/mo&lt;/td>
&lt;td>最廣泛使用的 AI coding tool，Copilot Chat、Agent mode、Workspace&lt;/td>
&lt;td>GPT-4o, Claude, Gemini (agent)&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Continue&lt;/strong>&lt;/td>
&lt;td>Continue Dev&lt;/td>
&lt;td>是 (Apache 2.0)&lt;/td>
&lt;td>Free&lt;/td>
&lt;td>開源 AI code assistant，可接任意 LLM，高度可自訂&lt;/td>
&lt;td>任意（OpenAI, Anthropic, Ollama）&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Cody (Sourcegraph)&lt;/strong>&lt;/td>
&lt;td>Sourcegraph&lt;/td>
&lt;td>是（部分 Apache 2.0）&lt;/td>
&lt;td>Free / Pro $9/mo / Enterprise&lt;/td>
&lt;td>Codebase-aware context，利用 Sourcegraph 搜尋引擎提供精準上下文&lt;/td>
&lt;td>Claude, GPT, Gemini&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Amazon Q Developer&lt;/strong>&lt;/td>
&lt;td>AWS&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free / Pro $19/mo&lt;/td>
&lt;td>前 CodeWhisperer，深度整合 AWS 服務，安全掃描、code transformation&lt;/td>
&lt;td>自研 (Amazon Titan+)&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Tabnine&lt;/strong>&lt;/td>
&lt;td>Tabnine&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free / Pro $12/mo / Enterprise&lt;/td>
&lt;td>隱私優先，可完全本地部署，企業級 code completion&lt;/td>
&lt;td>自研&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Supermaven&lt;/strong>&lt;/td>
&lt;td>Supermaven（被 Cursor 收購）&lt;/td>
&lt;td>否&lt;/td>
&lt;td>已整合進 Cursor&lt;/td>
&lt;td>極速 code completion（300ms），超長 context window (100K tokens)&lt;/td>
&lt;td>自研&lt;/td>
&lt;td>⚠️ 整合進 Cursor&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>JetBrains AI Assistant&lt;/strong>&lt;/td>
&lt;td>JetBrains&lt;/td>
&lt;td>否&lt;/td>
&lt;td>含 JetBrains 訂閱 / $10/mo addon&lt;/td>
&lt;td>原生整合 IntelliJ 系列，AI chat + inline completion + refactor&lt;/td>
&lt;td>GPT, Gemini, 自研&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Augment Code&lt;/strong>&lt;/td>
&lt;td>Augment&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free / Pro（定價未公開）&lt;/td>
&lt;td>大型 codebase 深度理解，企業級 context engine&lt;/td>
&lt;td>Claude, GPT&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="-cli--terminal-based">⌨️ CLI / Terminal-based
&lt;/h2>&lt;table>
&lt;thead>
&lt;tr>
&lt;th>工具&lt;/th>
&lt;th>公司&lt;/th>
&lt;th>開源&lt;/th>
&lt;th>定價&lt;/th>
&lt;th>核心特色&lt;/th>
&lt;th>支援 Model&lt;/th>
&lt;th>狀態&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>&lt;strong>Claude Code&lt;/strong>&lt;/td>
&lt;td>Anthropic&lt;/td>
&lt;td>否&lt;/td>
&lt;td>按 API 用量計費&lt;/td>
&lt;td>Terminal-native AI coding agent，直接讀寫檔案、執行指令、理解整個 repo&lt;/td>
&lt;td>Claude 3.5/Opus&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Aider&lt;/strong>&lt;/td>
&lt;td>Paul Gauthier&lt;/td>
&lt;td>是 (Apache 2.0)&lt;/td>
&lt;td>Free&lt;/td>
&lt;td>最強 terminal AI pair programmer，支援幾乎所有 LLM，git-aware，自動 commit&lt;/td>
&lt;td>任意（GPT, Claude, Gemini, 本地）&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>GitHub Copilot CLI&lt;/strong>&lt;/td>
&lt;td>GitHub&lt;/td>
&lt;td>否&lt;/td>
&lt;td>含 Copilot 訂閱&lt;/td>
&lt;td>Terminal 指令建議與解釋&lt;/td>
&lt;td>GPT&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>OpenAI Codex CLI&lt;/strong>&lt;/td>
&lt;td>OpenAI&lt;/td>
&lt;td>是 (Apache 2.0)&lt;/td>
&lt;td>按 API 用量&lt;/td>
&lt;td>OpenAI 官方 terminal coding agent，類似 Claude Code 定位&lt;/td>
&lt;td>GPT-4o, o3&lt;/td>
&lt;td>Beta&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>OpenCode&lt;/strong>&lt;/td>
&lt;td>Anomaly&lt;/td>
&lt;td>是 (MIT)&lt;/td>
&lt;td>Free / Zen（付費 model 代理）&lt;/td>
&lt;td>120K+ stars 的開源 AI coding agent。Terminal TUI + Desktop App + IDE Extension 三種形態。內建 Build/Plan/General/Explore 四個 agent，支援 MCP Server 擴展，LSP 整合&lt;/td>
&lt;td>75+ 家 provider&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="-browser-based--cloud-ide">🌐 Browser-based / Cloud IDE
&lt;/h2>&lt;table>
&lt;thead>
&lt;tr>
&lt;th>工具&lt;/th>
&lt;th>公司&lt;/th>
&lt;th>開源&lt;/th>
&lt;th>定價&lt;/th>
&lt;th>核心特色&lt;/th>
&lt;th>支援 Model&lt;/th>
&lt;th>狀態&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>&lt;strong>Replit&lt;/strong>&lt;/td>
&lt;td>Replit&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free / Core $25/mo&lt;/td>
&lt;td>瀏覽器全功能 IDE + AI Agent，可直接 deploy&lt;/td>
&lt;td>GPT, Claude, 自研&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Project IDX&lt;/strong>&lt;/td>
&lt;td>Google&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free (Preview)&lt;/td>
&lt;td>Google cloud IDE，整合 Firebase/GCP 和 Gemini&lt;/td>
&lt;td>Gemini&lt;/td>
&lt;td>Beta&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Bolt.new&lt;/strong>&lt;/td>
&lt;td>StackBlitz&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free / Pro $20/mo&lt;/td>
&lt;td>AI 全端 web app builder，瀏覽器即時生成 + 預覽 + deploy&lt;/td>
&lt;td>Claude, GPT&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>v0&lt;/strong>&lt;/td>
&lt;td>Vercel&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free / Pro $20/mo&lt;/td>
&lt;td>AI UI/frontend generator，專精 React/Next.js&lt;/td>
&lt;td>GPT, Claude&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Lovable&lt;/strong>&lt;/td>
&lt;td>Lovable（前 GPT Engineer）&lt;/td>
&lt;td>否&lt;/td>
&lt;td>Free / Pro $20/mo&lt;/td>
&lt;td>AI full-stack app builder，自然語言生成完整 web app&lt;/td>
&lt;td>Claude, GPT&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="-autonomous-agent全自動寫-code">🤖 Autonomous Agent（全自動寫 Code）
&lt;/h2>&lt;table>
&lt;thead>
&lt;tr>
&lt;th>工具&lt;/th>
&lt;th>公司&lt;/th>
&lt;th>開源&lt;/th>
&lt;th>定價&lt;/th>
&lt;th>核心特色&lt;/th>
&lt;th>支援 Model&lt;/th>
&lt;th>狀態&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>&lt;strong>Devin&lt;/strong>&lt;/td>
&lt;td>Cognition AI&lt;/td>
&lt;td>否&lt;/td>
&lt;td>$500/mo (Team)&lt;/td>
&lt;td>第一個號稱「AI Software Engineer」，可自主規劃、寫碼、debug、deploy&lt;/td>
&lt;td>自研 + Claude/GPT&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>OpenHands&lt;/strong>&lt;/td>
&lt;td>All Hands AI（前 OpenDevin）&lt;/td>
&lt;td>是 (MIT)&lt;/td>
&lt;td>Free&lt;/td>
&lt;td>開源版 Devin，自主 coding agent，有 sandbox 環境&lt;/td>
&lt;td>任意（Claude, GPT, 本地）&lt;/td>
&lt;td>GA&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>SWE-Agent&lt;/strong>&lt;/td>
&lt;td>Princeton NLP&lt;/td>
&lt;td>是 (MIT)&lt;/td>
&lt;td>Free&lt;/td>
&lt;td>學術界最強 SWE benchmark agent，GitHub issue → PR 全自動修復&lt;/td>
&lt;td>GPT, Claude&lt;/td>
&lt;td>GA (研究用)&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;strong>Copilot Workspace&lt;/strong>&lt;/td>
&lt;td>GitHub&lt;/td>
&lt;td>否&lt;/td>
&lt;td>含 Copilot 訂閱&lt;/td>
&lt;td>從 GitHub Issue 到 PR 的全流程 AI 輔助&lt;/td>
&lt;td>GPT&lt;/td>
&lt;td>Beta&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="-agent-監控--管理平台">🛠️ Agent 監控 / 管理平台
&lt;/h2>&lt;table>
&lt;thead>
&lt;tr>
&lt;th>工具&lt;/th>
&lt;th>公司&lt;/th>
&lt;th>開源&lt;/th>
&lt;th>定價&lt;/th>
&lt;th>核心特色&lt;/th>
&lt;th>狀態&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>&lt;strong>OhMyAgent&lt;/strong>&lt;/td>
&lt;td>OhMyAgent.dev&lt;/td>
&lt;td>未知&lt;/td>
&lt;td>未公開（有 Waitlist）&lt;/td>
&lt;td>Multi-agent 系統的黑盒子與控制塔。四大模組：X-Ray（即時 agent 狀態流視覺化）、Human-in-the-Loop（敏感操作 breakpoint + 人類審核）、Sandbox（shadow test 環境）、Wallet Guard（per-step 成本追蹤）&lt;/td>
&lt;td>Early Stage&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="-個人建議">🎯 個人建議
&lt;/h2>&lt;h3 id="現有工具鏈">現有工具鏈
&lt;/h3>&lt;ul>
&lt;li>&lt;strong>Claude Code (via OpenClaw)&lt;/strong> — CLI agent，已深度整合日常工作流&lt;/li>
&lt;li>&lt;strong>GitHub Copilot&lt;/strong> — 日常 code completion&lt;/li>
&lt;li>&lt;strong>OpenClaw&lt;/strong> — AI agent 框架，可串接多種 model&lt;/li>
&lt;/ul>
&lt;h3 id="-值得一試">✅ 值得一試
&lt;/h3>&lt;ul>
&lt;li>&lt;strong>Cursor&lt;/strong> — GUI agent 體驗，multi-file edit 成熟，適合前端開發&lt;/li>
&lt;li>&lt;strong>Zed&lt;/strong> — Rust native 高效能，適合 C/系統開發（速度快）&lt;/li>
&lt;li>&lt;strong>Trae&lt;/strong> — 免費且功能完整，ByteDance 持續投入&lt;/li>
&lt;/ul>
&lt;h3 id="-不急著加的">⚠️ 不急著加的
&lt;/h3>&lt;ul>
&lt;li>&lt;strong>Bolt.new / v0 / Lovable&lt;/strong> — 專注 web app prototyping，與系統級開發場景不搭&lt;/li>
&lt;li>&lt;strong>Devin&lt;/strong> — $500/mo 太貴，OpenClaw subagent 能做類似的事&lt;/li>
&lt;li>&lt;strong>Replit / Project IDX&lt;/strong> — browser-based 不適合本地開發環境&lt;/li>
&lt;/ul>
&lt;h3 id="-有獨特價值">💡 有獨特價值
&lt;/h3>&lt;ul>
&lt;li>&lt;strong>Continue (開源)&lt;/strong> — 可接本地 Ollama model，隱私敏感場景有價值&lt;/li>
&lt;li>&lt;strong>OpenHands&lt;/strong> — 開源全自動 agent，batch 修 bug 場景可與 OpenClaw 互補&lt;/li>
&lt;/ul>
&lt;h3 id="-本次新增">🆕 本次新增
&lt;/h3>&lt;ul>
&lt;li>&lt;strong>OpenCode&lt;/strong> — 開源 AI coding agent，有 Terminal/Desktop/IDE 三種形態，支援 75+ provider 和 MCP，Custom Agent 系統完整。跟 Claude Code 定位類似但開源且 model-agnostic&lt;/li>
&lt;li>&lt;strong>OhMyAgent&lt;/strong> — Multi-agent 監控平台，提供 agent 狀態視覺化、human-in-the-loop、cost tracking。目前 early stage&lt;/li>
&lt;/ul>
&lt;hr>
&lt;p>&lt;em>資料來源：截至 2025 年初知識庫 + 公開資訊 + 2026-04-01 網站查證。定價和狀態可能已有更新。&lt;/em>&lt;/p></description></item><item><title>圍棋學習路線圖：從入門到升段</title><link>https://justmaker.github.io/post/baduk/learning-roadmap/</link><pubDate>Sat, 01 Feb 2025 00:00:00 +0000</pubDate><guid>https://justmaker.github.io/post/baduk/learning-roadmap/</guid><description>&lt;h2 id="圍棋三大要素">圍棋三大要素
&lt;/h2>&lt;ol>
&lt;li>&lt;strong>棋感&lt;/strong> — 直覺判斷，第一感&lt;/li>
&lt;li>&lt;strong>判斷&lt;/strong> — 形勢分析，大小判斷&lt;/li>
&lt;li>&lt;strong>計算&lt;/strong> — 死活、對殺、變化圖&lt;/li>
&lt;/ol>
&lt;h2 id="圍棋十訣">圍棋十訣
&lt;/h2>&lt;ol>
&lt;li>不得貪勝&lt;/li>
&lt;li>入界宜緩&lt;/li>
&lt;li>攻彼顧我&lt;/li>
&lt;li>棄子爭先&lt;/li>
&lt;li>捨小就大&lt;/li>
&lt;li>逢危須棄&lt;/li>
&lt;li>慎勿輕速&lt;/li>
&lt;li>動須相應&lt;/li>
&lt;li>彼強自保&lt;/li>
&lt;li>勢孤取和&lt;/li>
&lt;/ol>
&lt;h2 id="自創跟隨-ai-學習步驟">自創：跟隨 AI 學習步驟
&lt;/h2>&lt;h3 id="step-1學定式">Step 1：學定式
&lt;/h3>&lt;ul>
&lt;li>星位、小目、高目各記住至少一個可用的掛角或點三三方式&lt;/li>
&lt;li>掛角遞角點入被夾後續定型&lt;/li>
&lt;/ul>
&lt;h3 id="step-2學布局">Step 2：學布局
&lt;/h3>&lt;p>推薦工具：電腦 &lt;a class="link" href="https://github.com/sanderland/katrain" target="_blank" rel="noopener"
>KataTrain&lt;/a>、安卓 BadukAI&lt;/p>
&lt;ul>
&lt;li>上述有一邊、兩邊、邊上配合的選擇
&lt;ul>
&lt;li>進階：分遠配合、近配合&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>對角、對角+一邊、對角+兩邊配合的選擇&lt;/li>
&lt;li>遇到不會對付的布局，先去看影片學習
&lt;ul>
&lt;li>例如：二連星、三連星、中國流（含高、迷你）、小林流、向小目、錯小目、星無憂角、對角星&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h3 id="step-3學中盤">Step 3：學中盤
&lt;/h3>&lt;ul>
&lt;li>和 AI 下棋，先從自己剛好打不過的難度開始（推薦 OGS 不限時）&lt;/li>
&lt;li>下完一種策略後，從布局再出發嘗試另一種策略（OGS 分支對局功能）
&lt;ul>
&lt;li>例如：策略一 先撈實空、策略二 先建模樣、策略三 打入對方模樣&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>收官可以自己下省時間，初期可用實體棋盤輔助後續變化圖&lt;/li>
&lt;li>成果檢驗成功後往下一個等級或下一個帳號挑戰&lt;/li>
&lt;/ul>
&lt;h2 id="等級成果檢驗">等級成果檢驗
&lt;/h2>&lt;ul>
&lt;li>&lt;strong>不開狗連續戰勝該等級三盤為通過標準&lt;/strong>
&lt;ul>
&lt;li>持黑持白至少各一以上&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>可以採用不限時（建議段位以上慢慢嘗試使用預設時長）&lt;/li>
&lt;li>可以用實體棋盤輔助變化（建議段位以上慢慢嘗試不用）&lt;/li>
&lt;/ul>
&lt;h2 id="新的學習方式讓-ai-手把手教學">新的學習方式：讓 AI 手把手教學
&lt;/h2>&lt;p>建立符合自己風格的好棋觀：&lt;/p>
&lt;ol>
&lt;li>&lt;strong>先想自己的想像落點&lt;/strong>（第一感 + 推測可能落點，只開 Next Moves）&lt;/li>
&lt;li>&lt;strong>和 AI 對答案&lt;/strong>（開 Top Moves）&lt;/li>
&lt;li>&lt;strong>釐清自己的想像落點為什麼不好，記錄下來&lt;/strong>
&lt;ul>
&lt;li>尤其第一感必須仔細檢視自己的感覺和邏輯&lt;/li>
&lt;li>必須弄清楚後續幾手雙方應對，和 AI 確認想像是否有誤&lt;/li>
&lt;li>無法釐清就標上問號，待以後回頭再釐清&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>&lt;strong>把所有可能選點都想過&lt;/strong>（利用 Policy Moves）&lt;/li>
&lt;li>&lt;strong>選一個勝率降不多（&amp;lt;5%）且自己可以理解的解法，嘗試吸收&lt;/strong>&lt;/li>
&lt;li>&lt;strong>吸收後才去落子&lt;/strong>
&lt;ul>
&lt;li>整盤和局部的形勢（當下狀況）及方向（後續重點）都要思考&lt;/li>
&lt;li>最好能把後續幾步變化也吸收&lt;/li>
&lt;li>每一步都去對答案效果比較差&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>&lt;strong>著重檢討自己的想像落點&lt;/strong>
&lt;ul>
&lt;li>不要學習對手落點（低段 AI 俗手連發很常見）&lt;/li>
&lt;li>學習重點在己方如何應對敵方落子（待 AI 調高段後再學對手應對）&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ol>
&lt;h3 id="優缺點">優缺點
&lt;/h3>&lt;p>&lt;strong>優點：&lt;/strong>&lt;/p>
&lt;ul>
&lt;li>對手穩定且省時間&lt;/li>
&lt;li>一盤棋可以學到大量知識&lt;/li>
&lt;li>在實戰中學到好的棋、好的方向&lt;/li>
&lt;li>避免初期一直輸棋不知從何檢討&lt;/li>
&lt;li>以一步或幾步為單位學習，而非整盤&lt;/li>
&lt;li>提早學會覆盤&lt;/li>
&lt;li>同樣的招式不會中第二次&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>缺點：&lt;/strong>&lt;/p>
&lt;ul>
&lt;li>一盤棋花很長時間（數小時到數天）&lt;/li>
&lt;li>需要大量耐心、自我檢討和積極學習&lt;/li>
&lt;li>自制力不好不適用&lt;/li>
&lt;li>沒有老師帶，要自己悟&lt;/li>
&lt;/ul>
&lt;h3 id="須注意">須注意
&lt;/h3>&lt;ul>
&lt;li>不能取代詰棋，做題練細算很重要&lt;/li>
&lt;li>成果檢驗需嚴謹，過不了就繼續留在該等級&lt;/li>
&lt;li>不可躁進，沒有吸收就去走棋沒有意義&lt;/li>
&lt;li>開狗只適用和電腦下，和人下開狗沒有意義&lt;/li>
&lt;/ul>
&lt;h2 id="學棋重點">學棋重點
&lt;/h2>&lt;ol>
&lt;li>初期不了解定式無妨，先記住基本掛角和點三三方式&lt;/li>
&lt;li>&lt;strong>棋感優先&lt;/strong> — 如果預想落點大都是紅黃，自己下棋只會俗惡手連發&lt;/li>
&lt;/ol>
&lt;h2 id="升段重點">升段重點
&lt;/h2>&lt;ul>
&lt;li>中盤戰鬥、攻殺&lt;/li>
&lt;/ul>
&lt;h2 id="圍棋五階段">圍棋五階段
&lt;/h2>&lt;p>布局 → 序戰 → 中盤 → 終局戰 → 官子&lt;/p></description></item></channel></rss>