@microi.net/cli 5.3.1 → 5.3.2

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.
@@ -5,13 +5,13 @@
5
5
  "url": "https://microi.net"
6
6
  },
7
7
  "description": "Microi吾码官方 AI 插件市场",
8
- "version": "5.3.1",
8
+ "version": "5.3.2",
9
9
  "plugins": [
10
10
  {
11
11
  "name": "microi",
12
12
  "source": ".",
13
13
  "description": "Microi吾码 AI 开发插件:服务器连接、Skills、MCP、V8 全量同步与低代码交付",
14
- "version": "5.3.1",
14
+ "version": "5.3.2",
15
15
  "strict": true
16
16
  }
17
17
  ]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microi",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
4
4
  "description": "Microi吾码 AI 开发插件:服务器连接、Skills、MCP、V8 全量同步与低代码交付",
5
5
  "author": {
6
6
  "name": "Microi.Net",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microi",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
4
4
  "description": "Microi吾码低代码平台的 Codex 开发插件,共享 VS Code/CLI 的连接、同步、MCP、V8 与交付能力。",
5
5
  "author": {
6
6
  "name": "Microi.Net",
@@ -5,13 +5,13 @@
5
5
  "url": "https://microi.net"
6
6
  },
7
7
  "description": "Microi吾码官方 AI 插件市场",
8
- "version": "5.3.1",
8
+ "version": "5.3.2",
9
9
  "plugins": [
10
10
  {
11
11
  "name": "microi",
12
12
  "source": ".",
13
13
  "description": "Microi吾码 AI 开发插件:服务器连接、Skills、MCP、V8 全量同步与低代码交付",
14
- "version": "5.3.1",
14
+ "version": "5.3.2",
15
15
  "strict": true
16
16
  }
17
17
  ]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microi",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
4
4
  "description": "Microi吾码 AI 开发插件:服务器连接、Skills、MCP、V8 全量同步与低代码交付",
5
5
  "author": {
6
6
  "name": "Microi.Net",
@@ -1,6 +1,6 @@
1
1
  {
2
- "builtAt": "2026-08-25T16:02:29.739Z",
3
- "version": "5.3.1",
2
+ "builtAt": "2026-08-25T19:42:06.407Z",
3
+ "version": "5.3.2",
4
4
  "sourceProducts": [
5
5
  "vscode-extension",
6
6
  "microi-cli",
@@ -13,6 +13,6 @@
13
13
  "cli": "19fa79f0727616fbaaa9cdffc2485dc58aede013931d3d5662baa36cdbf5eb07",
14
14
  "router": "ffc14787fc2d3d6173b7a779b77139b759eb1d482cea787f71283f4017a4e223",
15
15
  "broker": "caae2730cc411d11c20f33b367968f7538aae8f5b65a713fcc557deedaefcf70",
16
- "dshBundle": "52be7f2c184779d6450f8411bb1d8f3ff7c0fd96cb421eb98c826a2b813f4c85"
16
+ "dshBundle": "ad91a1a8d2bbf0406b08b9d3808b07db49bea6cb0e4a0f3b38518c534963eb6e"
17
17
  }
18
18
  }
package/cordis.patch.yml CHANGED
@@ -7,7 +7,7 @@
7
7
  serverName: microi
8
8
  transport: stdio
9
9
  command: !!js process.execPath
10
- args: ["-e","/*\n * DeepSeek Harness 通过 profile bundle 加载此 `node -e` 引导脚本。\n * DSH 不保证 MCP 子进程 cwd 位于 npm 包根,因此按 DSH_HOME/profile 定位\n * 当前版本的 @microi.net/cli,再复用 Codex 同源适配器与多连接路由器。\n */\nconst fs = require('node:fs');\nconst os = require('node:os');\nconst path = require('node:path');\nconst packageName = '@microi.net/cli';\nconst expectedVersion = '5.3.1';\n\nfunction readJson(filePath) {\n try { return JSON.parse(fs.readFileSync(filePath, 'utf8')); }\n catch { return undefined; }\n}\n\nfunction expandHome(value) {\n if (value === '~') return os.homedir();\n if (value.startsWith('~/') || value.startsWith('~\\\\')) return path.join(os.homedir(), value.slice(2));\n return value;\n}\n\nfunction validRoot(value) {\n const root = path.resolve(value);\n const pkg = readJson(path.join(root, 'package.json'));\n const patch = path.join(root, 'cordis.patch.yml');\n const adapter = path.join(root, 'scripts', 'mcp-codex-stdio-adapter.js');\n const router = path.join(root, 'scripts', 'microi-codex-router.js');\n if (pkg?.name !== packageName || pkg?.version !== expectedVersion) return undefined;\n if (pkg?.dsh?.bundle?.patch !== './cordis.patch.yml') return undefined;\n if (![patch, adapter, router].every(filePath => fs.existsSync(filePath))) return undefined;\n return { root: fs.realpathSync(root), adapter, router, modifiedAt: fs.statSync(router).mtimeMs };\n}\n\nfunction findPlugin() {\n const explicit = String(process.env.MICROI_DSH_PLUGIN_ROOT || '').trim();\n if (explicit) {\n const plugin = validRoot(explicit);\n if (!plugin) throw new Error(`MICROI_DSH_PLUGIN_ROOT 不是版本 ${expectedVersion} 的有效 Microi DSH bundle:${explicit}`);\n return plugin;\n }\n const configuredHome = String(process.env.DSH_HOME || '').trim();\n const dshHome = path.resolve(expandHome(configuredHome || path.join(os.homedir(), '.dsh')));\n const profilesRoot = path.join(dshHome, 'profiles');\n const candidates = [];\n if (fs.existsSync(profilesRoot)) {\n for (const entry of fs.readdirSync(profilesRoot, { withFileTypes: true })) {\n if (!entry.isDirectory() || entry.name === 'node_modules') continue;\n const root = path.join(profilesRoot, entry.name, 'node_modules', '@microi.net', 'cli');\n const plugin = validRoot(root);\n if (plugin) candidates.push(plugin);\n }\n }\n candidates.sort((left, right) => right.modifiedAt - left.modifiedAt);\n if (!candidates[0]) throw new Error(`未在 ${profilesRoot} 找到版本 ${expectedVersion} 的 ${packageName}`);\n return candidates[0];\n}\n\ntry {\n const plugin = findPlugin();\n process.env.MICROI_DSH_PLUGIN_ROOT = plugin.root;\n process.env.MICROI_CODEX_PLUGIN_ROOT = plugin.root;\n process.env.MICROI_TOOL_SOURCE = 'dsh';\n process.env.MICROI_TOOL_VERSION = expectedVersion;\n process.env.MICROI_WORKSPACE_ROOT = process.env.MICROI_WORKSPACE_ROOT || process.cwd();\n process.argv[2] = plugin.router;\n require(plugin.adapter);\n} catch (error) {\n console.error(`[microi-dsh-bootstrap] ${error instanceof Error ? error.message : String(error)}`);\n process.exit(1);\n}\n"]
10
+ args: ["-e","/*\n * DeepSeek Harness 通过 profile bundle 加载此 `node -e` 引导脚本。\n * DSH 不保证 MCP 子进程 cwd 位于 npm 包根,因此按 DSH_HOME/profile 定位\n * 当前版本的 @microi.net/cli,再复用 Codex 同源适配器与多连接路由器。\n */\nconst fs = require('node:fs');\nconst os = require('node:os');\nconst path = require('node:path');\nconst packageName = '@microi.net/cli';\nconst expectedVersion = '5.3.2';\n\nfunction readJson(filePath) {\n try { return JSON.parse(fs.readFileSync(filePath, 'utf8')); }\n catch { return undefined; }\n}\n\nfunction expandHome(value) {\n if (value === '~') return os.homedir();\n if (value.startsWith('~/') || value.startsWith('~\\\\')) return path.join(os.homedir(), value.slice(2));\n return value;\n}\n\nfunction validRoot(value) {\n const root = path.resolve(value);\n const pkg = readJson(path.join(root, 'package.json'));\n const patch = path.join(root, 'cordis.patch.yml');\n const adapter = path.join(root, 'scripts', 'mcp-codex-stdio-adapter.js');\n const router = path.join(root, 'scripts', 'microi-codex-router.js');\n if (pkg?.name !== packageName || pkg?.version !== expectedVersion) return undefined;\n if (pkg?.dsh?.bundle?.patch !== './cordis.patch.yml') return undefined;\n if (![patch, adapter, router].every(filePath => fs.existsSync(filePath))) return undefined;\n return { root: fs.realpathSync(root), adapter, router, modifiedAt: fs.statSync(router).mtimeMs };\n}\n\nfunction findPlugin() {\n const explicit = String(process.env.MICROI_DSH_PLUGIN_ROOT || '').trim();\n if (explicit) {\n const plugin = validRoot(explicit);\n if (!plugin) throw new Error(`MICROI_DSH_PLUGIN_ROOT 不是版本 ${expectedVersion} 的有效 Microi DSH bundle:${explicit}`);\n return plugin;\n }\n const configuredHome = String(process.env.DSH_HOME || '').trim();\n const dshHome = path.resolve(expandHome(configuredHome || path.join(os.homedir(), '.dsh')));\n const profilesRoot = path.join(dshHome, 'profiles');\n const candidates = [];\n if (fs.existsSync(profilesRoot)) {\n for (const entry of fs.readdirSync(profilesRoot, { withFileTypes: true })) {\n if (!entry.isDirectory() || entry.name === 'node_modules') continue;\n const root = path.join(profilesRoot, entry.name, 'node_modules', '@microi.net', 'cli');\n const plugin = validRoot(root);\n if (plugin) candidates.push(plugin);\n }\n }\n candidates.sort((left, right) => right.modifiedAt - left.modifiedAt);\n if (!candidates[0]) throw new Error(`未在 ${profilesRoot} 找到版本 ${expectedVersion} 的 ${packageName}`);\n return candidates[0];\n}\n\ntry {\n const plugin = findPlugin();\n process.env.MICROI_DSH_PLUGIN_ROOT = plugin.root;\n process.env.MICROI_CODEX_PLUGIN_ROOT = plugin.root;\n process.env.MICROI_TOOL_SOURCE = 'dsh';\n process.env.MICROI_TOOL_VERSION = expectedVersion;\n process.env.MICROI_WORKSPACE_ROOT = process.env.MICROI_WORKSPACE_ROOT || process.cwd();\n process.argv[2] = plugin.router;\n require(plugin.adapter);\n} catch (error) {\n console.error(`[microi-dsh-bootstrap] ${error instanceof Error ? error.message : String(error)}`);\n process.exit(1);\n}\n"]
11
11
  env:
12
12
  MICROI_TOOL_SOURCE: dsh
13
13
  cwd: !!js process.cwd()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microi.net/cli",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
4
4
  "description": "Microi吾码 AI 开发 CLI 与多宿主 Plugin:服务器连接、Skills、MCP、V8 同步和低代码交付",
5
5
  "license": "MIT",
6
6
  "homepage": "https://microi.net/doc/v8-engine/vs-code-plugin.html",
@@ -1,13 +1,13 @@
1
1
  {
2
- "builtAt": "2026-08-25T16:02:28.604Z",
2
+ "builtAt": "2026-08-25T19:42:05.331Z",
3
3
  "source": "../microi.skills",
4
4
  "extension": {
5
5
  "name": "v8-engine",
6
- "version": "5.3.1",
6
+ "version": "5.3.2",
7
7
  "publisher": "Microi"
8
8
  },
9
9
  "skills": {
10
- "version": "5.3.1",
10
+ "version": "5.3.2",
11
11
  "versionRule": "Microi version uses three numeric parts. Each publish increments the last part; when a part exceeds 9 it carries to the previous part: 1.0.9 -> 1.1.0, 1.9.9 -> 2.0.0.",
12
12
  "managedBy": "Microi.VSCode/bump-version.js"
13
13
  },
@@ -18,7 +18,7 @@
18
18
  "bytes": 2258104
19
19
  },
20
20
  "fileHashes": {
21
- ".microi-skills-version.json": "17740c07538ee6375cf5a58e2316e31e1f9f53136f217bd841c793faf7c8192f",
21
+ ".microi-skills-version.json": "8538b79a3c4c5b7d8a4f2c9d7b5da6b7e9c762a586716a45b61e0952bcfa6b7b",
22
22
  ".progressive-disclosure-manifest.json": "647fb9b710b958ca64713c45bb0e8a17252ec7f2913179327a26525a2cd5a31d",
23
23
  "README.md": "332aade05015acac5f1387829a42529f37fc203ff0fcfb2f16cc3afdbb23b1ed",
24
24
  "ai-engine/SKILL.md": "df63cf56bd06027f30bd0597003c65b479049141fc0b4a31d33cbc9a5fa044cf",
@@ -198,184 +198,184 @@
198
198
  "workspace-conventions/references/progressive-03-cli-与-ide-插件错版共存约定.md": "86db1f03700fd54dd824d28c553c678202e8f74b796fd0f9d91f63bf53a530b1"
199
199
  },
200
200
  "fileVersions": {
201
- ".microi-skills-version.json": "5.3.1",
202
- ".progressive-disclosure-manifest.json": "5.3.1",
203
- "README.md": "5.3.1",
204
- "ai-engine/SKILL.md": "5.3.1",
205
- "ai-engine/agents/openai.yaml": "5.3.1",
206
- "ai-platform-governance/SKILL.md": "5.3.1",
207
- "ai-platform-governance/references/progressive-01-功能开关.md": "5.3.1",
208
- "app-store/SKILL.md": "5.3.1",
209
- "app-store/agents/openai.yaml": "5.3.1",
210
- "business-blueprint/SKILL.md": "5.3.1",
211
- "datasource-engine/SKILL.md": "5.3.1",
212
- "datasource-engine/agents/openai.yaml": "5.3.1",
213
- "dos-orm/SKILL.md": "5.3.1",
214
- "dos-orm/references/api-reference.md": "5.3.1",
215
- "job-engine/SKILL.md": "5.3.1",
216
- "job-engine/agents/openai.yaml": "5.3.1",
217
- "message-notification/SKILL.md": "5.3.1",
218
- "message-notification/agents/openai.yaml": "5.3.1",
219
- "message-notification/references/contracts.md": "5.3.1",
220
- "microi-ai-app-auth.js": "5.3.1",
221
- "microi-ai-application/SKILL.md": "5.3.1",
222
- "microi-ai-application/agents/openai.yaml": "5.3.1",
223
- "microi-ai-application/references/frontend-baseline.md": "5.3.1",
224
- "microi-client-frontend/SKILL.md": "5.3.1",
225
- "microi-client-frontend/references/progressive-01-3-动态按钮系统.md": "5.3.1",
226
- "microi-client-frontend/references/progressive-02-8-运行时高频坑复盘.md": "5.3.1",
227
- "microi-client-frontend/references/progressive-03-vue3-前端微服务宿主规则.md": "5.3.1",
228
- "microi-codex-installer/SKILL.md": "5.3.1",
229
- "microi-codex-installer/agents/openai.yaml": "5.3.1",
230
- "microi-codex/SKILL.md": "5.3.1",
231
- "microi-datasource-mapping/SKILL.md": "5.3.1",
232
- "microi-db-schema/SKILL.md": "5.3.1",
233
- "microi-db-schema/agents/openai.yaml": "5.3.1",
234
- "microi-db-schema/references/core-tables.md": "5.3.1",
235
- "microi-db-schema/references/form-component-options.md": "5.3.1",
236
- "microi-db-schema/references/schema-overview.md": "5.3.1",
237
- "microi-db-schema/references/schema.md": "5.3.1",
238
- "microi-db-schema/references/table-catalog.md": "5.3.1",
239
- "microi-deployment/SKILL.md": "5.3.1",
240
- "microi-deployment/references/deployment-matrix.md": "5.3.1",
241
- "microi-docs-coverage/SKILL.md": "5.3.1",
242
- "microi-docs-coverage/references/capability-map.md": "5.3.1",
243
- "microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "5.3.1",
244
- "microi-form-engine/SKILL.md": "5.3.1",
245
- "microi-form-engine/references/component-catalog.md": "5.3.1",
246
- "microi-form-engine/references/data-source-events.md": "5.3.1",
247
- "microi-form-layout/SKILL.md": "5.3.1",
248
- "microi-form-layout/references/progressive-01-3-三种分组的存储与配置.md": "5.3.1",
249
- "microi-frontend-sdk/SKILL.md": "5.3.1",
250
- "microi-frontend-sdk/references/progressive-01-token-当前登录用户与当前终端登录协议.md": "5.3.1",
251
- "microi-left-right-layout/SKILL.md": "5.3.1",
252
- "microi-microservice/SKILL.md": "5.3.1",
253
- "microi-microservice/references/runtime-delivery.md": "5.3.1",
254
- "microi-mobile-app-quality/SKILL.md": "5.3.1",
255
- "microi-mobile-app-quality/references/progressive-01-4-重要按钮必须带图标.md": "5.3.1",
256
- "microi-mobile-app-quality/references/progressive-02-9-主题切换必须真实且全局生效.md": "5.3.1",
257
- "microi-solution-quotation/SKILL.md": "5.3.1",
258
- "microi-solution-quotation/agents/openai.yaml": "5.3.1",
259
- "microi-solution-quotation/scripts/build_solution_quote.py": "5.3.1",
260
- "microi-sso/SKILL.md": "5.3.1",
261
- "microi-sso/references/acceptance.md": "5.3.1",
262
- "microi-sso/references/configuration-and-security.md": "5.3.1",
263
- "microi-sso/references/inbound.md": "5.3.1",
264
- "microi-sso/references/outbound.md": "5.3.1",
265
- "microi-system-delivery/SKILL.md": "5.3.1",
266
- "microi-system-delivery/references/progressive-01-标准工作流.md": "5.3.1",
267
- "microi-system-delivery/references/progressive-02-自动化测试必须覆盖的坑.md": "5.3.1",
268
- "microi-ui/SKILL.md": "5.3.1",
269
- "microi-ui/references/progressive-01-移动端场景蓝图.md": "5.3.1",
270
- "microi-uniapp-frontend/SKILL.md": "5.3.1",
271
- "microi-uniapp-frontend/references/progressive-01-移动端分类-双栏列表独立滚动.md": "5.3.1",
272
- "microi-uniapp-frontend/references/progressive-02-关键业务资产不得默认选中.md": "5.3.1",
273
- "microi.v8.js": "5.3.1",
274
- "module-engine/SKILL.md": "5.3.1",
275
- "module-engine/references/module-config.md": "5.3.1",
276
- "ocr-engine/SKILL.md": "5.3.1",
277
- "ocr-engine/agents/openai.yaml": "5.3.1",
278
- "page-engine/SKILL.md": "5.3.1",
279
- "page-engine/references/progressive-01-所有组件类型.md": "5.3.1",
280
- "page-engine/references/progressive-02-版本历史-并发保存与回滚.md": "5.3.1",
281
- "performance-testing/SKILL.md": "5.3.1",
282
- "playwright-e2e/SKILL.md": "5.3.1",
283
- "playwright-e2e/references/progressive-01-全自动登录-免验证码-但不免密码-必读.md": "5.3.1",
284
- "playwright-e2e/references/progressive-02-文字对比度与可读性自动化检查-必做.md": "5.3.1",
285
- "playwright-e2e/references/progressive-03-microi-helper-模板.md": "5.3.1",
286
- "playwright-e2e/references/progressive-04-ci-建议.md": "5.3.1",
287
- "print-engine/SKILL.md": "5.3.1",
288
- "production-readonly-audit/SKILL.md": "5.3.1",
289
- "report-engine/SKILL.md": "5.3.1",
290
- "report-engine/agents/openai.yaml": "5.3.1",
291
- "scripts/optimize-progressive-disclosure.mjs": "5.3.1",
292
- "scripts/refresh-progressive-disclosure.mjs": "5.3.1",
293
- "scripts/validate-progressive-disclosure.mjs": "5.3.1",
294
- "search-engine/SKILL.md": "5.3.1",
295
- "search-engine/agents/openai.yaml": "5.3.1",
296
- "spider-engine/SKILL.md": "5.3.1",
297
- "system-observability/SKILL.md": "5.3.1",
298
- "translate-engine/SKILL.md": "5.3.1",
299
- "translate-engine/agents/openai.yaml": "5.3.1",
300
- "ui-design/SKILL.md": "5.3.1",
301
- "ui-design/assets/pattern-showcase/app.js": "5.3.1",
302
- "ui-design/assets/pattern-showcase/index.html": "5.3.1",
303
- "ui-design/assets/pattern-showcase/styles.css": "5.3.1",
304
- "ui-design/assets/templates/MCI-DESIGN.md": "5.3.1",
305
- "ui-design/references/design-pattern-library.md": "5.3.1",
306
- "ui-design/references/mci-design-contract.md": "5.3.1",
307
- "ui-design/references/motion-and-media.md": "5.3.1",
308
- "ui-design/references/product-flow-recipes.md": "5.3.1",
309
- "ui-design/references/progressive-01-颜色体系-css-variables-支持主题切换.md": "5.3.1",
310
- "ui-design/references/progressive-02-字体.md": "5.3.1",
311
- "ui-design/references/progressive-03-动效规范-丰富但不卡.md": "5.3.1",
312
- "ui-design/references/progressive-04-组件风格速查.md": "5.3.1",
313
- "ui-design/references/progressive-05-移动端专用规范.md": "5.3.1",
314
- "ui-design/references/progressive-06-主题切换实现.md": "5.3.1",
315
- "ui-design/references/progressive-07-速查-从头搭建一个移动端页面.md": "5.3.1",
316
- "ui-design/references/progressive-08-表单分组规范-tabs-vs-collapsegroup-强制.md": "5.3.1",
317
- "uniapp-mall-assets/SKILL.md": "5.3.1",
318
- "unity-integration/SKILL.md": "5.3.1",
319
- "unity-integration/agents/openai.yaml": "5.3.1",
320
- "unity-integration/references/ai-app-delivery.md": "5.3.1",
321
- "unity-integration/references/sdk-api.md": "5.3.1",
322
- "unity-integration/references/toolbox-migration.md": "5.3.1",
323
- "unity-integration/references/webgl-hosting.md": "5.3.1",
324
- "v8-api-config/SKILL.md": "5.3.1",
325
- "v8-cache-pattern/SKILL.md": "5.3.1",
326
- "v8-crud-api/SKILL.md": "5.3.1",
327
- "v8-crud-api/references/progressive-01-查询列表-分页.md": "5.3.1",
328
- "v8-crud-api/references/progressive-02-where-条件语法速查.md": "5.3.1",
329
- "v8-debugging/SKILL.md": "5.3.1",
330
- "v8-explorer-tree/SKILL.md": "5.3.1",
331
- "v8-export-import/SKILL.md": "5.3.1",
332
- "v8-export-import/references/progressive-01-excellayout-高级自由布局.md": "5.3.1",
333
- "v8-export-import/references/progressive-02-powerpoint-导出.md": "5.3.1",
334
- "v8-export-import/references/progressive-03-安全-性能注意.md": "5.3.1",
335
- "v8-file-upload/SKILL.md": "5.3.1",
336
- "v8-file-upload/references/progressive-01-公有桶-vs-私有桶.md": "5.3.1",
337
- "v8-file-upload/references/progressive-02-office-文件在线编辑版本号规则.md": "5.3.1",
338
- "v8-formengine-http/SKILL.md": "5.3.1",
339
- "v8-frontend-events/SKILL.md": "5.3.1",
340
- "v8-frontend-events/references/bluetooth-print-api.md": "5.3.1",
341
- "v8-frontend-events/references/bluetooth-print.md": "5.3.1",
342
- "v8-frontend-events/references/progressive-01-列表事件.md": "5.3.1",
343
- "v8-http-integration/SKILL.md": "5.3.1",
344
- "v8-http-integration/references/progressive-01-get-请求.md": "5.3.1",
345
- "v8-http-integration/references/progressive-02-错误处理模式.md": "5.3.1",
346
- "v8-image-processing/SKILL.md": "5.3.1",
347
- "v8-image-processing/agents/openai.yaml": "5.3.1",
348
- "v8-image-processing/references/api-reference.md": "5.3.1",
349
- "v8-menu-buttons/SKILL.md": "5.3.1",
350
- "v8-menu-buttons/references/progressive-01-2-按钮对象-schema.md": "5.3.1",
351
- "v8-menu-buttons/references/progressive-02-8-模式-f-后台任务按钮-长任务.md": "5.3.1",
352
- "v8-menu-buttons/references/progressive-03-10-反模式-避免.md": "5.3.1",
353
- "v8-mongodb/SKILL.md": "5.3.1",
354
- "v8-mq-mqtt/SKILL.md": "5.3.1",
355
- "v8-mq-mqtt/references/mqtt-production.md": "5.3.1",
356
- "v8-mq-mqtt/references/progressive-01-v8-mqtt-iot-物联网.md": "5.3.1",
357
- "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "5.3.1",
358
- "v8-saas-multi-tenant/SKILL.md": "5.3.1",
359
- "v8-security/SKILL.md": "5.3.1",
360
- "v8-security/references/progressive-01-2-权限校验.md": "5.3.1",
361
- "v8-security/references/progressive-02-7-日志记录.md": "5.3.1",
362
- "v8-sql-query/SKILL.md": "5.3.1",
363
- "v8-table-event/SKILL.md": "5.3.1",
364
- "v8-table-event/references/progressive-01-informv8-js-表单打开事件.md": "5.3.1",
365
- "v8-table-event/references/progressive-02-前端事件名-v8-eventname-可能的值.md": "5.3.1",
366
- "v8-tcp-integration/SKILL.md": "5.3.1",
367
- "v8-tcp-integration/agents/openai.yaml": "5.3.1",
368
- "v8-template-engine/SKILL.md": "5.3.1",
369
- "v8-utilities/SKILL.md": "5.3.1",
370
- "v8-utilities/references/client-api-index.md": "5.3.1",
371
- "v8-utilities/references/platform-http-routes.md": "5.3.1",
372
- "v8-utilities/references/server-api-index.md": "5.3.1",
373
- "v8-workflow/SKILL.md": "5.3.1",
374
- "v8-workflow/references/progressive-01-节点开始-v8-事件.md": "5.3.1",
375
- "workspace-conventions/SKILL.md": "5.3.1",
376
- "workspace-conventions/references/progressive-01-版本更新日志保护规则-强制.md": "5.3.1",
377
- "workspace-conventions/references/progressive-02-microi-net-api-本地启动约定.md": "5.3.1",
378
- "workspace-conventions/references/progressive-03-cli-与-ide-插件错版共存约定.md": "5.3.1"
201
+ ".microi-skills-version.json": "5.3.2",
202
+ ".progressive-disclosure-manifest.json": "5.3.2",
203
+ "README.md": "5.3.2",
204
+ "ai-engine/SKILL.md": "5.3.2",
205
+ "ai-engine/agents/openai.yaml": "5.3.2",
206
+ "ai-platform-governance/SKILL.md": "5.3.2",
207
+ "ai-platform-governance/references/progressive-01-功能开关.md": "5.3.2",
208
+ "app-store/SKILL.md": "5.3.2",
209
+ "app-store/agents/openai.yaml": "5.3.2",
210
+ "business-blueprint/SKILL.md": "5.3.2",
211
+ "datasource-engine/SKILL.md": "5.3.2",
212
+ "datasource-engine/agents/openai.yaml": "5.3.2",
213
+ "dos-orm/SKILL.md": "5.3.2",
214
+ "dos-orm/references/api-reference.md": "5.3.2",
215
+ "job-engine/SKILL.md": "5.3.2",
216
+ "job-engine/agents/openai.yaml": "5.3.2",
217
+ "message-notification/SKILL.md": "5.3.2",
218
+ "message-notification/agents/openai.yaml": "5.3.2",
219
+ "message-notification/references/contracts.md": "5.3.2",
220
+ "microi-ai-app-auth.js": "5.3.2",
221
+ "microi-ai-application/SKILL.md": "5.3.2",
222
+ "microi-ai-application/agents/openai.yaml": "5.3.2",
223
+ "microi-ai-application/references/frontend-baseline.md": "5.3.2",
224
+ "microi-client-frontend/SKILL.md": "5.3.2",
225
+ "microi-client-frontend/references/progressive-01-3-动态按钮系统.md": "5.3.2",
226
+ "microi-client-frontend/references/progressive-02-8-运行时高频坑复盘.md": "5.3.2",
227
+ "microi-client-frontend/references/progressive-03-vue3-前端微服务宿主规则.md": "5.3.2",
228
+ "microi-codex-installer/SKILL.md": "5.3.2",
229
+ "microi-codex-installer/agents/openai.yaml": "5.3.2",
230
+ "microi-codex/SKILL.md": "5.3.2",
231
+ "microi-datasource-mapping/SKILL.md": "5.3.2",
232
+ "microi-db-schema/SKILL.md": "5.3.2",
233
+ "microi-db-schema/agents/openai.yaml": "5.3.2",
234
+ "microi-db-schema/references/core-tables.md": "5.3.2",
235
+ "microi-db-schema/references/form-component-options.md": "5.3.2",
236
+ "microi-db-schema/references/schema-overview.md": "5.3.2",
237
+ "microi-db-schema/references/schema.md": "5.3.2",
238
+ "microi-db-schema/references/table-catalog.md": "5.3.2",
239
+ "microi-deployment/SKILL.md": "5.3.2",
240
+ "microi-deployment/references/deployment-matrix.md": "5.3.2",
241
+ "microi-docs-coverage/SKILL.md": "5.3.2",
242
+ "microi-docs-coverage/references/capability-map.md": "5.3.2",
243
+ "microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "5.3.2",
244
+ "microi-form-engine/SKILL.md": "5.3.2",
245
+ "microi-form-engine/references/component-catalog.md": "5.3.2",
246
+ "microi-form-engine/references/data-source-events.md": "5.3.2",
247
+ "microi-form-layout/SKILL.md": "5.3.2",
248
+ "microi-form-layout/references/progressive-01-3-三种分组的存储与配置.md": "5.3.2",
249
+ "microi-frontend-sdk/SKILL.md": "5.3.2",
250
+ "microi-frontend-sdk/references/progressive-01-token-当前登录用户与当前终端登录协议.md": "5.3.2",
251
+ "microi-left-right-layout/SKILL.md": "5.3.2",
252
+ "microi-microservice/SKILL.md": "5.3.2",
253
+ "microi-microservice/references/runtime-delivery.md": "5.3.2",
254
+ "microi-mobile-app-quality/SKILL.md": "5.3.2",
255
+ "microi-mobile-app-quality/references/progressive-01-4-重要按钮必须带图标.md": "5.3.2",
256
+ "microi-mobile-app-quality/references/progressive-02-9-主题切换必须真实且全局生效.md": "5.3.2",
257
+ "microi-solution-quotation/SKILL.md": "5.3.2",
258
+ "microi-solution-quotation/agents/openai.yaml": "5.3.2",
259
+ "microi-solution-quotation/scripts/build_solution_quote.py": "5.3.2",
260
+ "microi-sso/SKILL.md": "5.3.2",
261
+ "microi-sso/references/acceptance.md": "5.3.2",
262
+ "microi-sso/references/configuration-and-security.md": "5.3.2",
263
+ "microi-sso/references/inbound.md": "5.3.2",
264
+ "microi-sso/references/outbound.md": "5.3.2",
265
+ "microi-system-delivery/SKILL.md": "5.3.2",
266
+ "microi-system-delivery/references/progressive-01-标准工作流.md": "5.3.2",
267
+ "microi-system-delivery/references/progressive-02-自动化测试必须覆盖的坑.md": "5.3.2",
268
+ "microi-ui/SKILL.md": "5.3.2",
269
+ "microi-ui/references/progressive-01-移动端场景蓝图.md": "5.3.2",
270
+ "microi-uniapp-frontend/SKILL.md": "5.3.2",
271
+ "microi-uniapp-frontend/references/progressive-01-移动端分类-双栏列表独立滚动.md": "5.3.2",
272
+ "microi-uniapp-frontend/references/progressive-02-关键业务资产不得默认选中.md": "5.3.2",
273
+ "microi.v8.js": "5.3.2",
274
+ "module-engine/SKILL.md": "5.3.2",
275
+ "module-engine/references/module-config.md": "5.3.2",
276
+ "ocr-engine/SKILL.md": "5.3.2",
277
+ "ocr-engine/agents/openai.yaml": "5.3.2",
278
+ "page-engine/SKILL.md": "5.3.2",
279
+ "page-engine/references/progressive-01-所有组件类型.md": "5.3.2",
280
+ "page-engine/references/progressive-02-版本历史-并发保存与回滚.md": "5.3.2",
281
+ "performance-testing/SKILL.md": "5.3.2",
282
+ "playwright-e2e/SKILL.md": "5.3.2",
283
+ "playwright-e2e/references/progressive-01-全自动登录-免验证码-但不免密码-必读.md": "5.3.2",
284
+ "playwright-e2e/references/progressive-02-文字对比度与可读性自动化检查-必做.md": "5.3.2",
285
+ "playwright-e2e/references/progressive-03-microi-helper-模板.md": "5.3.2",
286
+ "playwright-e2e/references/progressive-04-ci-建议.md": "5.3.2",
287
+ "print-engine/SKILL.md": "5.3.2",
288
+ "production-readonly-audit/SKILL.md": "5.3.2",
289
+ "report-engine/SKILL.md": "5.3.2",
290
+ "report-engine/agents/openai.yaml": "5.3.2",
291
+ "scripts/optimize-progressive-disclosure.mjs": "5.3.2",
292
+ "scripts/refresh-progressive-disclosure.mjs": "5.3.2",
293
+ "scripts/validate-progressive-disclosure.mjs": "5.3.2",
294
+ "search-engine/SKILL.md": "5.3.2",
295
+ "search-engine/agents/openai.yaml": "5.3.2",
296
+ "spider-engine/SKILL.md": "5.3.2",
297
+ "system-observability/SKILL.md": "5.3.2",
298
+ "translate-engine/SKILL.md": "5.3.2",
299
+ "translate-engine/agents/openai.yaml": "5.3.2",
300
+ "ui-design/SKILL.md": "5.3.2",
301
+ "ui-design/assets/pattern-showcase/app.js": "5.3.2",
302
+ "ui-design/assets/pattern-showcase/index.html": "5.3.2",
303
+ "ui-design/assets/pattern-showcase/styles.css": "5.3.2",
304
+ "ui-design/assets/templates/MCI-DESIGN.md": "5.3.2",
305
+ "ui-design/references/design-pattern-library.md": "5.3.2",
306
+ "ui-design/references/mci-design-contract.md": "5.3.2",
307
+ "ui-design/references/motion-and-media.md": "5.3.2",
308
+ "ui-design/references/product-flow-recipes.md": "5.3.2",
309
+ "ui-design/references/progressive-01-颜色体系-css-variables-支持主题切换.md": "5.3.2",
310
+ "ui-design/references/progressive-02-字体.md": "5.3.2",
311
+ "ui-design/references/progressive-03-动效规范-丰富但不卡.md": "5.3.2",
312
+ "ui-design/references/progressive-04-组件风格速查.md": "5.3.2",
313
+ "ui-design/references/progressive-05-移动端专用规范.md": "5.3.2",
314
+ "ui-design/references/progressive-06-主题切换实现.md": "5.3.2",
315
+ "ui-design/references/progressive-07-速查-从头搭建一个移动端页面.md": "5.3.2",
316
+ "ui-design/references/progressive-08-表单分组规范-tabs-vs-collapsegroup-强制.md": "5.3.2",
317
+ "uniapp-mall-assets/SKILL.md": "5.3.2",
318
+ "unity-integration/SKILL.md": "5.3.2",
319
+ "unity-integration/agents/openai.yaml": "5.3.2",
320
+ "unity-integration/references/ai-app-delivery.md": "5.3.2",
321
+ "unity-integration/references/sdk-api.md": "5.3.2",
322
+ "unity-integration/references/toolbox-migration.md": "5.3.2",
323
+ "unity-integration/references/webgl-hosting.md": "5.3.2",
324
+ "v8-api-config/SKILL.md": "5.3.2",
325
+ "v8-cache-pattern/SKILL.md": "5.3.2",
326
+ "v8-crud-api/SKILL.md": "5.3.2",
327
+ "v8-crud-api/references/progressive-01-查询列表-分页.md": "5.3.2",
328
+ "v8-crud-api/references/progressive-02-where-条件语法速查.md": "5.3.2",
329
+ "v8-debugging/SKILL.md": "5.3.2",
330
+ "v8-explorer-tree/SKILL.md": "5.3.2",
331
+ "v8-export-import/SKILL.md": "5.3.2",
332
+ "v8-export-import/references/progressive-01-excellayout-高级自由布局.md": "5.3.2",
333
+ "v8-export-import/references/progressive-02-powerpoint-导出.md": "5.3.2",
334
+ "v8-export-import/references/progressive-03-安全-性能注意.md": "5.3.2",
335
+ "v8-file-upload/SKILL.md": "5.3.2",
336
+ "v8-file-upload/references/progressive-01-公有桶-vs-私有桶.md": "5.3.2",
337
+ "v8-file-upload/references/progressive-02-office-文件在线编辑版本号规则.md": "5.3.2",
338
+ "v8-formengine-http/SKILL.md": "5.3.2",
339
+ "v8-frontend-events/SKILL.md": "5.3.2",
340
+ "v8-frontend-events/references/bluetooth-print-api.md": "5.3.2",
341
+ "v8-frontend-events/references/bluetooth-print.md": "5.3.2",
342
+ "v8-frontend-events/references/progressive-01-列表事件.md": "5.3.2",
343
+ "v8-http-integration/SKILL.md": "5.3.2",
344
+ "v8-http-integration/references/progressive-01-get-请求.md": "5.3.2",
345
+ "v8-http-integration/references/progressive-02-错误处理模式.md": "5.3.2",
346
+ "v8-image-processing/SKILL.md": "5.3.2",
347
+ "v8-image-processing/agents/openai.yaml": "5.3.2",
348
+ "v8-image-processing/references/api-reference.md": "5.3.2",
349
+ "v8-menu-buttons/SKILL.md": "5.3.2",
350
+ "v8-menu-buttons/references/progressive-01-2-按钮对象-schema.md": "5.3.2",
351
+ "v8-menu-buttons/references/progressive-02-8-模式-f-后台任务按钮-长任务.md": "5.3.2",
352
+ "v8-menu-buttons/references/progressive-03-10-反模式-避免.md": "5.3.2",
353
+ "v8-mongodb/SKILL.md": "5.3.2",
354
+ "v8-mq-mqtt/SKILL.md": "5.3.2",
355
+ "v8-mq-mqtt/references/mqtt-production.md": "5.3.2",
356
+ "v8-mq-mqtt/references/progressive-01-v8-mqtt-iot-物联网.md": "5.3.2",
357
+ "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "5.3.2",
358
+ "v8-saas-multi-tenant/SKILL.md": "5.3.2",
359
+ "v8-security/SKILL.md": "5.3.2",
360
+ "v8-security/references/progressive-01-2-权限校验.md": "5.3.2",
361
+ "v8-security/references/progressive-02-7-日志记录.md": "5.3.2",
362
+ "v8-sql-query/SKILL.md": "5.3.2",
363
+ "v8-table-event/SKILL.md": "5.3.2",
364
+ "v8-table-event/references/progressive-01-informv8-js-表单打开事件.md": "5.3.2",
365
+ "v8-table-event/references/progressive-02-前端事件名-v8-eventname-可能的值.md": "5.3.2",
366
+ "v8-tcp-integration/SKILL.md": "5.3.2",
367
+ "v8-tcp-integration/agents/openai.yaml": "5.3.2",
368
+ "v8-template-engine/SKILL.md": "5.3.2",
369
+ "v8-utilities/SKILL.md": "5.3.2",
370
+ "v8-utilities/references/client-api-index.md": "5.3.2",
371
+ "v8-utilities/references/platform-http-routes.md": "5.3.2",
372
+ "v8-utilities/references/server-api-index.md": "5.3.2",
373
+ "v8-workflow/SKILL.md": "5.3.2",
374
+ "v8-workflow/references/progressive-01-节点开始-v8-事件.md": "5.3.2",
375
+ "workspace-conventions/SKILL.md": "5.3.2",
376
+ "workspace-conventions/references/progressive-01-版本更新日志保护规则-强制.md": "5.3.2",
377
+ "workspace-conventions/references/progressive-02-microi-net-api-本地启动约定.md": "5.3.2",
378
+ "workspace-conventions/references/progressive-03-cli-与-ide-插件错版共存约定.md": "5.3.2"
379
379
  },
380
380
  "files": [
381
381
  ".microi-skills-version.json",
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "5.3.1",
2
+ "version": "5.3.2",
3
3
  "versionRule": "Microi version uses three numeric parts. Each publish increments the last part; when a part exceeds 9 it carries to the previous part: 1.0.9 -> 1.1.0, 1.9.9 -> 2.0.0.",
4
4
  "managedBy": "Microi.VSCode/bump-version.js",
5
- "updatedAt": "2026-08-25T16:01:51.682Z"
5
+ "updatedAt": "2026-08-25T19:41:31.740Z"
6
6
  }