ccg-workflow 1.7.28 → 1.7.29

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/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 { y as diagnoseMcpConfig, z as isWindows, A as readClaudeCodeConfig, B as fixWindowsMcpConfig, C as writeClaudeCodeConfig, r as readCcgConfig, b as initI18n, s as showMainMenu, i as init, D as configMcp, E as version, a as i18n } from './shared/ccg-workflow.CJ9Z7dUF.mjs';
4
+ import { y as diagnoseMcpConfig, z as isWindows, A as readClaudeCodeConfig, B as fixWindowsMcpConfig, C as writeClaudeCodeConfig, r as readCcgConfig, b as initI18n, s as showMainMenu, i as init, D as configMcp, E as version, a as i18n } from './shared/ccg-workflow.m8vMf_l_.mjs';
5
5
  import 'inquirer';
6
6
  import 'node:child_process';
7
7
  import 'node:util';
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- export { c as changeLanguage, v as checkForUpdates, x as compareVersions, d as createDefaultConfig, e as createDefaultRouting, g as getCcgDir, f as getConfigPath, q as getCurrentVersion, t as getLatestVersion, j as getWorkflowById, h as getWorkflowConfigs, a as i18n, i as init, b as initI18n, l as installAceTool, k as installWorkflows, o as migrateToV1_4_0, p as needsMigration, r as readCcgConfig, s as showMainMenu, n as uninstallAceTool, m as uninstallWorkflows, u as update, w as writeCcgConfig } from './shared/ccg-workflow.CJ9Z7dUF.mjs';
1
+ export { c as changeLanguage, v as checkForUpdates, x as compareVersions, d as createDefaultConfig, e as createDefaultRouting, g as getCcgDir, f as getConfigPath, q as getCurrentVersion, t as getLatestVersion, j as getWorkflowById, h as getWorkflowConfigs, a as i18n, i as init, b as initI18n, l as installAceTool, k as installWorkflows, o as migrateToV1_4_0, p as needsMigration, r as readCcgConfig, s as showMainMenu, n as uninstallAceTool, m as uninstallWorkflows, u as update, w as writeCcgConfig } from './shared/ccg-workflow.m8vMf_l_.mjs';
2
2
  import 'ansis';
3
3
  import 'inquirer';
4
4
  import 'node:child_process';
@@ -10,7 +10,7 @@ import i18next from 'i18next';
10
10
  import ora from 'ora';
11
11
  import { parse, stringify } from 'smol-toml';
12
12
 
13
- const version = "1.7.28";
13
+ const version = "1.7.29";
14
14
 
15
15
  function isWindows() {
16
16
  return process.platform === "win32";
@@ -1324,10 +1324,6 @@ async function init(options = {}) {
1324
1324
  let aceToolToken = "";
1325
1325
  if (options.skipMcp) {
1326
1326
  mcpProvider = "skip";
1327
- const existingConfig = await readCcgConfig();
1328
- if (existingConfig?.performance?.liteMode !== void 0) {
1329
- liteMode = existingConfig.performance.liteMode;
1330
- }
1331
1327
  } else if (!options.skipPrompt) {
1332
1328
  console.log();
1333
1329
  console.log(ansis.cyan.bold(` \u{1F527} MCP \u5DE5\u5177\u914D\u7F6E`));
@@ -1401,12 +1397,17 @@ async function init(options = {}) {
1401
1397
  console.log(ansis.gray(` \u2022 \u53EF\u7A0D\u540E\u624B\u52A8\u914D\u7F6E\u4EFB\u4F55 MCP \u670D\u52A1`));
1402
1398
  console.log();
1403
1399
  }
1400
+ }
1401
+ if (!options.skipPrompt) {
1402
+ const existingConfig = await readCcgConfig();
1403
+ const currentLiteMode = existingConfig?.performance?.liteMode || false;
1404
1404
  console.log();
1405
1405
  const { enableWebUI } = await inquirer.prompt([{
1406
1406
  type: "confirm",
1407
1407
  name: "enableWebUI",
1408
1408
  message: `\u542F\u7528 Web UI \u5B9E\u65F6\u8F93\u51FA\uFF1F${ansis.gray("(\u7981\u7528\u53EF\u52A0\u901F\u54CD\u5E94)")}`,
1409
- default: true
1409
+ default: !currentLiteMode
1410
+ // Default to current setting (inverted)
1410
1411
  }]);
1411
1412
  liteMode = !enableWebUI;
1412
1413
  }
@@ -1437,7 +1438,7 @@ async function init(options = {}) {
1437
1438
  console.log(` ${ansis.cyan("Web UI")} ${liteMode ? ansis.gray("\u7981\u7528") : ansis.green("\u542F\u7528")}`);
1438
1439
  console.log(ansis.yellow("\u2501".repeat(50)));
1439
1440
  console.log();
1440
- if (!options.skipPrompt) {
1441
+ if (!options.skipPrompt && !options.force) {
1441
1442
  const { confirmed } = await inquirer.prompt([{
1442
1443
  type: "confirm",
1443
1444
  name: "confirmed",
@@ -1819,7 +1820,7 @@ async function performUpdate(fromVersion, toVersion, isNewVersion) {
1819
1820
  }
1820
1821
  spinner = ora("\u6B63\u5728\u5B89\u88C5\u65B0\u7248\u672C\u5DE5\u4F5C\u6D41\u548C\u4E8C\u8FDB\u5236...").start();
1821
1822
  try {
1822
- await execAsync$1(`npx --yes ccg-workflow@latest init --force --skip-mcp --skip-prompt`, {
1823
+ await execAsync$1(`npx --yes ccg-workflow@latest init --force --skip-mcp`, {
1823
1824
  timeout: 12e4,
1824
1825
  env: {
1825
1826
  ...process.env,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccg-workflow",
3
- "version": "1.7.28",
3
+ "version": "1.7.29",
4
4
  "description": "Claude-Codex-Gemini 多模型协作系统 - 智能路由多模型开发工作流",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.17.1",