zcf 2.12.8 → 2.12.9

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
@@ -118,7 +118,7 @@ When using `--skip-prompt`, the following parameters are available:
118
118
  | `--api-type, -t` | API configuration type | `auth_token`, `api_key`, `ccr_proxy`, `skip` | No | `skip` |
119
119
  | `--api-key, -k` | API key (for both API key and auth token types) | string | Required when `api-type` is not `skip` | - |
120
120
  | `--api-url, -u` | Custom API URL | URL string | No | official API |
121
- | `--mcp-services, -m` | MCP services to install (multi-select, comma-separated) | `context7`, `mcp-deepwiki`, `Playwright`, `exa`, or `skip` for none | No | `all` |
121
+ | `--mcp-services, -m` | MCP services to install (multi-select, comma-separated) | `context7`, `open-websearch`, `spec-workflow`, `mcp-deepwiki`, `Playwright`, `exa`, or `skip` for none | No | `all` |
122
122
  | `--workflows, -w` | Workflows to install (multi-select, comma-separated) | `commonTools`, `sixStepsWorkflow`, `featPlanUx`, `gitWorkflow`, `bmadWorkflow`, or `skip` for none | No | `all` |
123
123
  | `--output-styles, -o` | Output styles to install (multi-select, comma-separated) | `engineer-professional`, `nekomata-engineer`, `laowang-engineer`, or `skip` for none | No | `all` |
124
124
  | `--default-output-style, -d` | Default output style | Same as output styles plus built-in: `default`, `explanatory`, `learning` | No | `engineer-professional` |
@@ -183,6 +183,16 @@ Alternatively, you can install the [VS Code extension](https://marketplace.visua
183
183
 
184
184
  **Usage Guide**: For detailed usage instructions and best practices, see the [official Spec Workflow documentation](https://github.com/Pimzino/spec-workflow-mcp/blob/main/README.md#quick-start).
185
185
 
186
+ #### 🔍 Open Web Search (v2.12.9+ New Feature)
187
+
188
+ [Open Web Search](https://github.com/Aas-ee/open-webSearch) is a versatile web search MCP service that provides access to multiple search engines:
189
+
190
+ - **Multi-Engine Support**: Search across DuckDuckGo, Bing, and Brave search engines
191
+ - **Privacy-Focused**: Uses privacy-respecting search engines as defaults
192
+ - **Flexible Configuration**: Customizable search engine preferences
193
+ - **No API Key Required**: Ready to use without additional authentication
194
+ - **Search Aggregation**: Ability to combine results from multiple engines
195
+
186
196
  #### 🚀 CCR (Claude Code Router) Support (v2.8+ Enhanced)
187
197
 
188
198
  [CCR](https://github.com/musistudio/claude-code-router/blob/main/README.md) is a powerful proxy router that enables:
@@ -15,7 +15,7 @@ import { rm, mkdir, copyFile as copyFile$1 } from 'node:fs/promises';
15
15
  import i18next from 'i18next';
16
16
  import Backend from 'i18next-fs-backend';
17
17
 
18
- const version = "2.12.8";
18
+ const version = "2.12.9";
19
19
  const homepage = "https://github.com/UfoMiao/zcf";
20
20
 
21
21
  const i18n = i18next.createInstance();
@@ -131,6 +131,20 @@ const MCP_SERVICE_CONFIGS = [
131
131
  env: {}
132
132
  }
133
133
  },
134
+ {
135
+ id: "open-websearch",
136
+ requiresApiKey: false,
137
+ config: {
138
+ type: "stdio",
139
+ command: "npx",
140
+ args: ["-y", "open-websearch@latest"],
141
+ env: {
142
+ MODE: "stdio",
143
+ DEFAULT_SEARCH_ENGINE: "duckduckgo",
144
+ ALLOWED_SEARCH_ENGINES: "duckduckgo,bing,brave"
145
+ }
146
+ }
147
+ },
134
148
  {
135
149
  id: "spec-workflow",
136
150
  requiresApiKey: false,
@@ -178,21 +192,20 @@ const MCP_SERVICE_CONFIGS = [
178
192
  async function getMcpServices() {
179
193
  ensureI18nInitialized();
180
194
  const mcpServiceList = [
181
- {
182
- id: "Playwright",
183
- name: i18n.t("mcp:services.Playwright.name"),
184
- description: i18n.t("mcp:services.Playwright.description")
185
- },
186
195
  {
187
196
  id: "context7",
188
197
  name: i18n.t("mcp:services.context7.name"),
189
198
  description: i18n.t("mcp:services.context7.description")
190
199
  },
191
200
  {
192
- id: "exa",
193
- name: i18n.t("mcp:services.exa.name"),
194
- description: i18n.t("mcp:services.exa.description"),
195
- apiKeyPrompt: i18n.t("mcp:services.exa.apiKeyPrompt")
201
+ id: "open-websearch",
202
+ name: i18n.t("mcp:services.open-websearch.name"),
203
+ description: i18n.t("mcp:services.open-websearch.description")
204
+ },
205
+ {
206
+ id: "spec-workflow",
207
+ name: i18n.t("mcp:services.spec-workflow.name"),
208
+ description: i18n.t("mcp:services.spec-workflow.description")
196
209
  },
197
210
  {
198
211
  id: "mcp-deepwiki",
@@ -200,9 +213,15 @@ async function getMcpServices() {
200
213
  description: i18n.t("mcp:services.mcp-deepwiki.description")
201
214
  },
202
215
  {
203
- id: "spec-workflow",
204
- name: i18n.t("mcp:services.spec-workflow.name"),
205
- description: i18n.t("mcp:services.spec-workflow.description")
216
+ id: "Playwright",
217
+ name: i18n.t("mcp:services.Playwright.name"),
218
+ description: i18n.t("mcp:services.Playwright.description")
219
+ },
220
+ {
221
+ id: "exa",
222
+ name: i18n.t("mcp:services.exa.name"),
223
+ description: i18n.t("mcp:services.exa.description"),
224
+ apiKeyPrompt: i18n.t("mcp:services.exa.apiKeyPrompt")
206
225
  }
207
226
  ];
208
227
  return MCP_SERVICE_CONFIGS.map((config) => {
@@ -7,6 +7,8 @@
7
7
  "services.Playwright.name": "Playwright Browser Control",
8
8
  "services.context7.description": "Query latest library documentation and code examples",
9
9
  "services.context7.name": "Context7 Docs",
10
+ "services.open-websearch.description": "Web search using DuckDuckGo, Bing, and Brave search engines",
11
+ "services.open-websearch.name": "Open Web Search",
10
12
  "services.exa.apiKeyPrompt": "Enter Exa API Key",
11
13
  "services.exa.description": "Web search using Exa AI",
12
14
  "services.exa.name": "Exa AI Search",
@@ -7,6 +7,8 @@
7
7
  "services.Playwright.name": "Playwright 浏览器控制",
8
8
  "services.context7.description": "查询最新的库文档和代码示例",
9
9
  "services.context7.name": "Context7 文档查询",
10
+ "services.open-websearch.description": "使用 DuckDuckGo、Bing 和 Brave 搜索引擎进行网页搜索",
11
+ "services.open-websearch.name": "open-websearch",
10
12
  "services.exa.apiKeyPrompt": "请输入 Exa API Key",
11
13
  "services.exa.description": "使用 Exa AI 进行网页搜索",
12
14
  "services.exa.name": "Exa AI 搜索",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zcf",
3
3
  "type": "module",
4
- "version": "2.12.8",
4
+ "version": "2.12.9",
5
5
  "description": "Zero-Config Claude-Code Flow - One-click configuration tool for Claude Code",
6
6
  "author": {
7
7
  "name": "Miao Da",