From 8523079a99f3852b590e3b1dec461f73b5e5c8a8 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Sat, 17 Jan 2026 11:40:30 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=20ACE=20Tool=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WORKFLOW_GUIDE.md | 22 +++++++--------------- WORKFLOW_GUIDE_CN.md | 20 ++++++++++++++++++++ 2 files changed, 27 insertions(+), 15 deletions(-) diff --git a/WORKFLOW_GUIDE.md b/WORKFLOW_GUIDE.md index c24a1ad1..580010be 100644 --- a/WORKFLOW_GUIDE.md +++ b/WORKFLOW_GUIDE.md @@ -647,23 +647,15 @@ System auto-evaluates complexity based on these keywords: ## ACE Tool Configuration -ACE MCP can be configured directly using official settings, no relay server required: +ACE (Augment Context Engine) provides powerful semantic code search. Two configuration methods available: -```json -{ - "mcpServers": { - "ace-tool": { - "command": "npx", - "args": ["-y", "@anthropic/ace-mcp"], - "env": { - "AUGMENT_API_KEY": "your-augment-api-key" - } - } - } -} -``` +| Method | Link | +|--------|------| +| **Official** | [Augment MCP Documentation](https://docs.augmentcode.com/context-services/mcp/overview) | +| **Proxy** | [ace-tool (GitHub)](https://github.com/eastxiaodong/ace-tool) | + +### Usage Example -Usage: ```javascript mcp__ace-tool__search_context({ project_root_path: "/path/to/project", diff --git a/WORKFLOW_GUIDE_CN.md b/WORKFLOW_GUIDE_CN.md index d6a012b9..776686d2 100644 --- a/WORKFLOW_GUIDE_CN.md +++ b/WORKFLOW_GUIDE_CN.md @@ -644,6 +644,26 @@ Phase 3: Synthesis Integration --- +## ACE Tool 配置 + +ACE (Augment Context Engine) 提供强大的语义代码搜索能力。两种配置方式: + +| 方式 | 链接 | +|------|------| +| **官方** | [Augment MCP 文档](https://docs.augmentcode.com/context-services/mcp/overview) | +| **代理** | [ace-tool (GitHub)](https://github.com/eastxiaodong/ace-tool) | + +### 使用示例 + +```javascript +mcp__ace-tool__search_context({ + project_root_path: "/path/to/project", + query: "authentication logic" +}) +``` + +--- + ## 总结 ### 分级总览