@lark-apaas/miaoda-cli 0.1.24-alpha.353f5fa → 0.1.24-alpha.77f133a
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/api/app/api.js +20 -0
- package/dist/api/app/index.js +2 -1
- package/dist/cli/commands/app/index.js +49 -0
- package/dist/cli/handlers/app/export.js +191 -0
- package/dist/cli/handlers/app/index.js +5 -1
- package/dist/cli/handlers/app/init.js +17 -29
- package/dist/services/app/init/index.js +1 -2
- package/dist/services/app/init/template.js +1 -8
- package/dist/utils/http.js +7 -1
- package/package.json +1 -1
package/dist/api/app/api.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getAppInfo = getAppInfo;
|
|
4
4
|
exports.updateAppMeta = updateAppMeta;
|
|
5
|
+
exports.getCodeArchive = getCodeArchive;
|
|
5
6
|
const http_1 = require("../../utils/http");
|
|
6
7
|
const devops_error_1 = require("../../utils/devops-error");
|
|
7
8
|
const DEFAULT_ERR_CODE = 'INTERNAL_DEVOPS_ERROR';
|
|
@@ -23,3 +24,22 @@ async function updateAppMeta(req) {
|
|
|
23
24
|
// 路径已带 appID,body 里也保留以匹配 BAM IDL 的 sensitive:"no" 透传约定
|
|
24
25
|
return (0, http_1.postInnerApi)(url, req, envelopeOpts('Failed to update app'));
|
|
25
26
|
}
|
|
27
|
+
/**
|
|
28
|
+
* GET /api/v1/studio/innerapi/apps/:appID/code-archive?sourceAppID=xxx — 导出源应用源码归档。
|
|
29
|
+
* 走 studio_server inner 通道(force 身份,服务侧 force→lark 换取后按 DOWNLOAD 鉴权,
|
|
30
|
+
* 鉴权对象是 sourceAppID),与 comment 域同一 inner 信封;创意应用升级链路(app export)消费。
|
|
31
|
+
*
|
|
32
|
+
* path :appID 必须是当前沙箱应用:网关 apaas_force_admin_plugin 强校验 URL appID 与沙箱
|
|
33
|
+
* AK 绑定应用一致(不一致 400 "appID in url is illegal"),跨应用导出目标因此走 query。
|
|
34
|
+
*/
|
|
35
|
+
async function getCodeArchive(params) {
|
|
36
|
+
const { appID, sourceAppID, checkpointID } = params;
|
|
37
|
+
let url = `/api/v1/studio/innerapi/apps/${encodeURIComponent(appID)}/code-archive` +
|
|
38
|
+
`?sourceAppID=${encodeURIComponent(sourceAppID)}`;
|
|
39
|
+
if (checkpointID !== undefined && checkpointID > 0) {
|
|
40
|
+
url += `&checkPointID=${String(checkpointID)}`;
|
|
41
|
+
}
|
|
42
|
+
return (0, http_1.getInnerApi)(url, {
|
|
43
|
+
errPrefix: 'Failed to export code archive',
|
|
44
|
+
});
|
|
45
|
+
}
|
package/dist/api/app/index.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ArchType = exports.Source = exports.BizType = exports.AppType = exports.AppMode = exports.AppStatus = exports.appMetaSchema = exports.updateAppMeta = exports.getAppInfo = void 0;
|
|
3
|
+
exports.ArchType = exports.Source = exports.BizType = exports.AppType = exports.AppMode = exports.AppStatus = exports.appMetaSchema = exports.getCodeArchive = exports.updateAppMeta = exports.getAppInfo = void 0;
|
|
4
4
|
var api_1 = require("./api");
|
|
5
5
|
Object.defineProperty(exports, "getAppInfo", { enumerable: true, get: function () { return api_1.getAppInfo; } });
|
|
6
6
|
Object.defineProperty(exports, "updateAppMeta", { enumerable: true, get: function () { return api_1.updateAppMeta; } });
|
|
7
|
+
Object.defineProperty(exports, "getCodeArchive", { enumerable: true, get: function () { return api_1.getCodeArchive; } });
|
|
7
8
|
var schemas_1 = require("./schemas");
|
|
8
9
|
Object.defineProperty(exports, "appMetaSchema", { enumerable: true, get: function () { return schemas_1.appMetaSchema; } });
|
|
9
10
|
var types_1 = require("./types");
|
|
@@ -21,6 +21,7 @@ function registerAppCommands(program, opts = {}) {
|
|
|
21
21
|
`);
|
|
22
22
|
registerAppGet(appCmd);
|
|
23
23
|
registerAppUpdate(appCmd);
|
|
24
|
+
registerAppExport(appCmd);
|
|
24
25
|
if (opts.includeInit) {
|
|
25
26
|
registerAppInit(appCmd);
|
|
26
27
|
registerAppSync(appCmd);
|
|
@@ -119,6 +120,54 @@ JSON 输出
|
|
|
119
120
|
});
|
|
120
121
|
}));
|
|
121
122
|
}
|
|
123
|
+
function registerAppExport(parent) {
|
|
124
|
+
const cmd = parent
|
|
125
|
+
.command('export <app-id>')
|
|
126
|
+
.description('导出指定应用的源码到本工程(创意应用升级:拉取创意稿作只读参考物)')
|
|
127
|
+
.option('--out <dir>', '输出目录(相对当前目录)', 'source_package/creative')
|
|
128
|
+
.option('--checkpoint <n>', '按检查点版本导出;缺省为最新提交(HEAD)')
|
|
129
|
+
.addHelpText('after', `
|
|
130
|
+
说明
|
|
131
|
+
从服务端导出 <app-id> 对应应用(源应用,可以不是当前应用)的源码归档并解压到 --out
|
|
132
|
+
目录,导出完成后写 --out/.upgrade-manifest.json(含 sourceAppId / 导出时间 / 文件数),
|
|
133
|
+
供升级链路幂等判定与 skill 发现使用。调用者须为源应用协作者(服务端 DOWNLOAD 鉴权)。
|
|
134
|
+
请求以当前应用(MIAODA_APP_ID)为路径主体、源应用走 sourceAppID 参数。
|
|
135
|
+
|
|
136
|
+
幂等
|
|
137
|
+
--out 已存在 manifest 且 sourceAppId 一致时跳过导出(skipped=true),重复调用安全。
|
|
138
|
+
|
|
139
|
+
JSON 输出
|
|
140
|
+
{"data": {"appId": "...", "out": "source_package/creative", "fileCount": <n>,
|
|
141
|
+
"archiveName": "...", "skipped": false}}
|
|
142
|
+
跳过时:{"data": {"appId": "...", "out": "...", "skipped": true, "reason": "already_exported"}}
|
|
143
|
+
|
|
144
|
+
失败
|
|
145
|
+
源应用无可导出内容(从未提交过代码)→ EXPORT_EMPTY_ARCHIVE,请先在源应用完成一轮创作。
|
|
146
|
+
无权限(非源应用协作者)→ 服务端鉴权错误透传。
|
|
147
|
+
|
|
148
|
+
示例
|
|
149
|
+
$ miaoda app export app_demo_source
|
|
150
|
+
$ miaoda app export app_demo_source --out source_package/creative
|
|
151
|
+
$ miaoda app export app_demo_source --checkpoint 3
|
|
152
|
+
`);
|
|
153
|
+
cmd.action((0, shared_1.withHelp)(cmd, async (appId, rawOpts) => {
|
|
154
|
+
const checkpointRaw = rawOpts.checkpoint;
|
|
155
|
+
let checkpoint;
|
|
156
|
+
if (checkpointRaw !== undefined) {
|
|
157
|
+
checkpoint = Number(checkpointRaw);
|
|
158
|
+
if (!Number.isInteger(checkpoint) || checkpoint <= 0) {
|
|
159
|
+
(0, shared_1.failArgs)(`--checkpoint 须为正整数:${checkpointRaw}`);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
await (0, index_1.handleAppExport)({
|
|
163
|
+
appId,
|
|
164
|
+
// path :appID 必须是当前沙箱应用(网关 AK 校验),从 MIAODA_APP_ID/app_id 解析
|
|
165
|
+
currentAppId: (0, shared_1.resolveAppId)({}),
|
|
166
|
+
out: rawOpts.out,
|
|
167
|
+
checkpoint,
|
|
168
|
+
});
|
|
169
|
+
}));
|
|
170
|
+
}
|
|
122
171
|
function registerAppGet(parent) {
|
|
123
172
|
const cmd = parent
|
|
124
173
|
.command('get')
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
36
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.UPGRADE_MANIFEST_FILENAME = exports.DEFAULT_EXPORT_OUT = void 0;
|
|
40
|
+
exports.handleAppExport = handleAppExport;
|
|
41
|
+
const node_child_process_1 = require("node:child_process");
|
|
42
|
+
const node_fs_1 = __importDefault(require("node:fs"));
|
|
43
|
+
const node_os_1 = __importDefault(require("node:os"));
|
|
44
|
+
const node_path_1 = __importDefault(require("node:path"));
|
|
45
|
+
const api = __importStar(require("../../../api/index"));
|
|
46
|
+
const error_1 = require("../../../utils/error");
|
|
47
|
+
const output_1 = require("../../../utils/output");
|
|
48
|
+
const logger_1 = require("../../../utils/logger");
|
|
49
|
+
/** 导出目录默认值:创意升级链路的参考物约定位置。 */
|
|
50
|
+
exports.DEFAULT_EXPORT_OUT = 'source_package/creative';
|
|
51
|
+
/** 升级 manifest 文件名:前置钩子幂等标记 / skill workspace-contains 锚点 / skill 第 0 步信息源。 */
|
|
52
|
+
exports.UPGRADE_MANIFEST_FILENAME = '.upgrade-manifest.json';
|
|
53
|
+
/** 解码后归档大小上限(对齐服务端 UploadHtmlArtifact 的 50MB 口径)。 */
|
|
54
|
+
const MAX_ARCHIVE_BYTES = 50 * 1024 * 1024;
|
|
55
|
+
/** 校验相对输出路径:禁绝对路径、禁含 ".." 段(与 deploy patch 的 normalizeRel 同口径)。 */
|
|
56
|
+
function normalizeOutDir(rel) {
|
|
57
|
+
if (node_path_1.default.isAbsolute(rel) || rel.startsWith('/')) {
|
|
58
|
+
throw new error_1.AppError('ARGS_INVALID', `输出目录不能是绝对路径:${rel}`);
|
|
59
|
+
}
|
|
60
|
+
const posix = rel.split(node_path_1.default.sep).join('/').replace(/^\.\//, '');
|
|
61
|
+
if (posix.split('/').includes('..')) {
|
|
62
|
+
throw new error_1.AppError('ARGS_INVALID', `输出目录不能包含 "..":${rel}`);
|
|
63
|
+
}
|
|
64
|
+
return posix;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* 按魔数识别归档格式并解压到 destDir。
|
|
68
|
+
* 服务端 GetCodeArchive 的归档名以 .zip 结尾,但底层 git archive 格式由 devops_platform
|
|
69
|
+
* 决定,历史文档亦有 tar.gz 记载 —— 两种都兼容,识别不了才报错。
|
|
70
|
+
*/
|
|
71
|
+
function extractArchive(archivePath, destDir, head) {
|
|
72
|
+
const isZip = head.length >= 4 && head[0] === 0x50 && head[1] === 0x4b;
|
|
73
|
+
const isGzip = head.length >= 2 && head[0] === 0x1f && head[1] === 0x8b;
|
|
74
|
+
if (isZip) {
|
|
75
|
+
(0, node_child_process_1.execFileSync)('unzip', ['-q', '-o', archivePath, '-d', destDir], { stdio: 'pipe' });
|
|
76
|
+
return;
|
|
77
|
+
}
|
|
78
|
+
if (isGzip) {
|
|
79
|
+
(0, node_child_process_1.execFileSync)('tar', ['-xzf', archivePath, '-C', destDir], { stdio: 'pipe' });
|
|
80
|
+
return;
|
|
81
|
+
}
|
|
82
|
+
throw new error_1.AppError('EXPORT_ARCHIVE_INVALID', '无法识别归档格式(非 zip / tar.gz)', {
|
|
83
|
+
next_actions: ['稍后重试 miaoda app export;持续失败请携带 log_id 反馈平台'],
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
function countFiles(dir) {
|
|
87
|
+
let count = 0;
|
|
88
|
+
const walk = (cur) => {
|
|
89
|
+
for (const entry of node_fs_1.default.readdirSync(cur, { withFileTypes: true })) {
|
|
90
|
+
if (entry.isDirectory())
|
|
91
|
+
walk(node_path_1.default.join(cur, entry.name));
|
|
92
|
+
else
|
|
93
|
+
count += 1;
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
walk(dir);
|
|
97
|
+
return count;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* miaoda app export <app-id> [--out <dir>] [--checkpoint <n>]
|
|
101
|
+
*
|
|
102
|
+
* 创意应用升级链路:把源应用(创意稿)的源码从服务端导出到本工程,作为只读参考物。
|
|
103
|
+
* 链路:studio_server InnerGetCodeArchive(inner 通道,force 身份鉴权:调用者须为源应用
|
|
104
|
+
* 协作者)→ git archive → 本地解压 → 末尾写 .upgrade-manifest.json(幂等标记 +
|
|
105
|
+
* skill workspace-contains 锚点 + skill 第 0 步信息源)。
|
|
106
|
+
*
|
|
107
|
+
* URL 形状:path :appID 是当前沙箱应用(网关强校验其与沙箱 AK 一致),源应用走 query
|
|
108
|
+
* sourceAppID —— 跨应用(升级常态:新应用沙箱里导出源创意应用)必须如此。
|
|
109
|
+
*
|
|
110
|
+
* 幂等:--out 已存在 manifest 且 sourceAppId 一致时跳过导出直接返回(重试/多轮不重复拉取)。
|
|
111
|
+
*/
|
|
112
|
+
async function handleAppExport(opts) {
|
|
113
|
+
const appId = (opts.appId || '').trim();
|
|
114
|
+
if (!appId) {
|
|
115
|
+
throw new error_1.AppError('ARGS_INVALID', 'app-id 不能为空');
|
|
116
|
+
}
|
|
117
|
+
// 当前沙箱应用:网关 AK 校验要求 path :appID 与沙箱绑定应用一致
|
|
118
|
+
const currentAppId = (opts.currentAppId || '').trim();
|
|
119
|
+
if (!currentAppId) {
|
|
120
|
+
throw new error_1.AppError('APP_ID_MISSING', '未指定当前应用', {
|
|
121
|
+
next_actions: ['设置 export MIAODA_APP_ID=<id>'],
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
const outRel = normalizeOutDir(opts.out ?? exports.DEFAULT_EXPORT_OUT);
|
|
125
|
+
const outDir = node_path_1.default.resolve(process.cwd(), outRel);
|
|
126
|
+
const manifestPath = node_path_1.default.join(outDir, exports.UPGRADE_MANIFEST_FILENAME);
|
|
127
|
+
// 幂等:同源应用已导出过则直接复用(前置钩子重试 / 多轮对话不重复拉取)
|
|
128
|
+
if (node_fs_1.default.existsSync(manifestPath)) {
|
|
129
|
+
try {
|
|
130
|
+
const prev = JSON.parse(node_fs_1.default.readFileSync(manifestPath, 'utf-8'));
|
|
131
|
+
if (prev.sourceAppId === appId) {
|
|
132
|
+
(0, logger_1.log)('export', `Already exported (manifest matched), skip: ${outRel}`);
|
|
133
|
+
(0, output_1.emit)({ data: { appId, out: outRel, skipped: true, reason: 'already_exported' } });
|
|
134
|
+
return;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
catch {
|
|
138
|
+
// manifest 损坏视为未导出,走覆盖导出
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
(0, logger_1.log)('export', `Fetching code archive of ${appId}...`);
|
|
142
|
+
const resp = await api.app.getCodeArchive({
|
|
143
|
+
appID: currentAppId,
|
|
144
|
+
sourceAppID: appId,
|
|
145
|
+
checkpointID: opts.checkpoint,
|
|
146
|
+
});
|
|
147
|
+
const fileBase64 = resp.file ?? '';
|
|
148
|
+
if (!fileBase64) {
|
|
149
|
+
throw new error_1.AppError('EXPORT_EMPTY_ARCHIVE', '源应用没有可导出的内容(可能从未提交过代码)', {
|
|
150
|
+
next_actions: ['请先在源应用完成一轮创作(至少一次成功提交)后重试 miaoda app export'],
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
const archive = Buffer.from(fileBase64, 'base64');
|
|
154
|
+
if (archive.length === 0) {
|
|
155
|
+
throw new error_1.AppError('EXPORT_EMPTY_ARCHIVE', '归档内容为空,请稍后重试');
|
|
156
|
+
}
|
|
157
|
+
if (archive.length > MAX_ARCHIVE_BYTES) {
|
|
158
|
+
throw new error_1.AppError('EXPORT_ARCHIVE_TOO_LARGE', `归档超过大小上限(${String(archive.length)} > ${String(MAX_ARCHIVE_BYTES)} bytes)`);
|
|
159
|
+
}
|
|
160
|
+
// 归档先落临时文件再解压;解压成功前不动已存在的 outDir 内容之外的文件
|
|
161
|
+
const tmpDir = node_fs_1.default.mkdtempSync(node_path_1.default.join(node_os_1.default.tmpdir(), 'miaoda-export-'));
|
|
162
|
+
const archivePath = node_path_1.default.join(tmpDir, resp.name ?? `${appId}.zip`);
|
|
163
|
+
try {
|
|
164
|
+
node_fs_1.default.writeFileSync(archivePath, archive);
|
|
165
|
+
node_fs_1.default.mkdirSync(outDir, { recursive: true });
|
|
166
|
+
(0, logger_1.log)('export', `Extracting to ${outRel}...`);
|
|
167
|
+
extractArchive(archivePath, outDir, archive.subarray(0, 4));
|
|
168
|
+
}
|
|
169
|
+
finally {
|
|
170
|
+
node_fs_1.default.rmSync(tmpDir, { recursive: true, force: true });
|
|
171
|
+
}
|
|
172
|
+
// 防御清理:git archive 语义不含 .git,防通道实现变化带出嵌套仓(git 会记 gitlink,
|
|
173
|
+
// 参考稿进不了提交);源仓 .gitignore 会成为新仓子树的嵌套忽略规则,极端 case(源仓
|
|
174
|
+
// force-add 过被自身 ignore 的文件)会让参考稿部分文件被 git add 静默忽略。
|
|
175
|
+
// 两者对 UX 对照均无价值,解压后移除,保证"进 git 的参考稿 = 导出的全部内容文件"。
|
|
176
|
+
node_fs_1.default.rmSync(node_path_1.default.join(outDir, '.git'), { recursive: true, force: true });
|
|
177
|
+
node_fs_1.default.rmSync(node_path_1.default.join(outDir, '.gitignore'), { force: true });
|
|
178
|
+
const fileCount = countFiles(outDir);
|
|
179
|
+
const manifest = {
|
|
180
|
+
sourceAppId: appId,
|
|
181
|
+
archiveName: resp.name ?? '',
|
|
182
|
+
checkpointId: opts.checkpoint ?? 0,
|
|
183
|
+
exportedAt: new Date().toISOString(),
|
|
184
|
+
fileCount,
|
|
185
|
+
};
|
|
186
|
+
node_fs_1.default.writeFileSync(manifestPath, JSON.stringify(manifest, null, 2) + '\n', 'utf-8');
|
|
187
|
+
(0, logger_1.log)('export', 'Exported successfully');
|
|
188
|
+
(0, output_1.emit)({
|
|
189
|
+
data: { appId, out: outRel, fileCount, archiveName: manifest.archiveName, skipped: false },
|
|
190
|
+
});
|
|
191
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SUPPORTED_STACKS = exports.handleAppMigrate = exports.handleAppUpgrade = exports.handleAppSync = exports.handleAppInit = exports.handleAppUpdate = exports.handleAppGet = void 0;
|
|
3
|
+
exports.SUPPORTED_STACKS = exports.handleAppMigrate = exports.UPGRADE_MANIFEST_FILENAME = exports.DEFAULT_EXPORT_OUT = exports.handleAppExport = exports.handleAppUpgrade = exports.handleAppSync = exports.handleAppInit = exports.handleAppUpdate = exports.handleAppGet = void 0;
|
|
4
4
|
var get_1 = require("./get");
|
|
5
5
|
Object.defineProperty(exports, "handleAppGet", { enumerable: true, get: function () { return get_1.handleAppGet; } });
|
|
6
6
|
var update_1 = require("./update");
|
|
@@ -10,6 +10,10 @@ Object.defineProperty(exports, "handleAppInit", { enumerable: true, get: functio
|
|
|
10
10
|
var sync_1 = require("./sync");
|
|
11
11
|
Object.defineProperty(exports, "handleAppSync", { enumerable: true, get: function () { return sync_1.handleAppSync; } });
|
|
12
12
|
Object.defineProperty(exports, "handleAppUpgrade", { enumerable: true, get: function () { return sync_1.handleAppUpgrade; } });
|
|
13
|
+
var export_1 = require("./export");
|
|
14
|
+
Object.defineProperty(exports, "handleAppExport", { enumerable: true, get: function () { return export_1.handleAppExport; } });
|
|
15
|
+
Object.defineProperty(exports, "DEFAULT_EXPORT_OUT", { enumerable: true, get: function () { return export_1.DEFAULT_EXPORT_OUT; } });
|
|
16
|
+
Object.defineProperty(exports, "UPGRADE_MANIFEST_FILENAME", { enumerable: true, get: function () { return export_1.UPGRADE_MANIFEST_FILENAME; } });
|
|
13
17
|
var migrate_1 = require("./migrate");
|
|
14
18
|
Object.defineProperty(exports, "handleAppMigrate", { enumerable: true, get: function () { return migrate_1.handleAppMigrate; } });
|
|
15
19
|
// commands 层渲染 help 时需要这份枚举;从 handler barrel 转发,避免 commands → services 越界
|
|
@@ -60,16 +60,11 @@ async function handleAppInit(opts) {
|
|
|
60
60
|
const tplResult = (0, index_1.renderTemplate)({ stack, version, targetDir, projectName });
|
|
61
61
|
// source_path 导入:当前仅 app_type=modern_html 生效。渲染完模板后、装依赖前叠加进 src/。
|
|
62
62
|
const sourceImport = applySourcePathImport(opts, targetDir);
|
|
63
|
-
// 本地脚手架门禁:沙箱内所有栈照旧同步(nested,产出 .agent/);本地只有 LOCAL_STEERING_STACKS
|
|
64
|
-
// 白名单栈(nestjs-react-fullstack / vite-react)才落地 steering(.claude/.agents)与 logs/。
|
|
65
|
-
// html / design-html 是纯静态 / 设计产物,本地不需要这套 agent skills 脚手架,整段跳过。
|
|
66
|
-
const sandbox = (0, env_1.isSandboxEnv)();
|
|
67
|
-
const scaffoldSteering = sandbox || index_1.LOCAL_STEERING_STACKS.has(stack);
|
|
68
63
|
// 先建 logs/,防止 user 跑 dev 之前 AI/工具 redirect 到 logs/*.log 因为父目录不存在直接挂
|
|
69
64
|
// (dev.js / dev-local.js 自己也建 logs/,但只在它启动后;启动前的 shell redirect 会先于此)。
|
|
70
|
-
//
|
|
71
|
-
//
|
|
72
|
-
if (!
|
|
65
|
+
// 仅本地开发需要:沙箱环境由平台 supervisor 拉起 dev,无 init 前的 shell redirect 场景,
|
|
66
|
+
// 不预建 logs/ 以免在沙箱工作区留空目录。
|
|
67
|
+
if (!(0, env_1.isSandboxEnv)()) {
|
|
73
68
|
(0, logs_dir_1.ensureLogsDir)(targetDir);
|
|
74
69
|
}
|
|
75
70
|
// skills 同步软失败:拉不到 coding-steering 包不该阻断 writeSparkMeta /
|
|
@@ -79,28 +74,21 @@ async function handleAppInit(opts) {
|
|
|
79
74
|
// 跟沙箱端 update-skills.sh 链路对齐
|
|
80
75
|
// - 本地 → flat (.agents/skills + .claude/skills 软链),
|
|
81
76
|
// Agent / Claude Code 用同一份;nrf 在本地是主战场,vite-react 等也一样适用
|
|
82
|
-
const outputLayout =
|
|
83
|
-
|
|
84
|
-
// 与"拉不到 coding-steering 包"软失败路径共用同一份占位,emit / meta 落盘不受影响。
|
|
85
|
-
let steeringResult = {
|
|
86
|
-
version: 'unknown',
|
|
87
|
-
syncedSkills: [],
|
|
88
|
-
techSynced: false,
|
|
89
|
-
};
|
|
77
|
+
const outputLayout = (0, env_1.isSandboxEnv)() ? 'nested' : 'flat';
|
|
78
|
+
let steeringResult;
|
|
90
79
|
let steeringError;
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
}
|
|
80
|
+
try {
|
|
81
|
+
steeringResult = (0, coding_steering_1.syncCodingSteering)({
|
|
82
|
+
stack,
|
|
83
|
+
targetDir,
|
|
84
|
+
logPrefix: 'init',
|
|
85
|
+
outputLayout,
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
catch (err) {
|
|
89
|
+
steeringError = err instanceof Error ? err.message : String(err);
|
|
90
|
+
(0, logger_1.log)('init', `⚠ skills sync failed (continuing init): ${steeringError}`);
|
|
91
|
+
steeringResult = { version: 'unknown', syncedSkills: [], techSynced: false };
|
|
104
92
|
}
|
|
105
93
|
// 依赖安装:async 模式留到 meta 落盘后派发后台进程(不等装完),同步模式当场装。
|
|
106
94
|
// 同步:装模板钉死的依赖。不带 <pkg>@latest 位置参数,因此 npm 不会改写 package.json/lockfile
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ASYNC_INSTALL_LOG = exports.runAsyncInstallWorker = exports.dispatchAsyncInstall = exports.resolveNpmInstallRegistry = exports.installDependencies = exports.writeSparkMeta = exports.readSparkMeta = exports.IMPORT_SKIP_FILES = exports.IMPORT_SKIP_DIRS = exports.importSourceSrc = exports.TEMPLATE_PACKAGE_BY_STACK = exports.STACK_BY_APP_TYPE = exports.APP_TYPES = exports.
|
|
3
|
+
exports.ASYNC_INSTALL_LOG = exports.runAsyncInstallWorker = exports.dispatchAsyncInstall = exports.resolveNpmInstallRegistry = exports.installDependencies = exports.writeSparkMeta = exports.readSparkMeta = exports.IMPORT_SKIP_FILES = exports.IMPORT_SKIP_DIRS = exports.importSourceSrc = exports.TEMPLATE_PACKAGE_BY_STACK = exports.STACK_BY_APP_TYPE = exports.APP_TYPES = exports.SUPPORTED_STACKS = exports.resolveStack = exports.renderTemplate = void 0;
|
|
4
4
|
var template_1 = require("./template");
|
|
5
5
|
Object.defineProperty(exports, "renderTemplate", { enumerable: true, get: function () { return template_1.renderTemplate; } });
|
|
6
6
|
Object.defineProperty(exports, "resolveStack", { enumerable: true, get: function () { return template_1.resolveStack; } });
|
|
7
7
|
Object.defineProperty(exports, "SUPPORTED_STACKS", { enumerable: true, get: function () { return template_1.SUPPORTED_STACKS; } });
|
|
8
|
-
Object.defineProperty(exports, "LOCAL_STEERING_STACKS", { enumerable: true, get: function () { return template_1.LOCAL_STEERING_STACKS; } });
|
|
9
8
|
Object.defineProperty(exports, "APP_TYPES", { enumerable: true, get: function () { return template_1.APP_TYPES; } });
|
|
10
9
|
Object.defineProperty(exports, "STACK_BY_APP_TYPE", { enumerable: true, get: function () { return template_1.STACK_BY_APP_TYPE; } });
|
|
11
10
|
Object.defineProperty(exports, "TEMPLATE_PACKAGE_BY_STACK", { enumerable: true, get: function () { return template_1.TEMPLATE_PACKAGE_BY_STACK; } });
|
|
@@ -3,7 +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.APP_TYPES = exports.STACK_BY_APP_TYPE = exports.
|
|
6
|
+
exports.APP_TYPES = exports.STACK_BY_APP_TYPE = exports.SUPPORTED_STACKS = exports.TEMPLATE_PINNED_VERSION_BY_STACK = exports.TEMPLATE_PACKAGE_BY_STACK = void 0;
|
|
7
7
|
exports.resolveStack = resolveStack;
|
|
8
8
|
exports.renderTemplate = renderTemplate;
|
|
9
9
|
const node_fs_1 = __importDefault(require("node:fs"));
|
|
@@ -27,13 +27,6 @@ exports.TEMPLATE_PACKAGE_BY_STACK = {
|
|
|
27
27
|
*/
|
|
28
28
|
exports.TEMPLATE_PINNED_VERSION_BY_STACK = {};
|
|
29
29
|
exports.SUPPORTED_STACKS = Object.keys(exports.TEMPLATE_PACKAGE_BY_STACK);
|
|
30
|
-
/**
|
|
31
|
-
* 本地开发(非沙箱)需要落地 agent skills 脚手架(.claude/.agents)与 logs/ 的 stack 白名单。
|
|
32
|
-
* 只有这些全栈 / 前端框架栈在本地才需要 coding-steering 的 skills;html / design-html 是纯
|
|
33
|
-
* 静态 / 设计产物,本地无需这套脚手架,init 直接跳过 syncCodingSteering 与 logs 创建。
|
|
34
|
-
* 沙箱环境不受此白名单约束(所有栈照旧走 nested 同步,产出 .agent/)。
|
|
35
|
-
*/
|
|
36
|
-
exports.LOCAL_STEERING_STACKS = new Set(['nestjs-react-fullstack', 'vite-react']);
|
|
37
30
|
/**
|
|
38
31
|
* app_type(业务类型)→ stack 短名映射。仅在调用方未显式传 --template 时用于解析 stack。
|
|
39
32
|
* 与 src/api/app/types.ts 的 AppType 枚举无关,是独立的业务类型概念。
|
package/dist/utils/http.js
CHANGED
|
@@ -63,8 +63,14 @@ function createClient(opts) {
|
|
|
63
63
|
/**
|
|
64
64
|
* 默认灰度泳道。当前 miaoda CLI 接入的新接口(modern deploy 等)只在该泳道生效,
|
|
65
65
|
* 缺省走这个。MIAODA_CANARY_HEADER 可显式覆盖;设为空字符串则去掉头。
|
|
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)。
|
|
66
72
|
*/
|
|
67
|
-
const DEFAULT_CANARY_HEADER = '
|
|
73
|
+
const DEFAULT_CANARY_HEADER = 'boe_debug_detail_lookup';
|
|
68
74
|
/**
|
|
69
75
|
* 注入 x-tt-env 小流量头:env 显式设值 > DEFAULT_CANARY_HEADER。
|
|
70
76
|
*
|