@microi.net/cli 5.2.9 → 5.3.0

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.2.9",
8
+ "version": "5.3.0",
9
9
  "plugins": [
10
10
  {
11
11
  "name": "microi",
12
12
  "source": ".",
13
13
  "description": "Microi吾码 AI 开发插件:服务器连接、Skills、MCP、V8 全量同步与低代码交付",
14
- "version": "5.2.9",
14
+ "version": "5.3.0",
15
15
  "strict": true
16
16
  }
17
17
  ]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microi",
3
- "version": "5.2.9",
3
+ "version": "5.3.0",
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.2.9",
3
+ "version": "5.3.0",
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.2.9",
8
+ "version": "5.3.0",
9
9
  "plugins": [
10
10
  {
11
11
  "name": "microi",
12
12
  "source": ".",
13
13
  "description": "Microi吾码 AI 开发插件:服务器连接、Skills、MCP、V8 全量同步与低代码交付",
14
- "version": "5.2.9",
14
+ "version": "5.3.0",
15
15
  "strict": true
16
16
  }
17
17
  ]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microi",
3
- "version": "5.2.9",
3
+ "version": "5.3.0",
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-25T02:18:24.149Z",
3
- "version": "5.2.9",
2
+ "builtAt": "2026-08-25T07:17:04.489Z",
3
+ "version": "5.3.0",
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": "0c611e7277e2064009b4d789f721282bb1854054f535b164fb5e8d58f5294ebc"
16
+ "dshBundle": "52b941558852c376c3231ba5712ebe0fb23a981acd24b0e5486ade47d51c8d2d"
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.2.9';\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.0';\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.2.9",
3
+ "version": "5.3.0",
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-25T02:18:22.909Z",
2
+ "builtAt": "2026-08-25T07:17:03.467Z",
3
3
  "source": "../microi.skills",
4
4
  "extension": {
5
5
  "name": "v8-engine",
6
- "version": "5.2.9",
6
+ "version": "5.3.0",
7
7
  "publisher": "Microi"
8
8
  },
9
9
  "skills": {
10
- "version": "5.2.9",
10
+ "version": "5.3.0",
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
  },
@@ -15,10 +15,10 @@
15
15
  "dir": "dist/microi.skills",
16
16
  "files": 178,
17
17
  "skills": 65,
18
- "bytes": 2254645
18
+ "bytes": 2255084
19
19
  },
20
20
  "fileHashes": {
21
- ".microi-skills-version.json": "2d77a79b32af4fa267caa2bb96e98c9a4e4df9798ea6f14eca36518bb78623d3",
21
+ ".microi-skills-version.json": "da12f7e7763a586a1a5bb600042361ae397bd304f852ddf8fb769530ba83716f",
22
22
  ".progressive-disclosure-manifest.json": "647fb9b710b958ca64713c45bb0e8a17252ec7f2913179327a26525a2cd5a31d",
23
23
  "README.md": "332aade05015acac5f1387829a42529f37fc203ff0fcfb2f16cc3afdbb23b1ed",
24
24
  "ai-engine/SKILL.md": "df63cf56bd06027f30bd0597003c65b479049141fc0b4a31d33cbc9a5fa044cf",
@@ -170,7 +170,7 @@
170
170
  "v8-menu-buttons/references/progressive-01-2-按钮对象-schema.md": "d64938d7b17a77fd8a83e16baf9a34a35a79f05a96b47794cfd8401e173df6cc",
171
171
  "v8-menu-buttons/references/progressive-02-8-模式-f-后台任务按钮-长任务.md": "7a3ab56864a0485279e53bad65ff8f3f880a3495b16a48a4bbf9b71e9e83ea2a",
172
172
  "v8-menu-buttons/references/progressive-03-10-反模式-避免.md": "36487289e5f20ba7d0b4e4a2fba737d1ac45395ffba037b84c88a8d50ed44901",
173
- "v8-mongodb/SKILL.md": "526d77b0afd20417a0c03b2a8f958a6f8c99241f3f65bc01f642824ec55127ee",
173
+ "v8-mongodb/SKILL.md": "6aa9ffad6dc2495488ed63744e9353f6e24c38b2cf4eecd8dcba8f1898a35956",
174
174
  "v8-mq-mqtt/SKILL.md": "a96679cd2c87ade78dfe271a52d8562895c0d91b227cb28947cccbbf37a0320d",
175
175
  "v8-mq-mqtt/references/mqtt-production.md": "fec6dd18d58c0f0fc90a295286945f6e7cb7f43c60022c4fd9d48f9baafb35b9",
176
176
  "v8-mq-mqtt/references/progressive-01-v8-mqtt-iot-物联网.md": "842c74bd8bc30b932346e34c0d4154edffc1bf6a5a8aaafaaa344f250394762c",
@@ -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.2.9",
202
- ".progressive-disclosure-manifest.json": "5.2.9",
203
- "README.md": "5.2.9",
204
- "ai-engine/SKILL.md": "5.2.9",
205
- "ai-engine/agents/openai.yaml": "5.2.9",
206
- "ai-platform-governance/SKILL.md": "5.2.9",
207
- "ai-platform-governance/references/progressive-01-功能开关.md": "5.2.9",
208
- "app-store/SKILL.md": "5.2.9",
209
- "app-store/agents/openai.yaml": "5.2.9",
210
- "business-blueprint/SKILL.md": "5.2.9",
211
- "datasource-engine/SKILL.md": "5.2.9",
212
- "datasource-engine/agents/openai.yaml": "5.2.9",
213
- "dos-orm/SKILL.md": "5.2.9",
214
- "dos-orm/references/api-reference.md": "5.2.9",
215
- "job-engine/SKILL.md": "5.2.9",
216
- "job-engine/agents/openai.yaml": "5.2.9",
217
- "message-notification/SKILL.md": "5.2.9",
218
- "message-notification/agents/openai.yaml": "5.2.9",
219
- "message-notification/references/contracts.md": "5.2.9",
220
- "microi-ai-app-auth.js": "5.2.9",
221
- "microi-ai-application/SKILL.md": "5.2.9",
222
- "microi-ai-application/agents/openai.yaml": "5.2.9",
223
- "microi-ai-application/references/frontend-baseline.md": "5.2.9",
224
- "microi-client-frontend/SKILL.md": "5.2.9",
225
- "microi-client-frontend/references/progressive-01-3-动态按钮系统.md": "5.2.9",
226
- "microi-client-frontend/references/progressive-02-8-运行时高频坑复盘.md": "5.2.9",
227
- "microi-client-frontend/references/progressive-03-vue3-前端微服务宿主规则.md": "5.2.9",
228
- "microi-codex-installer/SKILL.md": "5.2.9",
229
- "microi-codex-installer/agents/openai.yaml": "5.2.9",
230
- "microi-codex/SKILL.md": "5.2.9",
231
- "microi-datasource-mapping/SKILL.md": "5.2.9",
232
- "microi-db-schema/SKILL.md": "5.2.9",
233
- "microi-db-schema/agents/openai.yaml": "5.2.9",
234
- "microi-db-schema/references/core-tables.md": "5.2.9",
235
- "microi-db-schema/references/form-component-options.md": "5.2.9",
236
- "microi-db-schema/references/schema-overview.md": "5.2.9",
237
- "microi-db-schema/references/schema.md": "5.2.9",
238
- "microi-db-schema/references/table-catalog.md": "5.2.9",
239
- "microi-deployment/SKILL.md": "5.2.9",
240
- "microi-deployment/references/deployment-matrix.md": "5.2.9",
241
- "microi-docs-coverage/SKILL.md": "5.2.9",
242
- "microi-docs-coverage/references/capability-map.md": "5.2.9",
243
- "microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "5.2.9",
244
- "microi-form-engine/SKILL.md": "5.2.9",
245
- "microi-form-engine/references/component-catalog.md": "5.2.9",
246
- "microi-form-engine/references/data-source-events.md": "5.2.9",
247
- "microi-form-layout/SKILL.md": "5.2.9",
248
- "microi-form-layout/references/progressive-01-3-三种分组的存储与配置.md": "5.2.9",
249
- "microi-frontend-sdk/SKILL.md": "5.2.9",
250
- "microi-frontend-sdk/references/progressive-01-token-当前登录用户与当前终端登录协议.md": "5.2.9",
251
- "microi-left-right-layout/SKILL.md": "5.2.9",
252
- "microi-microservice/SKILL.md": "5.2.9",
253
- "microi-microservice/references/runtime-delivery.md": "5.2.9",
254
- "microi-mobile-app-quality/SKILL.md": "5.2.9",
255
- "microi-mobile-app-quality/references/progressive-01-4-重要按钮必须带图标.md": "5.2.9",
256
- "microi-mobile-app-quality/references/progressive-02-9-主题切换必须真实且全局生效.md": "5.2.9",
257
- "microi-solution-quotation/SKILL.md": "5.2.9",
258
- "microi-solution-quotation/agents/openai.yaml": "5.2.9",
259
- "microi-solution-quotation/scripts/build_solution_quote.py": "5.2.9",
260
- "microi-sso/SKILL.md": "5.2.9",
261
- "microi-sso/references/acceptance.md": "5.2.9",
262
- "microi-sso/references/configuration-and-security.md": "5.2.9",
263
- "microi-sso/references/inbound.md": "5.2.9",
264
- "microi-sso/references/outbound.md": "5.2.9",
265
- "microi-system-delivery/SKILL.md": "5.2.9",
266
- "microi-system-delivery/references/progressive-01-标准工作流.md": "5.2.9",
267
- "microi-system-delivery/references/progressive-02-自动化测试必须覆盖的坑.md": "5.2.9",
268
- "microi-ui/SKILL.md": "5.2.9",
269
- "microi-ui/references/progressive-01-移动端场景蓝图.md": "5.2.9",
270
- "microi-uniapp-frontend/SKILL.md": "5.2.9",
271
- "microi-uniapp-frontend/references/progressive-01-移动端分类-双栏列表独立滚动.md": "5.2.9",
272
- "microi-uniapp-frontend/references/progressive-02-关键业务资产不得默认选中.md": "5.2.9",
273
- "microi.v8.js": "5.2.9",
274
- "module-engine/SKILL.md": "5.2.9",
275
- "module-engine/references/module-config.md": "5.2.9",
276
- "ocr-engine/SKILL.md": "5.2.9",
277
- "ocr-engine/agents/openai.yaml": "5.2.9",
278
- "page-engine/SKILL.md": "5.2.9",
279
- "page-engine/references/progressive-01-所有组件类型.md": "5.2.9",
280
- "page-engine/references/progressive-02-版本历史-并发保存与回滚.md": "5.2.9",
281
- "performance-testing/SKILL.md": "5.2.9",
282
- "playwright-e2e/SKILL.md": "5.2.9",
283
- "playwright-e2e/references/progressive-01-全自动登录-免验证码-但不免密码-必读.md": "5.2.9",
284
- "playwright-e2e/references/progressive-02-文字对比度与可读性自动化检查-必做.md": "5.2.9",
285
- "playwright-e2e/references/progressive-03-microi-helper-模板.md": "5.2.9",
286
- "playwright-e2e/references/progressive-04-ci-建议.md": "5.2.9",
287
- "print-engine/SKILL.md": "5.2.9",
288
- "production-readonly-audit/SKILL.md": "5.2.9",
289
- "report-engine/SKILL.md": "5.2.9",
290
- "report-engine/agents/openai.yaml": "5.2.9",
291
- "scripts/optimize-progressive-disclosure.mjs": "5.2.9",
292
- "scripts/refresh-progressive-disclosure.mjs": "5.2.9",
293
- "scripts/validate-progressive-disclosure.mjs": "5.2.9",
294
- "search-engine/SKILL.md": "5.2.9",
295
- "search-engine/agents/openai.yaml": "5.2.9",
296
- "spider-engine/SKILL.md": "5.2.9",
297
- "system-observability/SKILL.md": "5.2.9",
298
- "translate-engine/SKILL.md": "5.2.9",
299
- "translate-engine/agents/openai.yaml": "5.2.9",
300
- "ui-design/SKILL.md": "5.2.9",
301
- "ui-design/assets/pattern-showcase/app.js": "5.2.9",
302
- "ui-design/assets/pattern-showcase/index.html": "5.2.9",
303
- "ui-design/assets/pattern-showcase/styles.css": "5.2.9",
304
- "ui-design/assets/templates/MCI-DESIGN.md": "5.2.9",
305
- "ui-design/references/design-pattern-library.md": "5.2.9",
306
- "ui-design/references/mci-design-contract.md": "5.2.9",
307
- "ui-design/references/motion-and-media.md": "5.2.9",
308
- "ui-design/references/product-flow-recipes.md": "5.2.9",
309
- "ui-design/references/progressive-01-颜色体系-css-variables-支持主题切换.md": "5.2.9",
310
- "ui-design/references/progressive-02-字体.md": "5.2.9",
311
- "ui-design/references/progressive-03-动效规范-丰富但不卡.md": "5.2.9",
312
- "ui-design/references/progressive-04-组件风格速查.md": "5.2.9",
313
- "ui-design/references/progressive-05-移动端专用规范.md": "5.2.9",
314
- "ui-design/references/progressive-06-主题切换实现.md": "5.2.9",
315
- "ui-design/references/progressive-07-速查-从头搭建一个移动端页面.md": "5.2.9",
316
- "ui-design/references/progressive-08-表单分组规范-tabs-vs-collapsegroup-强制.md": "5.2.9",
317
- "uniapp-mall-assets/SKILL.md": "5.2.9",
318
- "unity-integration/SKILL.md": "5.2.9",
319
- "unity-integration/agents/openai.yaml": "5.2.9",
320
- "unity-integration/references/ai-app-delivery.md": "5.2.9",
321
- "unity-integration/references/sdk-api.md": "5.2.9",
322
- "unity-integration/references/toolbox-migration.md": "5.2.9",
323
- "unity-integration/references/webgl-hosting.md": "5.2.9",
324
- "v8-api-config/SKILL.md": "5.2.9",
325
- "v8-cache-pattern/SKILL.md": "5.2.9",
326
- "v8-crud-api/SKILL.md": "5.2.9",
327
- "v8-crud-api/references/progressive-01-查询列表-分页.md": "5.2.9",
328
- "v8-crud-api/references/progressive-02-where-条件语法速查.md": "5.2.9",
329
- "v8-debugging/SKILL.md": "5.2.9",
330
- "v8-explorer-tree/SKILL.md": "5.2.9",
331
- "v8-export-import/SKILL.md": "5.2.9",
332
- "v8-export-import/references/progressive-01-excellayout-高级自由布局.md": "5.2.9",
333
- "v8-export-import/references/progressive-02-powerpoint-导出.md": "5.2.9",
334
- "v8-export-import/references/progressive-03-安全-性能注意.md": "5.2.9",
335
- "v8-file-upload/SKILL.md": "5.2.9",
336
- "v8-file-upload/references/progressive-01-公有桶-vs-私有桶.md": "5.2.9",
337
- "v8-file-upload/references/progressive-02-office-文件在线编辑版本号规则.md": "5.2.9",
338
- "v8-formengine-http/SKILL.md": "5.2.9",
339
- "v8-frontend-events/SKILL.md": "5.2.9",
340
- "v8-frontend-events/references/bluetooth-print-api.md": "5.2.9",
341
- "v8-frontend-events/references/bluetooth-print.md": "5.2.9",
342
- "v8-frontend-events/references/progressive-01-列表事件.md": "5.2.9",
343
- "v8-http-integration/SKILL.md": "5.2.9",
344
- "v8-http-integration/references/progressive-01-get-请求.md": "5.2.9",
345
- "v8-http-integration/references/progressive-02-错误处理模式.md": "5.2.9",
346
- "v8-image-processing/SKILL.md": "5.2.9",
347
- "v8-image-processing/agents/openai.yaml": "5.2.9",
348
- "v8-image-processing/references/api-reference.md": "5.2.9",
349
- "v8-menu-buttons/SKILL.md": "5.2.9",
350
- "v8-menu-buttons/references/progressive-01-2-按钮对象-schema.md": "5.2.9",
351
- "v8-menu-buttons/references/progressive-02-8-模式-f-后台任务按钮-长任务.md": "5.2.9",
352
- "v8-menu-buttons/references/progressive-03-10-反模式-避免.md": "5.2.9",
353
- "v8-mongodb/SKILL.md": "5.2.9",
354
- "v8-mq-mqtt/SKILL.md": "5.2.9",
355
- "v8-mq-mqtt/references/mqtt-production.md": "5.2.9",
356
- "v8-mq-mqtt/references/progressive-01-v8-mqtt-iot-物联网.md": "5.2.9",
357
- "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "5.2.9",
358
- "v8-saas-multi-tenant/SKILL.md": "5.2.9",
359
- "v8-security/SKILL.md": "5.2.9",
360
- "v8-security/references/progressive-01-2-权限校验.md": "5.2.9",
361
- "v8-security/references/progressive-02-7-日志记录.md": "5.2.9",
362
- "v8-sql-query/SKILL.md": "5.2.9",
363
- "v8-table-event/SKILL.md": "5.2.9",
364
- "v8-table-event/references/progressive-01-informv8-js-表单打开事件.md": "5.2.9",
365
- "v8-table-event/references/progressive-02-前端事件名-v8-eventname-可能的值.md": "5.2.9",
366
- "v8-tcp-integration/SKILL.md": "5.2.9",
367
- "v8-tcp-integration/agents/openai.yaml": "5.2.9",
368
- "v8-template-engine/SKILL.md": "5.2.9",
369
- "v8-utilities/SKILL.md": "5.2.9",
370
- "v8-utilities/references/client-api-index.md": "5.2.9",
371
- "v8-utilities/references/platform-http-routes.md": "5.2.9",
372
- "v8-utilities/references/server-api-index.md": "5.2.9",
373
- "v8-workflow/SKILL.md": "5.2.9",
374
- "v8-workflow/references/progressive-01-节点开始-v8-事件.md": "5.2.9",
375
- "workspace-conventions/SKILL.md": "5.2.9",
376
- "workspace-conventions/references/progressive-01-版本更新日志保护规则-强制.md": "5.2.9",
377
- "workspace-conventions/references/progressive-02-microi-net-api-本地启动约定.md": "5.2.9",
378
- "workspace-conventions/references/progressive-03-cli-与-ide-插件错版共存约定.md": "5.2.9"
201
+ ".microi-skills-version.json": "5.3.0",
202
+ ".progressive-disclosure-manifest.json": "5.3.0",
203
+ "README.md": "5.3.0",
204
+ "ai-engine/SKILL.md": "5.3.0",
205
+ "ai-engine/agents/openai.yaml": "5.3.0",
206
+ "ai-platform-governance/SKILL.md": "5.3.0",
207
+ "ai-platform-governance/references/progressive-01-功能开关.md": "5.3.0",
208
+ "app-store/SKILL.md": "5.3.0",
209
+ "app-store/agents/openai.yaml": "5.3.0",
210
+ "business-blueprint/SKILL.md": "5.3.0",
211
+ "datasource-engine/SKILL.md": "5.3.0",
212
+ "datasource-engine/agents/openai.yaml": "5.3.0",
213
+ "dos-orm/SKILL.md": "5.3.0",
214
+ "dos-orm/references/api-reference.md": "5.3.0",
215
+ "job-engine/SKILL.md": "5.3.0",
216
+ "job-engine/agents/openai.yaml": "5.3.0",
217
+ "message-notification/SKILL.md": "5.3.0",
218
+ "message-notification/agents/openai.yaml": "5.3.0",
219
+ "message-notification/references/contracts.md": "5.3.0",
220
+ "microi-ai-app-auth.js": "5.3.0",
221
+ "microi-ai-application/SKILL.md": "5.3.0",
222
+ "microi-ai-application/agents/openai.yaml": "5.3.0",
223
+ "microi-ai-application/references/frontend-baseline.md": "5.3.0",
224
+ "microi-client-frontend/SKILL.md": "5.3.0",
225
+ "microi-client-frontend/references/progressive-01-3-动态按钮系统.md": "5.3.0",
226
+ "microi-client-frontend/references/progressive-02-8-运行时高频坑复盘.md": "5.3.0",
227
+ "microi-client-frontend/references/progressive-03-vue3-前端微服务宿主规则.md": "5.3.0",
228
+ "microi-codex-installer/SKILL.md": "5.3.0",
229
+ "microi-codex-installer/agents/openai.yaml": "5.3.0",
230
+ "microi-codex/SKILL.md": "5.3.0",
231
+ "microi-datasource-mapping/SKILL.md": "5.3.0",
232
+ "microi-db-schema/SKILL.md": "5.3.0",
233
+ "microi-db-schema/agents/openai.yaml": "5.3.0",
234
+ "microi-db-schema/references/core-tables.md": "5.3.0",
235
+ "microi-db-schema/references/form-component-options.md": "5.3.0",
236
+ "microi-db-schema/references/schema-overview.md": "5.3.0",
237
+ "microi-db-schema/references/schema.md": "5.3.0",
238
+ "microi-db-schema/references/table-catalog.md": "5.3.0",
239
+ "microi-deployment/SKILL.md": "5.3.0",
240
+ "microi-deployment/references/deployment-matrix.md": "5.3.0",
241
+ "microi-docs-coverage/SKILL.md": "5.3.0",
242
+ "microi-docs-coverage/references/capability-map.md": "5.3.0",
243
+ "microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "5.3.0",
244
+ "microi-form-engine/SKILL.md": "5.3.0",
245
+ "microi-form-engine/references/component-catalog.md": "5.3.0",
246
+ "microi-form-engine/references/data-source-events.md": "5.3.0",
247
+ "microi-form-layout/SKILL.md": "5.3.0",
248
+ "microi-form-layout/references/progressive-01-3-三种分组的存储与配置.md": "5.3.0",
249
+ "microi-frontend-sdk/SKILL.md": "5.3.0",
250
+ "microi-frontend-sdk/references/progressive-01-token-当前登录用户与当前终端登录协议.md": "5.3.0",
251
+ "microi-left-right-layout/SKILL.md": "5.3.0",
252
+ "microi-microservice/SKILL.md": "5.3.0",
253
+ "microi-microservice/references/runtime-delivery.md": "5.3.0",
254
+ "microi-mobile-app-quality/SKILL.md": "5.3.0",
255
+ "microi-mobile-app-quality/references/progressive-01-4-重要按钮必须带图标.md": "5.3.0",
256
+ "microi-mobile-app-quality/references/progressive-02-9-主题切换必须真实且全局生效.md": "5.3.0",
257
+ "microi-solution-quotation/SKILL.md": "5.3.0",
258
+ "microi-solution-quotation/agents/openai.yaml": "5.3.0",
259
+ "microi-solution-quotation/scripts/build_solution_quote.py": "5.3.0",
260
+ "microi-sso/SKILL.md": "5.3.0",
261
+ "microi-sso/references/acceptance.md": "5.3.0",
262
+ "microi-sso/references/configuration-and-security.md": "5.3.0",
263
+ "microi-sso/references/inbound.md": "5.3.0",
264
+ "microi-sso/references/outbound.md": "5.3.0",
265
+ "microi-system-delivery/SKILL.md": "5.3.0",
266
+ "microi-system-delivery/references/progressive-01-标准工作流.md": "5.3.0",
267
+ "microi-system-delivery/references/progressive-02-自动化测试必须覆盖的坑.md": "5.3.0",
268
+ "microi-ui/SKILL.md": "5.3.0",
269
+ "microi-ui/references/progressive-01-移动端场景蓝图.md": "5.3.0",
270
+ "microi-uniapp-frontend/SKILL.md": "5.3.0",
271
+ "microi-uniapp-frontend/references/progressive-01-移动端分类-双栏列表独立滚动.md": "5.3.0",
272
+ "microi-uniapp-frontend/references/progressive-02-关键业务资产不得默认选中.md": "5.3.0",
273
+ "microi.v8.js": "5.3.0",
274
+ "module-engine/SKILL.md": "5.3.0",
275
+ "module-engine/references/module-config.md": "5.3.0",
276
+ "ocr-engine/SKILL.md": "5.3.0",
277
+ "ocr-engine/agents/openai.yaml": "5.3.0",
278
+ "page-engine/SKILL.md": "5.3.0",
279
+ "page-engine/references/progressive-01-所有组件类型.md": "5.3.0",
280
+ "page-engine/references/progressive-02-版本历史-并发保存与回滚.md": "5.3.0",
281
+ "performance-testing/SKILL.md": "5.3.0",
282
+ "playwright-e2e/SKILL.md": "5.3.0",
283
+ "playwright-e2e/references/progressive-01-全自动登录-免验证码-但不免密码-必读.md": "5.3.0",
284
+ "playwright-e2e/references/progressive-02-文字对比度与可读性自动化检查-必做.md": "5.3.0",
285
+ "playwright-e2e/references/progressive-03-microi-helper-模板.md": "5.3.0",
286
+ "playwright-e2e/references/progressive-04-ci-建议.md": "5.3.0",
287
+ "print-engine/SKILL.md": "5.3.0",
288
+ "production-readonly-audit/SKILL.md": "5.3.0",
289
+ "report-engine/SKILL.md": "5.3.0",
290
+ "report-engine/agents/openai.yaml": "5.3.0",
291
+ "scripts/optimize-progressive-disclosure.mjs": "5.3.0",
292
+ "scripts/refresh-progressive-disclosure.mjs": "5.3.0",
293
+ "scripts/validate-progressive-disclosure.mjs": "5.3.0",
294
+ "search-engine/SKILL.md": "5.3.0",
295
+ "search-engine/agents/openai.yaml": "5.3.0",
296
+ "spider-engine/SKILL.md": "5.3.0",
297
+ "system-observability/SKILL.md": "5.3.0",
298
+ "translate-engine/SKILL.md": "5.3.0",
299
+ "translate-engine/agents/openai.yaml": "5.3.0",
300
+ "ui-design/SKILL.md": "5.3.0",
301
+ "ui-design/assets/pattern-showcase/app.js": "5.3.0",
302
+ "ui-design/assets/pattern-showcase/index.html": "5.3.0",
303
+ "ui-design/assets/pattern-showcase/styles.css": "5.3.0",
304
+ "ui-design/assets/templates/MCI-DESIGN.md": "5.3.0",
305
+ "ui-design/references/design-pattern-library.md": "5.3.0",
306
+ "ui-design/references/mci-design-contract.md": "5.3.0",
307
+ "ui-design/references/motion-and-media.md": "5.3.0",
308
+ "ui-design/references/product-flow-recipes.md": "5.3.0",
309
+ "ui-design/references/progressive-01-颜色体系-css-variables-支持主题切换.md": "5.3.0",
310
+ "ui-design/references/progressive-02-字体.md": "5.3.0",
311
+ "ui-design/references/progressive-03-动效规范-丰富但不卡.md": "5.3.0",
312
+ "ui-design/references/progressive-04-组件风格速查.md": "5.3.0",
313
+ "ui-design/references/progressive-05-移动端专用规范.md": "5.3.0",
314
+ "ui-design/references/progressive-06-主题切换实现.md": "5.3.0",
315
+ "ui-design/references/progressive-07-速查-从头搭建一个移动端页面.md": "5.3.0",
316
+ "ui-design/references/progressive-08-表单分组规范-tabs-vs-collapsegroup-强制.md": "5.3.0",
317
+ "uniapp-mall-assets/SKILL.md": "5.3.0",
318
+ "unity-integration/SKILL.md": "5.3.0",
319
+ "unity-integration/agents/openai.yaml": "5.3.0",
320
+ "unity-integration/references/ai-app-delivery.md": "5.3.0",
321
+ "unity-integration/references/sdk-api.md": "5.3.0",
322
+ "unity-integration/references/toolbox-migration.md": "5.3.0",
323
+ "unity-integration/references/webgl-hosting.md": "5.3.0",
324
+ "v8-api-config/SKILL.md": "5.3.0",
325
+ "v8-cache-pattern/SKILL.md": "5.3.0",
326
+ "v8-crud-api/SKILL.md": "5.3.0",
327
+ "v8-crud-api/references/progressive-01-查询列表-分页.md": "5.3.0",
328
+ "v8-crud-api/references/progressive-02-where-条件语法速查.md": "5.3.0",
329
+ "v8-debugging/SKILL.md": "5.3.0",
330
+ "v8-explorer-tree/SKILL.md": "5.3.0",
331
+ "v8-export-import/SKILL.md": "5.3.0",
332
+ "v8-export-import/references/progressive-01-excellayout-高级自由布局.md": "5.3.0",
333
+ "v8-export-import/references/progressive-02-powerpoint-导出.md": "5.3.0",
334
+ "v8-export-import/references/progressive-03-安全-性能注意.md": "5.3.0",
335
+ "v8-file-upload/SKILL.md": "5.3.0",
336
+ "v8-file-upload/references/progressive-01-公有桶-vs-私有桶.md": "5.3.0",
337
+ "v8-file-upload/references/progressive-02-office-文件在线编辑版本号规则.md": "5.3.0",
338
+ "v8-formengine-http/SKILL.md": "5.3.0",
339
+ "v8-frontend-events/SKILL.md": "5.3.0",
340
+ "v8-frontend-events/references/bluetooth-print-api.md": "5.3.0",
341
+ "v8-frontend-events/references/bluetooth-print.md": "5.3.0",
342
+ "v8-frontend-events/references/progressive-01-列表事件.md": "5.3.0",
343
+ "v8-http-integration/SKILL.md": "5.3.0",
344
+ "v8-http-integration/references/progressive-01-get-请求.md": "5.3.0",
345
+ "v8-http-integration/references/progressive-02-错误处理模式.md": "5.3.0",
346
+ "v8-image-processing/SKILL.md": "5.3.0",
347
+ "v8-image-processing/agents/openai.yaml": "5.3.0",
348
+ "v8-image-processing/references/api-reference.md": "5.3.0",
349
+ "v8-menu-buttons/SKILL.md": "5.3.0",
350
+ "v8-menu-buttons/references/progressive-01-2-按钮对象-schema.md": "5.3.0",
351
+ "v8-menu-buttons/references/progressive-02-8-模式-f-后台任务按钮-长任务.md": "5.3.0",
352
+ "v8-menu-buttons/references/progressive-03-10-反模式-避免.md": "5.3.0",
353
+ "v8-mongodb/SKILL.md": "5.3.0",
354
+ "v8-mq-mqtt/SKILL.md": "5.3.0",
355
+ "v8-mq-mqtt/references/mqtt-production.md": "5.3.0",
356
+ "v8-mq-mqtt/references/progressive-01-v8-mqtt-iot-物联网.md": "5.3.0",
357
+ "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "5.3.0",
358
+ "v8-saas-multi-tenant/SKILL.md": "5.3.0",
359
+ "v8-security/SKILL.md": "5.3.0",
360
+ "v8-security/references/progressive-01-2-权限校验.md": "5.3.0",
361
+ "v8-security/references/progressive-02-7-日志记录.md": "5.3.0",
362
+ "v8-sql-query/SKILL.md": "5.3.0",
363
+ "v8-table-event/SKILL.md": "5.3.0",
364
+ "v8-table-event/references/progressive-01-informv8-js-表单打开事件.md": "5.3.0",
365
+ "v8-table-event/references/progressive-02-前端事件名-v8-eventname-可能的值.md": "5.3.0",
366
+ "v8-tcp-integration/SKILL.md": "5.3.0",
367
+ "v8-tcp-integration/agents/openai.yaml": "5.3.0",
368
+ "v8-template-engine/SKILL.md": "5.3.0",
369
+ "v8-utilities/SKILL.md": "5.3.0",
370
+ "v8-utilities/references/client-api-index.md": "5.3.0",
371
+ "v8-utilities/references/platform-http-routes.md": "5.3.0",
372
+ "v8-utilities/references/server-api-index.md": "5.3.0",
373
+ "v8-workflow/SKILL.md": "5.3.0",
374
+ "v8-workflow/references/progressive-01-节点开始-v8-事件.md": "5.3.0",
375
+ "workspace-conventions/SKILL.md": "5.3.0",
376
+ "workspace-conventions/references/progressive-01-版本更新日志保护规则-强制.md": "5.3.0",
377
+ "workspace-conventions/references/progressive-02-microi-net-api-本地启动约定.md": "5.3.0",
378
+ "workspace-conventions/references/progressive-03-cli-与-ide-插件错版共存约定.md": "5.3.0"
379
379
  },
380
380
  "files": [
381
381
  ".microi-skills-version.json",
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "5.2.9",
2
+ "version": "5.3.0",
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-25T02:17:40.843Z"
5
+ "updatedAt": "2026-08-25T07:16:27.002Z"
6
6
  }
@@ -109,8 +109,8 @@ var result = V8.MongoDb.GetFormData({
109
109
 
110
110
  ```javascript
111
111
  var result = V8.MongoDb.GetTableData({
112
- DbName: 'sys_log_2024',
113
- TableName: 'log_2024_12',
112
+ DbName: 'sys_log_2024',
113
+ TableName: 'log_2024_12',
114
114
  _Where: [
115
115
  ['Type', '=', '访问菜单'],
116
116
  ['OR', 'Type', '=', '点击V8按钮']
@@ -120,9 +120,11 @@ var result = V8.MongoDb.GetTableData({
120
120
  _PageIndex: 1,
121
121
  _PageSize: 20
122
122
  });
123
- ```
124
-
125
- ## 实战模式
123
+ ```
124
+
125
+ `GetFormData` 和 `GetTableData` 属于 dynamic 无模式读取。服务端会在 MongoDB 投影阶段过滤 BSON 内部 `_t` CLR 类型判别字段,避免存量强类型 C# 写入留下的旧类型名称触发反序列化失败。`_t` 不是 V8 业务契约;业务需要类型标记时应使用自有字段(例如 `DocumentType`),不得读取、筛选或依赖 `_t`。强类型 C# MongoDB 模型仍按自身的多态映射处理。
126
+
127
+ ## 实战模式
126
128
 
127
129
  ### IoT 设备日志存储
128
130