zcf 3.6.6 → 3.6.7

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.
@@ -135,7 +135,7 @@ const API_PROVIDER_PRESETS = [
135
135
  claudeCode: {
136
136
  baseUrl: "https://api.minimax.io/anthropic",
137
137
  authType: "auth_token",
138
- defaultModels: ["MiniMax-M2.7", "MiniMax-M2.7-highspeed"]
138
+ defaultModels: ["MiniMax-M3", "MiniMax-M2.7-highspeed"]
139
139
  },
140
140
  description: "MiniMax API Service"
141
141
  },
@@ -18,7 +18,7 @@ import { rm, mkdir, copyFile as copyFile$1 } from 'node:fs/promises';
18
18
  import i18next from 'i18next';
19
19
  import Backend from 'i18next-fs-backend';
20
20
 
21
- const version = "3.6.6";
21
+ const version = "3.6.7";
22
22
  const homepage = "https://github.com/UfoMiao/zcf";
23
23
 
24
24
  const i18n = i18next.createInstance();
@@ -174,10 +174,8 @@ const MCP_SERVICE_CONFIGS = [
174
174
  id: "mcp-deepwiki",
175
175
  requiresApiKey: false,
176
176
  config: {
177
- type: "stdio",
178
- command: "npx",
179
- args: ["-y", "mcp-deepwiki@latest"],
180
- env: {}
177
+ type: "http",
178
+ url: "https://mcp.deepwiki.com/mcp"
181
179
  }
182
180
  },
183
181
  {
@@ -5214,7 +5212,7 @@ function isValidCodeType(value) {
5214
5212
  function getPlatformStatusLineConfig() {
5215
5213
  return {
5216
5214
  type: "command",
5217
- command: isWindows() ? "%USERPROFILE%\\.claude\\ccline\\ccline.exe" : "~/.claude/ccline/ccline",
5215
+ command: "~/.claude/ccline/ccline",
5218
5216
  padding: 0
5219
5217
  };
5220
5218
  }
package/dist/index.d.mts CHANGED
@@ -87,7 +87,7 @@ interface McpService {
87
87
  config: McpServerConfig;
88
88
  }
89
89
  interface McpServerConfig {
90
- type: 'stdio' | 'sse';
90
+ type: 'stdio' | 'sse' | 'http';
91
91
  command?: string;
92
92
  args?: string[];
93
93
  url?: string;
package/dist/index.d.ts CHANGED
@@ -87,7 +87,7 @@ interface McpService {
87
87
  config: McpServerConfig;
88
88
  }
89
89
  interface McpServerConfig {
90
- type: 'stdio' | 'sse';
90
+ type: 'stdio' | 'sse' | 'http';
91
91
  command?: string;
92
92
  args?: string[];
93
93
  url?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zcf",
3
3
  "type": "module",
4
- "version": "3.6.6",
4
+ "version": "3.6.7",
5
5
  "description": "Zero-Config Code Flow - One-click configuration tool for Code Cli",
6
6
  "author": {
7
7
  "name": "Miao Da",