@lark-apaas/miaoda-cli 0.1.38 → 0.1.39-alpha.2875384

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.
Files changed (31) hide show
  1. package/README.md +10 -0
  2. package/dist/cli/commands/deploy/modern.js +34 -11
  3. package/dist/cli/commands/skills/index.js +1 -1
  4. package/dist/cli/handlers/app/export.js +3 -3
  5. package/dist/cli/handlers/app/migrate.js +4 -1
  6. package/dist/cli/handlers/app/sync.js +2 -2
  7. package/dist/cli/handlers/db/sql.js +8 -6
  8. package/dist/cli/handlers/deploy/modern.js +39 -3
  9. package/dist/cli/handlers/plugin/plugin-local.js +5 -4
  10. package/dist/config/migrate-configs/vite-react-to-nestjs-react-fullstack.js +13 -2
  11. package/dist/config/sync-configs/nestjs-react-fullstack.js +6 -0
  12. package/dist/services/app/init/async-install.js +13 -2
  13. package/dist/services/app/init/install.js +4 -3
  14. package/dist/services/deploy/modern/atoms/build.js +3 -3
  15. package/dist/services/deploy/modern/atoms/local-release.js +3 -0
  16. package/dist/services/deploy/modern/atoms/tosutil.js +6 -8
  17. package/dist/services/deploy/modern/patch/actions.js +7 -1
  18. package/dist/services/deploy/modern/patch/index.js +2 -1
  19. package/dist/services/deploy/modern/pipelines/design-local.js +7 -1
  20. package/dist/services/deploy/modern/pipelines/local.js +7 -1
  21. package/dist/utils/archive.js +103 -0
  22. package/dist/utils/coding-steering.js +30 -2
  23. package/dist/utils/file-ops.js +28 -8
  24. package/dist/utils/http.js +6 -6
  25. package/dist/utils/npm-pack.js +6 -7
  26. package/dist/utils/run-npm.js +102 -0
  27. package/dist/utils/sync-rule.js +6 -0
  28. package/dist/utils/typescript-exclude.js +36 -0
  29. package/dist/utils/which.js +27 -0
  30. package/package.json +6 -2
  31. package/upgrade/templates/nestjs-react-fullstack/templates/nest-cli.json +1 -10
package/README.md CHANGED
@@ -52,6 +52,16 @@ miaoda file ls --output json
52
52
 
53
53
  完整命令通过 `miaoda --help` 或 `miaoda <domain> --help` 查看。
54
54
 
55
+ ## 全栈应用的 MCP UI 检查
56
+
57
+ 创建 MCP UI 时,Agent 在 `server/mcp/ui` 中同时生成 `tsconfig.json` 和 `eslint.config.cjs`,修改 UI 或其 shared 依赖后主动运行独立检查。模板和 CLI 不生成 UI 配置,也不将 UI 检查接入主工程 lint/type:check。
58
+
59
+ 主工程保留原 client/server 检查。Agent 从工程根执行 `npx --no-install tsc --noEmit --project server/mcp/ui/tsconfig.json`,再执行 `npx --no-install eslint --config server/mcp/ui/eslint.config.cjs "server/mcp/ui/**/*.{ts,tsx,js,jsx}" --max-warnings 0`;必须检查退出码并修复错误。无需辅助脚本或新增 npm 命令。
60
+
61
+ CLI 不注入 MCP UI 检查命令;主工程保留原有 client/server 检查,UI 由 Agent 按独立配置执行标准 tsc/eslint。
62
+
63
+ 存量 sync 不改写 ESLint 源码;UI 全局排除项由平台 ESLint 预设提供。TS 仅向已有显式 `exclude` 数组追加目录,保留注释和原项;依赖继承且未显式声明 `exclude` 的自定义配置保持不变并提示人工调整。自定义检查命令保留。lint.js 和 build.sh 仍由平台脚本模板维护,不依赖预设包中的脚本执行入口。
64
+
55
65
  ## 打包可本地访问的静态产物
56
66
 
57
67
  `miaoda app pack`(默认 `--mode standalone`)把当前应用构建成一份自包含静态产物,可脱离妙搭平台本地打开。
@@ -18,7 +18,14 @@ function registerDeployCommandsModern(program) {
18
18
  .option('--dir <path>', '项目目录', '.')
19
19
  .option('--skip-build', '跳过 build 步骤(已构建好时使用)', false)
20
20
  .option('--skip-release', '不创建/更新本地发布单,发布单状态由外部托管', false)
21
- .option('--conf <json>', '关联元信息 JSON,仅识别 checkPointVersion / commitID 两字段')
21
+ .option('--conf <json>', '关联元信息 JSON,仅识别 checkPointVersion / commitID / sessionID / marker / versionLevel 五字段')
22
+ // 这三个 flag 只在父命令声明一份,deploy 与 deploy patch 共用。
23
+ // 不能在 patch 上再声明一遍:commander 遇到父子同名 option 会把值判给父命令,
24
+ // 子命令拿到空数组,`deploy patch --create x` 会静默失效(deploy-patch-wiring 测试可复现)。
25
+ // patch 从 deployCmd.opts() 读,与它今天读 --dir 的方式一致。
26
+ .option('--create <relpath>', '新增文件(可重复)', shared_1.collectRepeatedOption, [])
27
+ .option('--update <relpath>', '修改文件(可重复)', shared_1.collectRepeatedOption, [])
28
+ .option('--delete <relpath>', '删除文件(可重复)', shared_1.collectRepeatedOption, [])
22
29
  .addHelpText('after', `
23
30
  不要用异步模式或后台模式调用 deploy,否则调用可能提前结束,Agent 会误判发布已完成。
24
31
 
@@ -41,14 +48,27 @@ function registerDeployCommandsModern(program) {
41
48
  外部据 stdout 返回的 version / preReleaseID 自行建单,并据本命令的
42
49
  退出码决定把发布单翻成 Finished 还是 Failed —— 失败态由外部负责,CLI 不再兜底。
43
50
  该模式下 releaseID / url 输出为 null(CLI 未建单,无从得知)。
44
- 注意:--conf checkPointVersion / commitID 唯一消费者是 createLocalRelease,
51
+ 注意:--conf 的四个字段唯一消费者是 createLocalRelease,
45
52
  本模式下不生效(静默忽略,不报错),需要关联请在外部建单时自行传递。
46
53
 
54
+ --create / --update / --delete(变更文件清单)
55
+ 可重复,值为工程根相对路径(禁绝对路径与 "..")。deploy patch 消费它做增量发布;
56
+ 在 deploy 下当前是预留口子——只校验路径并记一行日志,不改变上传行为:
57
+ deploy 仍然全量上传产物,latest 每次被重建为工作区的精确镜像(prune 清理远端多余对象),
58
+ 以此保证 git 仓库与 TOS 资源不会不一致。
59
+ 后续若实现增量上传,从这里取「要 PUT 哪些文件」即可,调用方无需改动;
60
+ 删除仍交给 prune,因为 prune 比对的是完整本地清单,与上传了哪些文件无关。
61
+
47
62
  --conf(关联元信息透传)
48
- 值为 JSON string,只识别两个字段,其余 key 忽略:
63
+ 值为 JSON string,只识别四个字段,其余 key 忽略:
49
64
  checkPointVersion 关联的 checkpoint 版本
50
65
  commitID 关联的代码 commit ID
51
- 两字段均可选;非法 JSON / 非对象 / 字段值非字符串会报错。
66
+ sessionID 发起本次发布的页面会话 ID,原样透传不做净化
67
+ marker 本次发布的变更说明,落发布单 description
68
+ 四字段均可选;非法 JSON / 非对象 / 字段值非字符串会报错。
69
+ versionLevel:本次发布的版本档位。"major" 声明这是一个大版本,历史记录里强制开新组;
70
+ "minor" 声明是小版本,即使距上次发布超过聚合阈值也不提升。不传则由服务端按
71
+ 时间间隔自动判定,与改造前行为一致——只有会主动声明档位的链路需要传。
52
72
 
53
73
  JSON 输出(stdout)
54
74
  {"data": {"appId": "...", "version": <n>, "url": "...", "releaseID": "...", "preReleaseID": "..."}}
@@ -60,6 +80,8 @@ JSON 输出(stdout)
60
80
  $ miaoda deploy --skip-build
61
81
  $ miaoda deploy --skip-release
62
82
  $ miaoda deploy --conf '{"checkPointVersion":"v3","commitID":"a1b2c3d"}'
83
+ $ miaoda deploy --conf '{"commitID":"a1b2c3d","sessionID":"<uuid>","marker":"编辑保存:修改 index.html"}'
84
+ $ miaoda deploy --update index.html --create assets/new.js --delete old.html
63
85
  `);
64
86
  deployCmd.action((0, shared_1.withHelp)(deployCmd, async (rawOpts) => {
65
87
  await (0, modern_1.handleDeployModern)({
@@ -68,17 +90,18 @@ JSON 输出(stdout)
68
90
  skipBuild: rawOpts.skipBuild,
69
91
  skipRelease: rawOpts.skipRelease,
70
92
  conf: rawOpts.conf,
93
+ creates: rawOpts.create,
94
+ updates: rawOpts.update,
95
+ deletes: rawOpts.delete,
71
96
  });
72
97
  }));
73
98
  const patchCmd = deployCmd
74
99
  .command('patch')
75
100
  .description('design-html 增量发布:按文件 create/update/delete,.html 变动时同步 routes.json')
76
- .option('--create <relpath>', '新增文件(可重复)', shared_1.collectRepeatedOption, [])
77
- .option('--update <relpath>', '覆盖已有文件(可重复)', shared_1.collectRepeatedOption, [])
78
- .option('--delete <relpath>', '删除文件(可重复)', shared_1.collectRepeatedOption, [])
79
101
  .option('--session-id <id>', '会话 ID,发布时透传给下游(可选)')
80
102
  .addHelpText('after', `
81
- --dir 为项目目录(与 deploy 同名参数,默认当前目录)。
103
+ --dir / --create / --update / --delete 声明在父命令 deploy 上,本命令共用,用法不变。
104
+ --dir 为项目目录,默认当前目录。
82
105
  仅支持 design-html(design_local_deploy)。路径为工程根相对路径(= 服务端 latest 下 key),
83
106
  禁绝对路径与 ".."。--create/--update 的本地文件必须存在。改动里含任意 .html(增 / 改 / 删)
84
107
  时自动重算并随包更新 routes.json;纯非 .html 改动不动 routes.json。
@@ -98,9 +121,9 @@ JSON 输出
98
121
  await (0, index_1.handleDeployPatch)({
99
122
  appId: (0, shared_1.resolveAppId)({}),
100
123
  dir: deployCmd.opts().dir ?? '.',
101
- creates: rawOpts.create,
102
- updates: rawOpts.update,
103
- deletes: rawOpts.delete,
124
+ creates: deployCmd.opts().create,
125
+ updates: deployCmd.opts().update,
126
+ deletes: deployCmd.opts().delete,
104
127
  sessionID: rawOpts.sessionId,
105
128
  });
106
129
  }));
@@ -53,7 +53,7 @@ function registerSkillsSync(parent) {
53
53
 
54
54
  JSON 输出
55
55
  {"data": {"stack": "...", "version": "...", "syncedSkills": [...], "techSynced": true|false,
56
- "claudeSkillsLink": "created|updated|noop|conflict" // 仅 --local 时}}
56
+ "claudeSkillsLink": "created|updated|noop|conflict|unsupported" // 仅 --local 时}}
57
57
 
58
58
  传 --type 时:
59
59
  {"data": {"mode": "sandbox", "type": "...", "packageName": "...", "version": "...",
@@ -38,11 +38,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
39
  exports.UPGRADE_MANIFEST_FILENAME = exports.DEFAULT_EXPORT_OUT = void 0;
40
40
  exports.handleAppExport = handleAppExport;
41
- const node_child_process_1 = require("node:child_process");
42
41
  const node_fs_1 = __importDefault(require("node:fs"));
43
42
  const node_os_1 = __importDefault(require("node:os"));
44
43
  const node_path_1 = __importDefault(require("node:path"));
45
44
  const api = __importStar(require("../../../api/index"));
45
+ const archive_1 = require("../../../utils/archive");
46
46
  const error_1 = require("../../../utils/error");
47
47
  const output_1 = require("../../../utils/output");
48
48
  const logger_1 = require("../../../utils/logger");
@@ -95,11 +95,11 @@ function extractArchive(archivePath, destDir, head) {
95
95
  const isZip = head.length >= 4 && head[0] === 0x50 && head[1] === 0x4b;
96
96
  const isGzip = head.length >= 2 && head[0] === 0x1f && head[1] === 0x8b;
97
97
  if (isZip) {
98
- (0, node_child_process_1.execFileSync)('unzip', ['-q', '-o', archivePath, '-d', destDir], { stdio: 'pipe' });
98
+ (0, archive_1.extractZip)(archivePath, destDir);
99
99
  return;
100
100
  }
101
101
  if (isGzip) {
102
- (0, node_child_process_1.execFileSync)('tar', ['-xzf', archivePath, '-C', destDir], { stdio: 'pipe' });
102
+ (0, archive_1.extractTarGz)(archivePath, destDir);
103
103
  return;
104
104
  }
105
105
  throw new error_1.AppError('EXPORT_ARCHIVE_INVALID', '无法识别归档格式(非 zip / tar.gz)', {
@@ -16,6 +16,7 @@ const error_1 = require("../../../utils/error");
16
16
  const output_1 = require("../../../utils/output");
17
17
  const env_1 = require("../../../utils/env");
18
18
  const logger_1 = require("../../../utils/logger");
19
+ const run_npm_1 = require("../../../utils/run-npm");
19
20
  /**
20
21
  * miaoda app migrate --to <stack> [--from <stack>] [--dir <path>]
21
22
  *
@@ -126,7 +127,7 @@ async function handleAppMigrate(opts) {
126
127
  (0, logger_1.log)('migrate', `Running npm ${installArgs.join(' ')}...`);
127
128
  let installError;
128
129
  try {
129
- (0, node_child_process_1.execFileSync)('npm', installArgs, {
130
+ (0, run_npm_1.execNpmSync)(installArgs, {
130
131
  cwd: targetDir,
131
132
  stdio: (0, output_1.isJsonMode)() ? ['ignore', 'ignore', 'inherit'] : 'inherit',
132
133
  });
@@ -167,6 +168,8 @@ async function handleAppMigrate(opts) {
167
168
  // - install 挂了不做 —— 新依赖不全, 杀旧 dev 后新 dev 起不来反而更糟,
168
169
  // 留着旧进程让用户先处理 installError
169
170
  // - 软失败:pkill 无匹配进程退出 1,catch 吞掉
171
+ // - pkill 是 POSIX-only,但整段被 isSandboxEnv() 包着(沙箱恒为 Linux),
172
+ // Windows 本地永远走不到这里,故不需要跨平台封装
170
173
  let devRestarted = false;
171
174
  if (installError === undefined && (0, env_1.isSandboxEnv)()) {
172
175
  (0, logger_1.log)('migrate', '沙箱环境,重启 dev process(平台 supervisor 会自动拉起)...');
@@ -9,7 +9,6 @@ exports.runStackSync = runStackSync;
9
9
  exports.summarizeSyncResults = summarizeSyncResults;
10
10
  exports.snapshotManagedDepSpecs = snapshotManagedDepSpecs;
11
11
  exports.diffManagedSpecs = diffManagedSpecs;
12
- const node_child_process_1 = require("node:child_process");
13
12
  const node_fs_1 = __importDefault(require("node:fs"));
14
13
  const node_path_1 = __importDefault(require("node:path"));
15
14
  const sync_configs_1 = require("../../../config/sync-configs");
@@ -19,6 +18,7 @@ const githooks_1 = require("../../../utils/githooks");
19
18
  const logs_dir_1 = require("../../../utils/logs-dir");
20
19
  const install_1 = require("../../../services/app/init/install");
21
20
  const spark_meta_1 = require("../../../utils/spark-meta");
21
+ const run_npm_1 = require("../../../utils/run-npm");
22
22
  const error_1 = require("../../../utils/error");
23
23
  const output_1 = require("../../../utils/output");
24
24
  const logger_1 = require("../../../utils/logger");
@@ -127,7 +127,7 @@ async function handleAppSync(opts) {
127
127
  (0, logger_1.log)('sync', `Running npm ${installArgs.join(' ')}...`);
128
128
  let installError;
129
129
  try {
130
- (0, node_child_process_1.execFileSync)('npm', installArgs, {
130
+ (0, run_npm_1.execNpmSync)(installArgs, {
131
131
  cwd: targetDir,
132
132
  stdio: (0, output_1.isJsonMode)() ? ['ignore', 'ignore', 'inherit'] : 'inherit',
133
133
  });
@@ -47,7 +47,7 @@ const colors_1 = require("../../../utils/colors");
47
47
  const fuzzy_match_1 = require("../../../utils/fuzzy-match");
48
48
  const index_1 = require("../../../api/db/index");
49
49
  const sql_keywords_1 = require("../../../api/db/sql-keywords");
50
- const node_child_process_1 = require("node:child_process");
50
+ const run_npm_1 = require("../../../utils/run-npm");
51
51
  const node_fs_1 = require("node:fs");
52
52
  const node_path_1 = __importDefault(require("node:path"));
53
53
  /**
@@ -140,20 +140,22 @@ async function maybeSyncAgentSchema(results) {
140
140
  (0, logger_1.debug)(`[db sql] DDL detected, running \`npm run gen:db-schema\` in ${projectRoot}`);
141
141
  try {
142
142
  await new Promise((resolve) => {
143
- const proc = (0, node_child_process_1.spawn)('npm', ['run', 'gen:db-schema'], {
143
+ const proc = (0, run_npm_1.spawnNpm)(['run', 'gen:db-schema'], {
144
144
  stdio: ['ignore', 'pipe', 'pipe'],
145
145
  cwd: projectRoot,
146
146
  });
147
147
  // --verbose:实时透传到 stderr 看进度;默认完全静默丢弃。
148
148
  // 任何路径下子进程输出都不会进入当前 CLI 的 stdout,--json 模式安全。
149
149
  // 注:默认路径必须 attach 监听器,否则 pipe 缓冲区写满会反压子进程。
150
+ // `?.`:stdio 走数组形式时 node 类型上 stdout/stderr 可为 null。这里 fd1/fd2
151
+ // 显式给了 'pipe',实际恒非 null;真为 null 也意味着不是 pipe、不存在缓冲反压。
150
152
  if (verbose) {
151
- proc.stdout.pipe(process.stderr);
152
- proc.stderr.pipe(process.stderr);
153
+ proc.stdout?.pipe(process.stderr);
154
+ proc.stderr?.pipe(process.stderr);
153
155
  }
154
156
  else {
155
- proc.stdout.on('data', drainChunk);
156
- proc.stderr.on('data', drainChunk);
157
+ proc.stdout?.on('data', drainChunk);
158
+ proc.stderr?.on('data', drainChunk);
157
159
  }
158
160
  let timedOut = false;
159
161
  const timer = setTimeout(() => {
@@ -4,14 +4,17 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.parseDeployConf = parseDeployConf;
7
+ exports.parseChangedFiles = parseChangedFiles;
7
8
  exports.handleDeployModern = handleDeployModern;
8
9
  const node_path_1 = __importDefault(require("node:path"));
9
10
  const output_1 = require("../../../utils/output");
10
11
  const error_1 = require("../../../utils/error");
11
12
  const index_1 = require("../../../services/deploy/modern/index");
12
- const CONF_EXPECTED = '期望形如 {"checkPointVersion":"...","commitID":"..."} 的 JSON 对象';
13
+ const index_2 = require("../../../services/deploy/modern/patch/index");
14
+ const logger_1 = require("../../../utils/logger");
15
+ const CONF_EXPECTED = '期望形如 {"checkPointVersion":"...","commitID":"...","sessionID":"...","marker":"...","versionLevel":"major"} 的 JSON 对象';
13
16
  /**
14
- * 解析 `--conf` JSON string,只取 checkPointVersion / commitID 两个白名单字段。
17
+ * 解析 `--conf` JSON string,只取 checkPointVersion / commitID / sessionID / marker / versionLevel 五个白名单字段。
15
18
  * - 未传 → 返回 {}(行为不变)。
16
19
  * - 非法 JSON / 非 object / 字段值非 string → 抛 DEPLOY_CONF_INVALID。
17
20
  * - 空串字段视为未提供(不进 body,保持可选语义);未知 key 忽略。
@@ -31,7 +34,13 @@ function parseDeployConf(raw) {
31
34
  }
32
35
  const source = parsed;
33
36
  const conf = {};
34
- for (const key of ['checkPointVersion', 'commitID']) {
37
+ for (const key of [
38
+ 'checkPointVersion',
39
+ 'commitID',
40
+ 'sessionID',
41
+ 'marker',
42
+ 'versionLevel',
43
+ ]) {
35
44
  const value = source[key];
36
45
  if (value === undefined)
37
46
  continue;
@@ -43,6 +52,29 @@ function parseDeployConf(raw) {
43
52
  }
44
53
  return conf;
45
54
  }
55
+ /**
56
+ * 解析 `--create` / `--update` / `--delete`,校验路径后组成 PatchChangeSet。
57
+ *
58
+ * 复用 deploy patch 的 normalizeRel(同一套校验:禁绝对路径、禁 ".."、统一为 posix 相对路径),
59
+ * 保证两条链路对「变更文件」的接受范围完全一致,调用方从 patch 迁移不会遇到收紧或放宽。
60
+ *
61
+ * 当前是预留口子:deploy 仍然全量上传,这里只校验并记一行日志,不参与上传决策。
62
+ * 三个参数都没传 → 返回 undefined(与不传时行为完全一致,不产生日志)。
63
+ */
64
+ function parseChangedFiles(opts) {
65
+ const cs = {
66
+ creates: (opts.creates ?? []).map((rel) => (0, index_2.normalizeRel)(rel)),
67
+ updates: (opts.updates ?? []).map((rel) => (0, index_2.normalizeRel)(rel)),
68
+ deletes: (opts.deletes ?? []).map((rel) => (0, index_2.normalizeRel)(rel)),
69
+ };
70
+ const total = cs.creates.length + cs.updates.length + cs.deletes.length;
71
+ if (total === 0)
72
+ return undefined;
73
+ (0, logger_1.log)('deploy', `收到变更文件提示 ${String(total)} 个(create=${String(cs.creates.length)} ` +
74
+ `update=${String(cs.updates.length)} delete=${String(cs.deletes.length)}):` +
75
+ '当前仍为全量上传,未启用增量');
76
+ return cs;
77
+ }
46
78
  /**
47
79
  * miaoda deploy(modern scene 专用,CLI 表面对齐 openclaw-cli)
48
80
  *
@@ -58,6 +90,10 @@ async function handleDeployModern(opts) {
58
90
  skipRelease: opts.skipRelease ?? false,
59
91
  checkPointVersion: conf.checkPointVersion,
60
92
  commitID: conf.commitID,
93
+ sessionID: conf.sessionID,
94
+ marker: conf.marker,
95
+ versionLevel: conf.versionLevel,
96
+ changedFiles: parseChangedFiles(opts),
61
97
  });
62
98
  (0, output_1.emit)({
63
99
  data: {
@@ -56,10 +56,11 @@ exports.readAllCapabilities = readAllCapabilities;
56
56
  exports.hydrateCapability = hydrateCapability;
57
57
  const node_fs_1 = __importDefault(require("node:fs"));
58
58
  const node_path_1 = __importDefault(require("node:path"));
59
- const node_child_process_1 = require("node:child_process");
60
59
  const node_module_1 = require("node:module");
60
+ const archive_1 = require("../../../utils/archive");
61
61
  const error_1 = require("../../../utils/error");
62
62
  const logger_1 = require("../../../utils/logger");
63
+ const run_npm_1 = require("../../../utils/run-npm");
63
64
  // ── Project paths ──
64
65
  function getProjectRoot() {
65
66
  return process.cwd();
@@ -152,7 +153,7 @@ function extractTgzToNodeModules(tgzPath, pluginName) {
152
153
  }
153
154
  node_fs_1.default.mkdirSync(tempDir, { recursive: true });
154
155
  try {
155
- (0, node_child_process_1.execSync)(`tar -xzf "${tgzPath}" -C "${tempDir}"`, { stdio: 'pipe' });
156
+ (0, archive_1.extractTarGz)(tgzPath, tempDir);
156
157
  const extractedDir = node_path_1.default.join(tempDir, 'package');
157
158
  if (node_fs_1.default.existsSync(extractedDir)) {
158
159
  node_fs_1.default.renameSync(extractedDir, targetDir);
@@ -191,7 +192,7 @@ function installMissingDeps(deps) {
191
192
  if (deps.length === 0)
192
193
  return;
193
194
  (0, logger_1.log)('plugin', `Installing missing dependencies: ${deps.join(', ')}`);
194
- const result = (0, node_child_process_1.spawnSync)('npm', ['install', ...deps, '--no-save', '--no-package-lock'], {
195
+ const result = (0, run_npm_1.runNpmSync)(['install', ...deps, '--no-save', '--no-package-lock'], {
195
196
  cwd: getProjectRoot(),
196
197
  stdio: 'inherit',
197
198
  });
@@ -205,7 +206,7 @@ function installMissingDeps(deps) {
205
206
  }
206
207
  }
207
208
  function npmInstall(tgzPath) {
208
- const result = (0, node_child_process_1.spawnSync)('npm', ['install', tgzPath, '--no-save', '--no-package-lock', '--ignore-scripts'], { cwd: getProjectRoot(), stdio: 'inherit' });
209
+ const result = (0, run_npm_1.runNpmSync)(['install', tgzPath, '--no-save', '--no-package-lock', '--ignore-scripts'], { cwd: getProjectRoot(), stdio: 'inherit' });
209
210
  if (result.error) {
210
211
  throw new error_1.AppError('INTERNAL_NPM_FAILED', `npm install failed: ${result.error.message}`, {
211
212
  next_actions: ['确认本机已安装 npm,可 --verbose 查看执行详情'],
@@ -14,7 +14,8 @@
14
14
  * + client/index.html 等 fullstack 形态新增的资产)
15
15
  * 5. 把 fullstack 必需的 scripts 加到 package.json(dev / build / type:check 等)
16
16
  * 6. 从 fullstack template/package.json 取版本号,精确加 NestJS 强依赖白名单
17
- * (client-toolkit + 几个 @nestjs/* + fullstack-nestjs-core + hbs 等;不全量 merge)
17
+ * (client-toolkit + 几个 @nestjs/* + SWC 工具链 + fullstack-nestjs-core + hbs 等;
18
+ * 不全量 merge)
18
19
  * 7. codemod 业务代码:@lark-apaas/client-toolkit-lite → @lark-apaas/client-toolkit
19
20
  * 8. codemod vite.config:defineConfig(...) → defineConfig(..., { fullstack: true }),
20
21
  * 让 coding-preset-vite-react 启用 fullstack dev-proxy / html-output / basename /
@@ -58,7 +59,9 @@ exports.MIGRATE_CONFIG = {
58
59
  // ===== 4. fullstack 形态必需资产(覆盖 user 已有同名文件) =====
59
60
  // server/ 整目录:main.ts / app.module.ts / common/ / modules/view/ 等(fullstack 必需)
60
61
  { type: 'directory', from: 'server', to: 'server', overwrite: true },
61
- // nest-cli.json:nest build 入口
62
+ // nest-cli.json:整文件采用当前 fullstack template,除 Nest build 入口外还必须带上
63
+ // compilerOptions.builder.type=swc 及配套 typeCheck/options。若这里只保留旧的空配置
64
+ // 或字段级残缺合并,即使 package.json 已补齐 SWC 依赖,Nest 仍会回退到 TSC 构建。
62
65
  { type: 'file', from: 'nest-cli.json', to: 'nest-cli.json', overwrite: true },
63
66
  // tsconfig.* —— vite-react 时代 tsconfig 配 include: ["src"],迁完代码搬到 client/src,
64
67
  // include 路径不对 + 老 tsconfig.app 还 extends @lark-apaas/coding-presets-react;
@@ -272,6 +275,14 @@ exports.MIGRATE_CONFIG = {
272
275
  // nest start / nest build 必需
273
276
  '@nestjs/cli',
274
277
  '@nestjs/testing',
278
+ // nest-cli.json 会被上面的 file rule 覆盖成 builder.type=swc。Nest CLI 只负责
279
+ // 调度 builder,不会自带 SWC 可执行入口和 native compiler;两者必须一起从
280
+ // 当前目标模板取版本写入迁移后 package.json。若漏掉,前端应用升级成全栈后
281
+ // 配置已经选择 SWC,但全新的依赖安装树里找不到 @swc/cli/@swc/core,冷启动和
282
+ // nest build 会失败;开发机旧 node_modules 偶然残留 SWC 时还可能掩盖该问题。
283
+ // 这里不硬编码版本,保持升级应用与同版本新建全栈应用使用完全相同的 SWC 组合。
284
+ '@swc/cli',
285
+ '@swc/core',
275
286
  // server ts 编译
276
287
  'ts-node',
277
288
  '@types/express',
@@ -159,6 +159,12 @@ exports.SYNC_CONFIG = {
159
159
  to: `npx -y ${fullstack_cli_pin_1.FULLSTACK_CLI_PIN_SPEC} sync --disable-gen-openapi`,
160
160
  ifStartsWith: 'npx -y @lark-apaas/fullstack-cli sync',
161
161
  },
162
+ // MCP UI 使用独立浏览器配置;只补服务端排除项,不生成 UI 目录和配置。
163
+ {
164
+ type: 'typescript-exclude',
165
+ to: 'tsconfig.node.json',
166
+ path: 'server/mcp/ui',
167
+ },
162
168
  // ===== miaoda-cli 本地开发新增规则(fullstack-cli sync 不会执行) =====
163
169
  // M1. scripts.dev:local —— 本地用户绕过沙箱判定直接跑本地链路(npm run dev:local)。
164
170
  // dev.sh 在 MIAODA_DEP_CACHE_DIR 非空时跑 dev.js(沙箱保活)、否则 exec dev-local.js;显式 dev:local
@@ -11,13 +11,24 @@ const node_fs_1 = __importDefault(require("node:fs"));
11
11
  const node_path_1 = __importDefault(require("node:path"));
12
12
  const env_1 = require("../../../utils/env");
13
13
  const install_1 = require("./install");
14
- /** event marker 目录,写死;写前 mkdir -p。沙箱里 code server 轮询此目录。 */
14
+ /**
15
+ * event marker 目录,写死 `/tmp/event`;写前 mkdir -p。沙箱里 code server 轮询此目录,
16
+ * 路径是与平台约定的契约,**不能换成 os.tmpdir()**。所有读写它的代码路径都被
17
+ * isSandboxEnv() 守着(沙箱恒为 Linux),非沙箱环境不会碰。
18
+ */
15
19
  const EVENT_DIR = '/tmp/event';
16
20
  /** 安装成功 marker 名 */
17
21
  const MARKER_READY = 'WORKSPACE_READY';
18
22
  /** 安装失败 marker 名 */
19
23
  const MARKER_FAILED = 'WORKSPACE_FAILED';
20
- /** 后台 worker stdout/stderr 落盘路径 */
24
+ /**
25
+ * 后台 worker stdout/stderr 落盘路径,写死 `/tmp/...`。
26
+ *
27
+ * 刻意**不**换成 `os.tmpdir()`:这个路径已经是对外契约 —— 写在 async-install 设计
28
+ * spec 里、`app init` 的 help 文案里、失败 marker 的 `logPath` 字段里,用户与平台
29
+ * 都按它 cat 日志。Windows 上 Node 会把 `/tmp` 解析到当前盘符根下的 `\tmp\`,
30
+ * 目录可写、内容可读,功能不受影响,不值得为此破坏契约。
31
+ */
21
32
  exports.ASYNC_INSTALL_LOG = '/tmp/async_install_dep.std.log';
22
33
  function nowIso() {
23
34
  return new Date().toISOString();
@@ -5,12 +5,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.installDependencies = installDependencies;
7
7
  exports.resolveNpmInstallRegistry = resolveNpmInstallRegistry;
8
- const node_child_process_1 = require("node:child_process");
9
8
  const node_crypto_1 = __importDefault(require("node:crypto"));
10
9
  const node_fs_1 = __importDefault(require("node:fs"));
11
10
  const node_path_1 = __importDefault(require("node:path"));
11
+ const archive_1 = require("../../../utils/archive");
12
12
  const error_1 = require("../../../utils/error");
13
13
  const logger_1 = require("../../../utils/logger");
14
+ const run_npm_1 = require("../../../utils/run-npm");
14
15
  const DEP_CACHE_ENV = 'MIAODA_DEP_CACHE_DIR';
15
16
  /**
16
17
  * 依赖安装。
@@ -94,7 +95,7 @@ function md5File(filePath) {
94
95
  }
95
96
  function extractZip(zipPath, targetDir, stdio) {
96
97
  try {
97
- (0, node_child_process_1.execFileSync)('unzip', ['-q', '-o', zipPath, '-d', targetDir], { stdio });
98
+ (0, archive_1.extractZip)(zipPath, targetDir, { stdio });
98
99
  }
99
100
  catch (err) {
100
101
  const msg = err instanceof Error ? err.message : String(err);
@@ -129,5 +130,5 @@ function runNpmInstall(targetDir, stdio, extraPackages) {
129
130
  args.push(...extraPackages);
130
131
  }
131
132
  (0, logger_1.log)('init', `npm ${args.join(' ')} in ${targetDir}...`);
132
- (0, node_child_process_1.execFileSync)('npm', args, { cwd: targetDir, stdio });
133
+ (0, run_npm_1.execNpmSync)(args, { cwd: targetDir, stdio });
133
134
  }
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.runBuild = runBuild;
4
- const node_child_process_1 = require("node:child_process");
5
4
  const error_1 = require("../../../../utils/error");
6
5
  const logger_1 = require("../../../../utils/logger");
6
+ const run_npm_1 = require("../../../../utils/run-npm");
7
7
  const protocol_1 = require("../protocol");
8
8
  /**
9
9
  * 给 RESOURCE_CDN_PREFIX 补 https:// 协议头:
@@ -33,7 +33,7 @@ function ensureHttpsScheme(v) {
33
33
  * 是 runtime 同域相对路径(例如 /app/<appId>/runtime/api/v1/storage/object/<bucket>/),
34
34
  * 不补 https scheme,原样注入。顶层 static_cdn_prefix 不再下发。
35
35
  *
36
- * build 失败抛 AppError(execSync 自身会 throw,捕获后包一层加错误码)。
36
+ * build 失败抛 AppError(execNpmSync 自身会 throw,捕获后包一层加错误码)。
37
37
  */
38
38
  function runBuild(opts) {
39
39
  const staticCred = (0, protocol_1.parsePaasStorageCredential)((0, protocol_1.requireDataKey)(opts.data, protocol_1.DataKey.OUTPUT_STATIC_PAAS_STORAGE_CREDENTIAL), protocol_1.DataKey.OUTPUT_STATIC_PAAS_STORAGE_CREDENTIAL);
@@ -47,7 +47,7 @@ function runBuild(opts) {
47
47
  };
48
48
  (0, logger_1.log)('deploy', 'Building...');
49
49
  try {
50
- (0, node_child_process_1.execSync)('npm run build', {
50
+ (0, run_npm_1.execNpmSync)(['run', 'build'], {
51
51
  cwd: opts.projectDir,
52
52
  stdio: 'inherit',
53
53
  env: buildEnv,
@@ -16,6 +16,9 @@ async function createLocalRelease(appId, version, extra) {
16
16
  version,
17
17
  checkPointVersion: extra?.checkPointVersion,
18
18
  commitID: extra?.commitID,
19
+ sessionID: extra?.sessionID,
20
+ description: extra?.marker,
21
+ versionLevel: extra?.versionLevel,
19
22
  });
20
23
  }
21
24
  /**
@@ -18,15 +18,13 @@ const node_path_1 = __importDefault(require("node:path"));
18
18
  const node_child_process_1 = require("node:child_process");
19
19
  const error_1 = require("../../../../utils/error");
20
20
  const logger_1 = require("../../../../utils/logger");
21
+ const which_1 = require("../../../../utils/which");
21
22
  function resolveTosutilPath() {
22
- try {
23
- const resolved = (0, node_child_process_1.execFileSync)('which', ['tosutil'], { encoding: 'utf-8' }).trim();
24
- if (resolved)
25
- return resolved;
26
- }
27
- catch {
28
- /* fallthrough */
29
- }
23
+ // 用 whichSync 而不是 shell out `which`:Windows 上没有 `which`(对应 `where`),
24
+ // 且查 PATH 本身不需要子进程。
25
+ const resolved = (0, which_1.whichSync)('tosutil');
26
+ if (resolved !== undefined)
27
+ return resolved;
30
28
  throw new error_1.AppError('DEPLOY_TOSUTIL_MISSING', 'tosutil is not installed or not in PATH. modern deploy requires sandbox preinstalled tosutil.');
31
29
  }
32
30
  function tosutilUploadFromTos(cred) {
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.normalizeRel = normalizeRel;
6
7
  exports.buildTosActions = buildTosActions;
7
8
  const node_fs_1 = __importDefault(require("node:fs"));
8
9
  const node_path_1 = __importDefault(require("node:path"));
@@ -10,7 +11,12 @@ const error_1 = require("../../../../utils/error");
10
11
  const index_1 = require("../../../../api/deploy/index");
11
12
  const content_1 = require("./content");
12
13
  const routes_1 = require("./routes");
13
- /** 校验相对路径:禁绝对路径、禁含 ".." 段;normalize 成 posix 相对。 */
14
+ /**
15
+ * 校验相对路径:禁绝对路径、禁含 ".." 段;normalize 成 posix 相对。
16
+ *
17
+ * 导出供 `deploy` 的 `--create` / `--update` / `--delete` 复用同一套校验,
18
+ * 让两条链路对「变更文件」的接受范围一致,避免两处实现漂移。
19
+ */
14
20
  function normalizeRel(rel) {
15
21
  if (node_path_1.default.isAbsolute(rel) || rel.startsWith('/')) {
16
22
  throw new error_1.AppError('ARGS_INVALID', `文件路径不能是绝对路径:${rel}`);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.buildTosActions = void 0;
3
+ exports.normalizeRel = exports.buildTosActions = void 0;
4
4
  exports.patchDesignDeploy = patchDesignDeploy;
5
5
  const spark_meta_1 = require("../../../../utils/spark-meta");
6
6
  const error_1 = require("../../../../utils/error");
@@ -10,6 +10,7 @@ const template_key_map_1 = require("../template-key-map");
10
10
  const actions_1 = require("./actions");
11
11
  var actions_2 = require("./actions");
12
12
  Object.defineProperty(exports, "buildTosActions", { enumerable: true, get: function () { return actions_2.buildTosActions; } });
13
+ Object.defineProperty(exports, "normalizeRel", { enumerable: true, get: function () { return actions_2.normalizeRel; } });
13
14
  /**
14
15
  * design-html 增量发布:读本地文件组 TosFileAction(改动含 .html 时带重算的
15
16
  * routes.json),调后端 applyTosDiff 应用到 latest。scope 限 design_local_deploy。
@@ -28,7 +28,13 @@ async function designLocalPublishPipeline(opts) {
28
28
  skipRelease: opts.skipRelease ?? false,
29
29
  appId: ctx.appId,
30
30
  version: pre.version,
31
- extra: { checkPointVersion: opts.checkPointVersion, commitID: opts.commitID },
31
+ extra: {
32
+ checkPointVersion: opts.checkPointVersion,
33
+ commitID: opts.commitID,
34
+ sessionID: opts.sessionID,
35
+ marker: opts.marker,
36
+ versionLevel: opts.versionLevel,
37
+ },
32
38
  });
33
39
  try {
34
40
  await (0, index_1.uploadDesignArtifacts)({ projectDir: ctx.projectDir, data });
@@ -45,7 +45,13 @@ async function localBuildLocalPublishPipeline(opts) {
45
45
  skipRelease: opts.skipRelease ?? false,
46
46
  appId: ctx.appId,
47
47
  version: pre.version,
48
- extra: { checkPointVersion: opts.checkPointVersion, commitID: opts.commitID },
48
+ extra: {
49
+ checkPointVersion: opts.checkPointVersion,
50
+ commitID: opts.commitID,
51
+ sessionID: opts.sessionID,
52
+ marker: opts.marker,
53
+ versionLevel: opts.versionLevel,
54
+ },
49
55
  });
50
56
  try {
51
57
  (0, logger_1.log)('deploy', 'Uploading artifacts...');
@@ -0,0 +1,103 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.resetArchiveProbeCache = resetArchiveProbeCache;
4
+ exports.extractTarGz = extractTarGz;
5
+ exports.extractZip = extractZip;
6
+ const node_child_process_1 = require("node:child_process");
7
+ const error_1 = require("../utils/error");
8
+ const logger_1 = require("../utils/logger");
9
+ const which_1 = require("../utils/which");
10
+ /**
11
+ * 归档解压的跨平台入口 —— 仓库内所有解压必须走这里,禁止再裸写
12
+ * `execFileSync('unzip', ...)` / `execSync('tar -xzf ...')`。
13
+ *
14
+ * 平台差异:
15
+ * - `tar`:Linux(GNU tar)、macOS(bsdtar)、Windows 10 1803+(内置 bsdtar)都有,
16
+ * 且都支持 `-xzf` 解 .tar.gz,所以 tar.gz 一条路走到底。
17
+ * - `unzip`:Linux / macOS 常见,**Windows 完全没有**。但 bsdtar 能解 zip,
18
+ * 所以 zip 走 `unzip → tar` 两级探测:Linux 命中 unzip,Windows 命中 tar。
19
+ * (GNU tar 不支持 zip,所以顺序不能反 —— Linux 上必须优先 unzip。)
20
+ *
21
+ * 一律用 execFileSync 传参数数组、不过 shell:路径含空格 / 中文 / `&` 时,
22
+ * 拼字符串交给 cmd.exe 或 sh 重新分词的行为在各平台不一致,且是注入面。
23
+ *
24
+ * ─────────────────────────────────────────────────────────────────────────────
25
+ * 为什么**不**换成纯 JS 解压库(adm-zip / yauzl / node-tar)—— 别再尝试了:
26
+ *
27
+ * `extractZip` 的主要用途是解依赖缓存 zip(`MIAODA_DEP_CACHE_DIR`),内容是整个
28
+ * `node_modules/`。实测对比同一个 zip:
29
+ *
30
+ * | | Unix mode | 软链 |
31
+ * | unzip | 755 保留 | 保留 |
32
+ * | adm-zip | 666(执行位丢) | 被当普通文件解开 |
33
+ *
34
+ * `node_modules/.bin/*` 既需要执行位、又大量是软链 —— 用 adm-zip 解出来的缓存,
35
+ * 沙箱里 `npm run dev` 会直接挂。yauzl 更低层,mode 得自己从
36
+ * `externalFileAttributes` 还原、软链也要自己判,等于把 unzip 重写一遍。
37
+ *
38
+ * node-tar 倒是保权限 + 软链(npm 自己用它装包),但装出来 2.9MB、连传递依赖
39
+ * +3.7MB —— 而本仓生产依赖总共才 1.7MB,翻 3 倍多。CLI 是 `npx -y` 拉起的
40
+ * (模板 `scripts/dev.sh` 每次本地启动都会跑 `app sync`),冷启动下载量直接可感。
41
+ * 外部 tar 在 Linux / macOS / Windows 10 1803+ 都有,不值得为此付这个代价。
42
+ * ─────────────────────────────────────────────────────────────────────────────
43
+ */
44
+ /** tar 可用性探测结果缓存(单次 CLI 执行期内 PATH 不变) */
45
+ let tarAvailable;
46
+ let unzipAvailable;
47
+ function hasTar() {
48
+ tarAvailable ??= (0, which_1.whichSync)('tar') !== undefined;
49
+ return tarAvailable;
50
+ }
51
+ function hasUnzip() {
52
+ unzipAvailable ??= (0, which_1.whichSync)('unzip') !== undefined;
53
+ return unzipAvailable;
54
+ }
55
+ /** 仅测试用:清掉可用性探测缓存 */
56
+ function resetArchiveProbeCache() {
57
+ tarAvailable = undefined;
58
+ unzipAvailable = undefined;
59
+ }
60
+ /**
61
+ * 解 .tar.gz / .tgz 到 `destDir`(须已存在)。失败抛 `INTERNAL_EXTRACT_FAILED`。
62
+ */
63
+ function extractTarGz(archivePath, destDir, options = {}) {
64
+ if (!hasTar()) {
65
+ throw new error_1.AppError('INTERNAL_EXTRACT_FAILED', `解压 ${archivePath} 需要 tar,但当前环境 PATH 中找不到`, {
66
+ next_actions: [
67
+ 'Linux/macOS:安装 tar(通常已内置)',
68
+ 'Windows:升级到 Windows 10 1803+(内置 tar),或安装 Git for Windows 并把其 usr/bin 加入 PATH',
69
+ ],
70
+ });
71
+ }
72
+ (0, logger_1.debug)(`archive: tar -xzf ${archivePath} -C ${destDir}`);
73
+ (0, node_child_process_1.execFileSync)('tar', ['-xzf', archivePath, '-C', destDir], {
74
+ stdio: ['ignore', 'pipe', 'pipe'],
75
+ ...options,
76
+ });
77
+ }
78
+ /**
79
+ * 解 .zip 到 `destDir`(须已存在),同名文件覆盖。失败抛 `INTERNAL_EXTRACT_FAILED`。
80
+ *
81
+ * unzip 优先(Linux 上唯一可用项),退化到 bsdtar(Windows 上唯一可用项)。
82
+ */
83
+ function extractZip(archivePath, destDir, options = {}) {
84
+ const stdio = ['ignore', 'pipe', 'pipe'];
85
+ if (hasUnzip()) {
86
+ (0, logger_1.debug)(`archive: unzip -q -o ${archivePath} -d ${destDir}`);
87
+ (0, node_child_process_1.execFileSync)('unzip', ['-q', '-o', archivePath, '-d', destDir], { stdio, ...options });
88
+ return;
89
+ }
90
+ if (hasTar()) {
91
+ // bsdtar 按后缀自动识别 zip,故用 -xf 而非 -xzf(zip 不是 gzip 流)。
92
+ // 覆盖行为与 `unzip -o` 一致:tar 默认覆盖已存在文件。
93
+ (0, logger_1.debug)(`archive: tar -xf ${archivePath} -C ${destDir}(unzip 不可用,走 bsdtar)`);
94
+ (0, node_child_process_1.execFileSync)('tar', ['-xf', archivePath, '-C', destDir], { stdio, ...options });
95
+ return;
96
+ }
97
+ throw new error_1.AppError('INTERNAL_EXTRACT_FAILED', `解压 ${archivePath} 需要 unzip 或 tar,但当前环境 PATH 中两者都找不到`, {
98
+ next_actions: [
99
+ 'Linux:apt-get install unzip / yum install unzip',
100
+ 'Windows:升级到 Windows 10 1803+(内置 tar 可解 zip)',
101
+ ],
102
+ });
103
+ }
@@ -237,7 +237,33 @@ function syncCodingSteering(opts) {
237
237
  * - 已是软链但指错地方:删旧的,建新的(updated)
238
238
  * - 已是普通目录 / 文件:不覆盖,警告并跳过(conflict)—— 用户可能手动放了别的 skills
239
239
  * - 不存在:建新的(created)
240
+ *
241
+ * 软链建不出来时返回 unsupported 而不是抛错:Windows 上非管理员且未开「开发者模式」
242
+ * 时 symlinkSync 报 EPERM,这不该让整条 steering 同步(进而 app init / app sync)失败。
243
+ * 退化后果是 Claude Code 默认路径读不到 skills —— 功能降级但项目可用,且日志里给了
244
+ * 明确的开启方式。不做「复制代替软链」的兜底:那会让两份内容各自漂移,比读不到更糟。
245
+ */
246
+ /**
247
+ * 建目录软链,失败只 warn 不抛。返回是否建成。
248
+ *
249
+ * 主要挡的是 Windows 的 EPERM(创建软链需要 SeCreateSymbolicLinkPrivilege,
250
+ * 默认只给管理员;开启「开发者模式」后普通用户也可以)。其它 errno 一样按降级处理 ——
251
+ * 这一步是锦上添花,不值得中断整次同步。
240
252
  */
253
+ function trySymlink(linkTarget, linkPath, logPrefix) {
254
+ try {
255
+ node_fs_1.default.symlinkSync(linkTarget, linkPath, 'dir');
256
+ return true;
257
+ }
258
+ catch (err) {
259
+ const code = err.code ?? 'UNKNOWN';
260
+ const hint = process.platform === 'win32'
261
+ ? '(Windows 需以管理员运行,或在「设置 → 隐私和安全性 → 开发者选项」开启开发者模式)'
262
+ : '';
263
+ (0, logger_2.log)(logPrefix, ` ⚠ .claude/skills 软链创建失败 [${code}],跳过${hint};skills 仍在 .agents/skills 下可用`);
264
+ return false;
265
+ }
266
+ }
241
267
  function ensureClaudeSkillsSymlink(targetDir, logPrefix) {
242
268
  const linkPath = node_path_1.default.join(targetDir, '.claude', 'skills');
243
269
  const linkTarget = node_path_1.default.join('..', '.agents', 'skills');
@@ -251,7 +277,8 @@ function ensureClaudeSkillsSymlink(targetDir, logPrefix) {
251
277
  throw err;
252
278
  }
253
279
  if (existing === null) {
254
- node_fs_1.default.symlinkSync(linkTarget, linkPath, 'dir');
280
+ if (!trySymlink(linkTarget, linkPath, logPrefix))
281
+ return 'unsupported';
255
282
  (0, logger_2.log)(logPrefix, ` ✓ .claude/skills → ${linkTarget} (symlink created)`);
256
283
  return 'created';
257
284
  }
@@ -261,7 +288,8 @@ function ensureClaudeSkillsSymlink(targetDir, logPrefix) {
261
288
  return 'noop';
262
289
  }
263
290
  node_fs_1.default.unlinkSync(linkPath);
264
- node_fs_1.default.symlinkSync(linkTarget, linkPath, 'dir');
291
+ if (!trySymlink(linkTarget, linkPath, logPrefix))
292
+ return 'unsupported';
265
293
  (0, logger_2.log)(logPrefix, ` ✓ .claude/skills → ${linkTarget} (symlink updated, was → ${current})`);
266
294
  return 'updated';
267
295
  }
@@ -63,7 +63,15 @@ function removeLineFromContent(content, pattern) {
63
63
  // 不碰权限 —— 它跑在同一次调用里、紧随 syncSandboxSkills 之后,目录已经可写;
64
64
  // 各写入方各自 chmod 会与收尾的 lockDirReadonly 形成隐式耦合,范围一旦不对称就会
65
65
  // 出「跑一次 skills sync 把整个 skills 目录解封」这种事。
66
+ //
67
+ // **平台前提**:整套只读锁语义是 POSIX mode 位的,靠 shell `chmod -R` 实现。Windows
68
+ // 没有对应概念(NTFS 用 ACL,mode 位不映射),所以那里直接跳过加解锁 —— 锁和解锁
69
+ // 成对失效,语义仍自洽:目录始终可写,只是少了「防手改」这层保护。这是有意的降级,
70
+ // 不是遗漏;不用 fs.chmodSync 模拟,因为它在 Windows 上对目录基本是 no-op,
71
+ // 只会制造「以为锁上了」的假象。
66
72
  // ─────────────────────────────────────────────────────────────────────────────
73
+ /** POSIX mode 位语义是否可用;Windows 上整套只读锁降级为 no-op */
74
+ const SUPPORTS_POSIX_MODE = process.platform !== 'win32';
67
75
  /**
68
76
  * 解锁目录使其可写(`chmod -R u+w`)。
69
77
  *
@@ -71,8 +79,12 @@ function removeLineFromContent(content, pattern) {
71
79
  * 只加 owner 写位、不动 g/o,与老链路一致。目录不存在直接返回 false(调用方
72
80
  * 通常紧接着 mkdir)。失败只 debug 不抛:解锁是尽力而为,真写不进去让后续
73
81
  * 写操作自己报错,错误信息更具体。
82
+ *
83
+ * Windows 返回 false(没上过锁,也就无需解锁)。
74
84
  */
75
85
  function unlockDirForWrite(dir) {
86
+ if (!SUPPORTS_POSIX_MODE)
87
+ return false;
76
88
  if (!node_fs_1.default.existsSync(dir))
77
89
  return false;
78
90
  try {
@@ -92,8 +104,12 @@ function unlockDirForWrite(dir) {
92
104
  * {@link unlockDirForWrite}。
93
105
  *
94
106
  * **调用时机必须是全部写入完成之后**——锁上就写不进去了。
107
+ *
108
+ * Windows 直接返回 false(不加锁,对应 unlockDirForWrite 也不解锁)。
95
109
  */
96
110
  function lockDirReadonly(dir) {
111
+ if (!SUPPORTS_POSIX_MODE)
112
+ return false;
97
113
  if (!node_fs_1.default.existsSync(dir))
98
114
  return false;
99
115
  try {
@@ -112,18 +128,22 @@ function lockDirReadonly(dir) {
112
128
  * 只读锁下;另外老 update.sh 曾以 root 跑过,可能留下异主文件(如 root-owned 的
113
129
  * `.last-update`),`rmSync{force:true}` 只忽略 ENOENT、遇 EACCES 仍抛。
114
130
  * shell `rm -rf` 对异主文件 / 怪符号链接比 rmSync 宽容,故作主档。
131
+ *
132
+ * Windows 上没有 `rm`(也没有异主/只读锁那套前提),直接走 `fs.rmSync` 这一层。
115
133
  */
116
134
  function forceRemove(target) {
117
135
  if (!node_fs_1.default.existsSync(target))
118
136
  return;
119
- unlockDirForWrite(target);
120
- try {
121
- (0, node_child_process_1.execFileSync)('rm', ['-rf', target], { stdio: ['ignore', 'ignore', 'pipe'] });
122
- if (!node_fs_1.default.existsSync(target))
123
- return;
124
- }
125
- catch (err) {
126
- (0, logger_1.debug)(`file-ops: rm -rf ${target} failed: ${err.message}`);
137
+ if (SUPPORTS_POSIX_MODE) {
138
+ unlockDirForWrite(target);
139
+ try {
140
+ (0, node_child_process_1.execFileSync)('rm', ['-rf', target], { stdio: ['ignore', 'ignore', 'pipe'] });
141
+ if (!node_fs_1.default.existsSync(target))
142
+ return;
143
+ }
144
+ catch (err) {
145
+ (0, logger_1.debug)(`file-ops: rm -rf ${target} failed: ${err.message}`);
146
+ }
127
147
  }
128
148
  node_fs_1.default.rmSync(target, { recursive: true, force: true });
129
149
  }
@@ -64,13 +64,13 @@ function createClient(opts) {
64
64
  * 默认灰度泳道。当前 miaoda CLI 接入的新接口(modern deploy 等)只在该泳道生效,
65
65
  * 缺省走这个。MIAODA_CANARY_HEADER 可显式覆盖;设为空字符串则去掉头。
66
66
  *
67
- * ⚠️ TEMP(creative-upgrade 联调用):默认泳道临时指向开发泳道 boe_debug_detail_lookup,
68
- * 使 alpha 发版进沙箱镜像后,app export / code-archive 等新接口无需 wrapper 即可命中
69
- * 尚未合流的 studio_server 改动。
70
- * 上线前必须还原为 'boe_miaoda_ccm',或改为由 agent_tool 按请求 x-tt-env 注入
71
- * MIAODA_CANARY_HEADER(详见 http.ts 的 applyCanaryHeader 与 agent_tool ExecShellCmd)。
67
+ * 联调未合流的服务端改动时,不要改这个默认值 —— MIAODA_CANARY_HEADER 覆盖,
68
+ * 或由 agent_tool 按请求 x-tt-env 注入(详见 applyCanaryHeader agent_tool
69
+ * ExecShellCmd)。改默认值意味着所有沙箱都被带去开发泳道,且历史上多次忘记还原
70
+ * (boe_miaoda_doubao ppe_miaoda_ccm boe_miaoda_ccm → boe_debug_detail_lookup
71
+ * boe_creative_history)。
72
72
  */
73
- const DEFAULT_CANARY_HEADER = 'boe_debug_detail_lookup';
73
+ const DEFAULT_CANARY_HEADER = 'prod';
74
74
  /**
75
75
  * 注入 x-tt-env 小流量头:env 显式设值 > DEFAULT_CANARY_HEADER。
76
76
  *
@@ -6,12 +6,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.pickLaneVersion = pickLaneVersion;
7
7
  exports.extractLaneFromTgzKey = extractLaneFromTgzKey;
8
8
  exports.fetchNpmPackage = fetchNpmPackage;
9
- const node_child_process_1 = require("node:child_process");
10
9
  const node_fs_1 = __importDefault(require("node:fs"));
11
10
  const node_os_1 = __importDefault(require("node:os"));
12
11
  const node_path_1 = __importDefault(require("node:path"));
12
+ const archive_1 = require("./archive");
13
13
  const error_1 = require("./error");
14
14
  const logger_1 = require("./logger");
15
+ const run_npm_1 = require("./run-npm");
15
16
  const DEFAULT_REGISTRY = 'https://registry.npmmirror.com/';
16
17
  /**
17
18
  * 从 `npm view <pkg> versions --json` 里过滤出后缀 `-alpha.<X>` 的版本。
@@ -29,7 +30,7 @@ function pickLaneVersion(packageName, X, registry) {
29
30
  const reg = registry ?? process.env.MIAODA_NPM_REGISTRY ?? DEFAULT_REGISTRY;
30
31
  const suffix = `-alpha.${X}`;
31
32
  try {
32
- const stdout = (0, node_child_process_1.execFileSync)('npm', ['view', packageName, 'versions', '--json', '--registry', reg], { encoding: 'utf-8', stdio: ['pipe', 'pipe', 'pipe'] });
33
+ const stdout = (0, run_npm_1.execNpmSyncCapture)(['view', packageName, 'versions', '--json', '--registry', reg], { stdio: ['pipe', 'pipe', 'pipe'] });
33
34
  const versions = JSON.parse(stdout);
34
35
  if (!Array.isArray(versions))
35
36
  return null;
@@ -75,7 +76,7 @@ function extractLaneFromTgzKey(tgzKey) {
75
76
  return lane;
76
77
  }
77
78
  /**
78
- * `npm pack <pkg>@<ver> --registry <r>` + `tar -xzf`,解到临时目录。
79
+ * `npm pack <pkg>@<ver> --registry <r>` + 解压(走 archive 跨平台封装),解到临时目录。
79
80
  * extractDir 是包内容根(含 package.json)。使用完必须 cleanup()。
80
81
  */
81
82
  function fetchNpmPackage(opts) {
@@ -85,7 +86,7 @@ function fetchNpmPackage(opts) {
85
86
  const tmpDir = node_fs_1.default.mkdtempSync(node_path_1.default.join(node_os_1.default.tmpdir(), 'miaoda-pack-'));
86
87
  try {
87
88
  (0, logger_1.debug)(`npm pack ${pkgSpec} --registry ${registry} → ${tmpDir}`);
88
- const stdout = (0, node_child_process_1.execFileSync)('npm', ['pack', pkgSpec, '--pack-destination', tmpDir, '--json', '--registry', registry], { encoding: 'utf-8', stdio: ['pipe', 'pipe', 'pipe'] });
89
+ const stdout = (0, run_npm_1.execNpmSyncCapture)(['pack', pkgSpec, '--pack-destination', tmpDir, '--json', '--registry', registry], { stdio: ['pipe', 'pipe', 'pipe'] });
89
90
  const packInfo = JSON.parse(stdout);
90
91
  const tgzFilename = packInfo[0]?.filename;
91
92
  const pkgVersion = packInfo[0]?.version ?? version;
@@ -95,9 +96,7 @@ function fetchNpmPackage(opts) {
95
96
  const tgzPath = node_path_1.default.join(tmpDir, tgzFilename);
96
97
  const extractDir = node_path_1.default.join(tmpDir, 'extracted');
97
98
  node_fs_1.default.mkdirSync(extractDir, { recursive: true });
98
- (0, node_child_process_1.execFileSync)('tar', ['-xzf', tgzPath, '-C', extractDir], {
99
- stdio: ['ignore', 'pipe', 'pipe'],
100
- });
99
+ (0, archive_1.extractTarGz)(tgzPath, extractDir);
101
100
  return {
102
101
  extractDir: node_path_1.default.join(extractDir, 'package'),
103
102
  version: pkgVersion,
@@ -0,0 +1,102 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.execNpmSync = execNpmSync;
7
+ exports.execNpmSyncCapture = execNpmSyncCapture;
8
+ exports.runNpmSync = runNpmSync;
9
+ exports.spawnNpm = spawnNpm;
10
+ const cross_spawn_1 = __importDefault(require("cross-spawn"));
11
+ const error_1 = require("../utils/error");
12
+ const logger_1 = require("../utils/logger");
13
+ /**
14
+ * 跨平台 npm 执行入口 —— 仓库内**所有** npm 调用必须走这里,禁止再裸写
15
+ * `execFileSync('npm', ...)` / `spawnSync('npm', ...)` / `spawn('npm', ...)`,
16
+ * 也禁止直接 import `cross-spawn` 绕过这层(两条都由 ESLint 强制)。
17
+ *
18
+ * 为什么必须封装:Windows 上 npm 不是可执行文件而是 `npm.cmd` 批处理包装。
19
+ * - `execFile` / `spawn` 不带 shell 时按可执行文件解析,命中不到 `npm` → ENOENT;
20
+ * - 自 Node 18.20.2 / 20.12.2(CVE-2024-27980)起,不带 `shell: true` 执行
21
+ * `.cmd` / `.bat` 会直接抛 EINVAL,连"碰巧能跑"都不再成立。
22
+ *
23
+ * 为什么用 `cross-spawn` 而不是自己处理:正确的做法不只是"加 shell"。cross-spawn
24
+ * 在 Windows 上先判断目标是否真可执行文件,只在需要时切到 cmd.exe,并对参数做完整的
25
+ * 元字符转义(还专门处理了 `node_modules/.bin/*.cmd` 这类 cmd-shim 需要**双重**转义
26
+ * 的情况)。这些边角自己写必定漏,而它是 5000 万周下载量级的生态基建。
27
+ *
28
+ * 这层封装自身只做三件事:钉死命令名为 `npm`、把 spawn 结果的失败语义统一成
29
+ * `AppError`、给调用点一个稳定的收口位置。
30
+ */
31
+ /** npm 子进程失败时统一抛的错误码 */
32
+ const NPM_FAILED_CODE = 'NPM_COMMAND_FAILED';
33
+ /** stderr 被 pipe 时,附进错误信息的尾部长度上限(避免把整篇 npm 日志灌进 message) */
34
+ const STDERR_TAIL_LIMIT = 800;
35
+ /**
36
+ * 取 stderr 尾部拼进错误信息。
37
+ *
38
+ * 参数刻意收窄成结构类型并显式带 `null`:node 的 `SpawnSyncReturns.stderr` 类型上是
39
+ * 非空的,但 `stdio: 'inherit' | 'ignore'` 时运行时实际为 null(输出已直出或丢弃)。
40
+ * 照类型写会漏掉这种情况,照运行时写又会被 no-unnecessary-condition 判成多余判断 ——
41
+ * 所以在这里把真实契约写清楚。
42
+ */
43
+ function stderrTail(result) {
44
+ const raw = result.stderr;
45
+ if (raw === null || raw === undefined)
46
+ return '';
47
+ const text = typeof raw === 'string' ? raw : raw.toString('utf-8');
48
+ const trimmed = text.trim();
49
+ if (trimmed === '')
50
+ return '';
51
+ const tail = trimmed.length > STDERR_TAIL_LIMIT ? trimmed.slice(-STDERR_TAIL_LIMIT) : trimmed;
52
+ return `\n${tail}`;
53
+ }
54
+ /**
55
+ * 把 spawnSync 结果里的失败翻译成 AppError。
56
+ *
57
+ * 两类失败要分开报,因为处置动作不同:
58
+ * - `error` 非空 = 进程根本没起来(npm 不在 PATH、权限问题);
59
+ * - `status !== 0` = npm 起来了但命令失败(装包失败、脚本报错),此时 stderr 才有内容。
60
+ */
61
+ function assertNpmOk(args, result) {
62
+ if (result.error) {
63
+ throw new error_1.AppError(NPM_FAILED_CODE, `npm 启动失败(npm ${args.join(' ')}):${result.error.message}`, {
64
+ next_actions: ['确认本机已安装 npm 且在 PATH 中', '可加 --verbose 查看执行详情'],
65
+ });
66
+ }
67
+ if (result.status !== 0) {
68
+ const code = result.status === null ? `signal ${String(result.signal)}` : `exit ${String(result.status)}`;
69
+ throw new error_1.AppError(NPM_FAILED_CODE, `npm ${args.join(' ')} 失败(${code})${stderrTail(result)}`, { next_actions: ['检查上方 npm 输出定位具体错误'] });
70
+ }
71
+ }
72
+ /**
73
+ * 同步跑 npm,失败抛 `NPM_COMMAND_FAILED`(对齐原先 `execFileSync('npm', args)` 的
74
+ * "失败即抛"语义)。`stdio` 等选项原样透传。
75
+ */
76
+ function execNpmSync(args, options = {}) {
77
+ (0, logger_1.debug)(`run-npm: npm ${args.join(' ')}`);
78
+ const result = cross_spawn_1.default.sync('npm', args, options);
79
+ assertNpmOk(args, result);
80
+ }
81
+ /**
82
+ * 同步跑 npm 并拿回 stdout 字符串,失败抛 `NPM_COMMAND_FAILED`。
83
+ * 用于需要解析输出的场景(如 `npm pack --json`)。
84
+ */
85
+ function execNpmSyncCapture(args, options = {}) {
86
+ (0, logger_1.debug)(`run-npm: npm ${args.join(' ')} (capture)`);
87
+ const result = cross_spawn_1.default.sync('npm', args, { ...options, encoding: 'utf-8' });
88
+ assertNpmOk(args, result);
89
+ return result.stdout;
90
+ }
91
+ /**
92
+ * 同步跑 npm,**不抛错**,返回 spawnSync 结果(对齐 `spawnSync('npm', args)` 的语义)。
93
+ * 调用方自行判 `error` / `status` —— 用于需要把失败当正常分支处理的场景。
94
+ */
95
+ function runNpmSync(args, options = {}) {
96
+ (0, logger_1.debug)(`run-npm: npm ${args.join(' ')} (no-throw)`);
97
+ return cross_spawn_1.default.sync('npm', args, options);
98
+ }
99
+ function spawnNpm(args, options = {}) {
100
+ (0, logger_1.debug)(`run-npm: npm ${args.join(' ')} (async)`);
101
+ return (0, cross_spawn_1.default)('npm', args, options);
102
+ }
@@ -43,6 +43,7 @@ const jsonc = __importStar(require("jsonc-parser"));
43
43
  const file_ops_1 = require("./file-ops");
44
44
  const merge_json_1 = require("./merge-json");
45
45
  const logger_1 = require("./logger");
46
+ const typescript_exclude_1 = require("./typescript-exclude");
46
47
  /**
47
48
  * 顺序执行 SyncRule[],逐条 apply。一条 rule 报错不影响后续 rule(catch + 记录),最终
48
49
  * 在 handler 层决定是否整体 fail。
@@ -106,6 +107,11 @@ function applyOne(rule, opts) {
106
107
  case 'patch-script': {
107
108
  return applyPatchScript(rule, targetDir, logPrefix);
108
109
  }
110
+ case 'typescript-exclude': {
111
+ const changed = (0, typescript_exclude_1.excludeTypeScriptPath)(node_path_1.default.join(targetDir, rule.to), rule.path);
112
+ (0, logger_1.log)(logPrefix, ` ${changed ? '✓' : '○'} ${rule.to} (exclude ${rule.path})`);
113
+ return { rule, action: changed ? 'patched' : 'noop', path: rule.to };
114
+ }
109
115
  case 'merge-json': {
110
116
  return applyMergeJson(rule, sourceRoot, targetDir, logPrefix);
111
117
  }
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.excludeTypeScriptPath = excludeTypeScriptPath;
7
+ const node_fs_1 = __importDefault(require("node:fs"));
8
+ const jsonc_parser_1 = require("jsonc-parser");
9
+ const error_1 = require("./error");
10
+ /** Only append to explicit template excludes; never rewrite inherited user configuration. */
11
+ function excludeTypeScriptPath(filename, excludedPath) {
12
+ if (!node_fs_1.default.existsSync(filename))
13
+ return false;
14
+ const source = node_fs_1.default.readFileSync(filename, 'utf8');
15
+ const errors = [];
16
+ const raw = (0, jsonc_parser_1.parse)(source, errors, { allowTrailingComma: true });
17
+ if (errors.length || !raw || typeof raw !== 'object')
18
+ throw new error_1.AppError('INVALID_CONFIG', `Invalid exclude array: ${filename}`);
19
+ if (raw.exclude === undefined) {
20
+ console.warn(`Cannot safely update inherited excludes in ${filename}; add ${excludedPath} to the effective TypeScript exclude configuration.`);
21
+ return false;
22
+ }
23
+ if (!Array.isArray(raw.exclude) || raw.exclude.some((p) => typeof p !== 'string'))
24
+ throw new error_1.AppError('INVALID_CONFIG', `Invalid exclude array: ${filename}`);
25
+ if (raw.exclude.includes(excludedPath))
26
+ return false;
27
+ node_fs_1.default.writeFileSync(filename, (0, jsonc_parser_1.applyEdits)(source, (0, jsonc_parser_1.modify)(source, ['exclude', raw.exclude.length], excludedPath, {
28
+ isArrayInsertion: true,
29
+ formattingOptions: {
30
+ insertSpaces: true,
31
+ tabSize: 2,
32
+ eol: source.includes('\r\n') ? '\r\n' : '\n',
33
+ },
34
+ })));
35
+ return true;
36
+ }
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.whichSync = whichSync;
7
+ const which_1 = __importDefault(require("which"));
8
+ /**
9
+ * 跨平台可执行文件查找 —— 仓库内查 PATH 的唯一入口,禁止 shell out `which`。
10
+ *
11
+ * 为什么不 shell out:`which` 在 Windows 上不存在(对应的是 `where`),而 `where`
12
+ * 的输出格式与退出码语义又跟 `which` 不同。
13
+ *
14
+ * 为什么用社区 `which` 包而不是自己遍历 PATH:Windows 要按 PATHEXT 逐个后缀试探
15
+ * (`npm` 实际是 `npm.cmd`),POSIX 要看执行位,还有 all / delimiter 这些边角。
16
+ * 这些是 npm 官方维护的 `which` 已经做完并被全生态验证过的事,自己写只会漏。
17
+ *
18
+ * 保留这层薄封装而不是让各处直接 `import which`,是为了:
19
+ * 1. 把 `null`(社区库的「没找到」)归一成仓库内统一的 `undefined` optional 语义;
20
+ * 2. 留一个收口点 —— 换实现、加缓存、加平台特例都只改这里;
21
+ * 3. 配合 ESLint no-restricted-imports,保证不会有人绕过去直接用。
22
+ */
23
+ function whichSync(name) {
24
+ if (name === '')
25
+ return undefined;
26
+ return which_1.default.sync(name, { nothrow: true }) ?? undefined;
27
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/miaoda-cli",
3
- "version": "0.1.38",
3
+ "version": "0.1.39-alpha.2875384",
4
4
  "description": "Miaoda 平台命令行工具,面向 Agent 调用",
5
5
  "type": "commonjs",
6
6
  "bin": {
@@ -29,12 +29,16 @@
29
29
  "dependencies": {
30
30
  "@lark-apaas/http-client": "^0.1.5",
31
31
  "commander": "^13.1.0",
32
+ "cross-spawn": "^7.0.6",
32
33
  "jsonc-parser": "^3.3.1",
33
34
  "ora": "^5.4.1",
34
- "picocolors": "^1.1.1"
35
+ "picocolors": "^1.1.1",
36
+ "which": "^7.0.0"
35
37
  },
36
38
  "devDependencies": {
39
+ "@types/cross-spawn": "^6.0.6",
37
40
  "@types/node": "^22.15.3",
41
+ "@types/which": "^3.0.4",
38
42
  "@typescript-eslint/eslint-plugin": "^8.58.2",
39
43
  "@typescript-eslint/parser": "^8.58.2",
40
44
  "@vitest/coverage-v8": "^4.1.4",
@@ -11,15 +11,6 @@
11
11
  "outDir": "dist/server",
12
12
  "watchAssets": true
13
13
  }
14
- ],
15
- "plugins": [
16
- {
17
- "name": "@nestjs/swagger",
18
- "options": {
19
- "introspectComments": true,
20
- "classValidatorShim": true
21
- }
22
- }
23
14
  ]
24
15
  }
25
- }
16
+ }