ccg-workflow 1.7.56 → 1.7.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -129,9 +129,37 @@ v1.7.39 新增 `/ccg:plan` 和 `/ccg:execute` 命令,将规划与执行解耦
129
129
 
130
130
  ### MCP 配置
131
131
 
132
- ace-tool 用于代码检索和 Prompt 增强,安装时可选配置。
132
+ 代码检索 MCP(二选一):
133
+ - **ContextWeaver**(推荐)- 本地混合搜索,需要硅基流动 API Key(免费)
134
+ - **ace-tool**(收费)- Augment 官方,Token 获取:https://augmentcode.com/
133
135
 
134
- Token 获取:https://augmentcode.com/
136
+ 辅助工具 MCP(可选):
137
+ - **Context7** - 获取最新库文档
138
+ - **Playwright** - 浏览器自动化/测试
139
+ - **DeepWiki** - 知识库查询
140
+ - **Exa** - 搜索引擎(需 API Key)
141
+
142
+ ```bash
143
+ # 配置 MCP
144
+ npx ccg-workflow menu # 选择「配置 MCP」
145
+ ```
146
+
147
+ ## 实用工具
148
+
149
+ ```bash
150
+ npx ccg-workflow menu # 选择「实用工具」
151
+ ```
152
+
153
+ - **ccusage** - Claude Code 用量分析
154
+ - **CCometixLine** - 状态栏工具(Git + 用量跟踪)
155
+
156
+ ## 安装 Claude Code
157
+
158
+ ```bash
159
+ npx ccg-workflow menu # 选择「安装 Claude Code」
160
+ ```
161
+
162
+ 支持多种安装方式:npm、homebrew、curl、powershell、cmd
135
163
 
136
164
  ## 更新 / 卸载
137
165
 
@@ -187,4 +215,4 @@ MIT
187
215
 
188
216
  ---
189
217
 
190
- v1.7.52 | [Issues](https://github.com/fengshao1227/ccg-workflow/issues)
218
+ v1.7.57 | [Issues](https://github.com/fengshao1227/ccg-workflow/issues)
package/dist/cli.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import cac from 'cac';
3
3
  import ansis from 'ansis';
4
- import { z as diagnoseMcpConfig, A as isWindows, B as readClaudeCodeConfig, C as fixWindowsMcpConfig, D as writeClaudeCodeConfig, r as readCcgConfig, b as initI18n, s as showMainMenu, i as init, E as configMcp, F as version, a as i18n } from './shared/ccg-workflow.FSvBGlYq.mjs';
4
+ import { z as diagnoseMcpConfig, A as isWindows, B as readClaudeCodeConfig, C as fixWindowsMcpConfig, D as writeClaudeCodeConfig, r as readCcgConfig, b as initI18n, s as showMainMenu, i as init, E as configMcp, F as version, a as i18n } from './shared/ccg-workflow.DOhO86L7.mjs';
5
5
  import 'inquirer';
6
6
  import 'node:child_process';
7
7
  import 'node:util';
package/dist/index.d.mts CHANGED
@@ -136,6 +136,7 @@ declare function installWorkflows(workflowIds: string[], installDir: string, for
136
136
  };
137
137
  };
138
138
  liteMode?: boolean;
139
+ mcpProvider?: string;
139
140
  }): Promise<InstallResult>;
140
141
  /**
141
142
  * Install and configure ace-tool MCP for Claude Code
package/dist/index.d.ts CHANGED
@@ -136,6 +136,7 @@ declare function installWorkflows(workflowIds: string[], installDir: string, for
136
136
  };
137
137
  };
138
138
  liteMode?: boolean;
139
+ mcpProvider?: string;
139
140
  }): Promise<InstallResult>;
140
141
  /**
141
142
  * Install and configure ace-tool MCP for Claude Code
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- export { c as changeLanguage, x as checkForUpdates, y as compareVersions, d as createDefaultConfig, e as createDefaultRouting, g as getCcgDir, f as getConfigPath, t as getCurrentVersion, v as getLatestVersion, j as getWorkflowById, h as getWorkflowConfigs, a as i18n, i as init, b as initI18n, l as installAceTool, m as installAceToolRs, k as installWorkflows, p as migrateToV1_4_0, q as needsMigration, r as readCcgConfig, s as showMainMenu, o as uninstallAceTool, n as uninstallWorkflows, u as update, w as writeCcgConfig } from './shared/ccg-workflow.FSvBGlYq.mjs';
1
+ export { c as changeLanguage, x as checkForUpdates, y as compareVersions, d as createDefaultConfig, e as createDefaultRouting, g as getCcgDir, f as getConfigPath, t as getCurrentVersion, v as getLatestVersion, j as getWorkflowById, h as getWorkflowConfigs, a as i18n, i as init, b as initI18n, l as installAceTool, m as installAceToolRs, k as installWorkflows, p as migrateToV1_4_0, q as needsMigration, r as readCcgConfig, s as showMainMenu, o as uninstallAceTool, n as uninstallWorkflows, u as update, w as writeCcgConfig } from './shared/ccg-workflow.DOhO86L7.mjs';
2
2
  import 'ansis';
3
3
  import 'inquirer';
4
4
  import 'node:child_process';