@microi.net/cli 5.1.7 → 5.1.9

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.1.7",
8
+ "version": "5.1.9",
9
9
  "plugins": [
10
10
  {
11
11
  "name": "microi",
12
12
  "source": ".",
13
13
  "description": "Microi吾码 AI 开发插件:服务器连接、Skills、MCP、V8 全量同步与低代码交付",
14
- "version": "5.1.7",
14
+ "version": "5.1.9",
15
15
  "strict": true
16
16
  }
17
17
  ]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microi",
3
- "version": "5.1.7",
3
+ "version": "5.1.9",
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.1.7",
3
+ "version": "5.1.9",
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.1.7",
8
+ "version": "5.1.9",
9
9
  "plugins": [
10
10
  {
11
11
  "name": "microi",
12
12
  "source": ".",
13
13
  "description": "Microi吾码 AI 开发插件:服务器连接、Skills、MCP、V8 全量同步与低代码交付",
14
- "version": "5.1.7",
14
+ "version": "5.1.9",
15
15
  "strict": true
16
16
  }
17
17
  ]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microi",
3
- "version": "5.1.7",
3
+ "version": "5.1.9",
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-20T04:15:20.632Z",
3
- "version": "5.1.7",
2
+ "builtAt": "2026-08-20T18:19:05.181Z",
3
+ "version": "5.1.9",
4
4
  "sourceProducts": [
5
5
  "vscode-extension",
6
6
  "microi-cli",
@@ -13,6 +13,6 @@
13
13
  "cli": "05799e65bf90686936f519cd822cceb1dea0200fd2509904d50f870e6302ddc1",
14
14
  "router": "ffc14787fc2d3d6173b7a779b77139b759eb1d482cea787f71283f4017a4e223",
15
15
  "broker": "42a9d89ad7b960a324da949939ef46266aa66e21068e6fbfd040cecc58b7c956",
16
- "dshBundle": "dd4f9f77ed95a6c3bdbb90755441790670fba0aa11c17de65f0b7d48e2b14018"
16
+ "dshBundle": "1901ff9bdc19b16d6b9c5fe786216733e575a37b43c8d21d9a4d9b4f71605acb"
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.1.7';\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.1.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"]
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.1.7",
3
+ "version": "5.1.9",
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-20T04:15:19.369Z",
2
+ "builtAt": "2026-08-20T18:19:04.139Z",
3
3
  "source": "../microi.skills",
4
4
  "extension": {
5
5
  "name": "v8-engine",
6
- "version": "5.1.7",
6
+ "version": "5.1.9",
7
7
  "publisher": "Microi"
8
8
  },
9
9
  "skills": {
10
- "version": "5.1.7",
10
+ "version": "5.1.9",
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,17 +15,17 @@
15
15
  "dir": "dist/microi.skills",
16
16
  "files": 172,
17
17
  "skills": 63,
18
- "bytes": 2115354
18
+ "bytes": 2124582
19
19
  },
20
20
  "fileHashes": {
21
- ".microi-skills-version.json": "f530e2f301cf21829f6640ff17ec71773d9c67f096007bd554ff785ec09e7199",
22
- ".progressive-disclosure-manifest.json": "e888f96322802591ec2c7ef89fed0447103d3c52a836bd060f29070405d48412",
21
+ ".microi-skills-version.json": "458a24d78a9639804c8bc1ef523ddf6ba8fdd89c9cf751191668765f8c511369",
22
+ ".progressive-disclosure-manifest.json": "16e92f480694c5c06859043fb2b4b09d37e5ee62a09ca42e18220e62bb624011",
23
23
  "README.md": "e4c36c39515953ac1953622f19671d2c377a8828aae20f877bdd39ab1dcb0cb1",
24
- "ai-engine/SKILL.md": "a9d3b152c6d8ca03bfa37669d4e81cf33c7361f3105165e40cb357f1b23b2bfb",
24
+ "ai-engine/SKILL.md": "0d91e157454569003b216ee4e6efa8b161dd7409788c4cae9f10f212531badc3",
25
25
  "ai-engine/agents/openai.yaml": "40deb07801006a46b9a7f0020d13251955eeadd04c8e591160210479936f8b5b",
26
26
  "ai-platform-governance/SKILL.md": "84ca4bcacf15deecd0c04dc1a664b23041a6a5f020d3a5288c5458b5e7da4b8e",
27
27
  "ai-platform-governance/references/progressive-01-功能开关.md": "ea46fb02267e9e3ace3d9d72e67b02183c61e5c198f4b2f27e8196d6ee6d0bec",
28
- "app-store/SKILL.md": "03829703a45067fdadb564aca9056777deddbbed49be001f886d38478bf1932d",
28
+ "app-store/SKILL.md": "df930745292d46fb58bacd1c1a4b1e16e2ca488fdef21e8c5ae16df31cb5dd31",
29
29
  "app-store/agents/openai.yaml": "eda8f5cf043e7b8fb0e4fb3acf0625fef95eb49586b43187ced277cd0ae4a2c4",
30
30
  "business-blueprint/SKILL.md": "01619a3b6d37b5b67649ee59d2701301222006d3b943882b2802b1721c58f8a9",
31
31
  "datasource-engine/SKILL.md": "bed8352f1d43b55145e1c492d1ea0ca1ec8750b5c4d74e1e80cd71aa7b9a2e6f",
@@ -64,9 +64,9 @@
64
64
  "microi-form-engine/SKILL.md": "071314e05697624617989c9864e02f0dec370c21087092580a3d4bd4b039ceb5",
65
65
  "microi-form-engine/references/component-catalog.md": "d5c433e0c9eb393b3ba8fec9d29ae1478b8b9f838f5c4ae0c74d0c49941d1dec",
66
66
  "microi-form-engine/references/data-source-events.md": "59a95a36624476b12cdc84e4c23975d074b1f115df19992fd0fd075bb982e7cb",
67
- "microi-form-layout/SKILL.md": "3970f25e1bee69ab048af13456853ff4f1d63430fbbcc6c01b52c46d6e0251ed",
67
+ "microi-form-layout/SKILL.md": "a37abd1b5b22c51aa6dd63cc0669e505a121632c9aa1559f59ec9c1557890f40",
68
68
  "microi-form-layout/references/progressive-01-3-三种分组的存储与配置.md": "b72f79f9cf7635d0add29aa954c9dc0d333a62f45ee1d6113fbd7ee250b26965",
69
- "microi-frontend-sdk/SKILL.md": "010e5e10a0cbe47a450cb6e4a699b8b26605f23f340adf9d86c66fb2fbef2f7f",
69
+ "microi-frontend-sdk/SKILL.md": "828edf7b6a08cde37e13aeee0f9eb4042dc74e10b62ef80c87649ccb6231139a",
70
70
  "microi-frontend-sdk/references/progressive-01-token-当前登录用户与当前终端登录协议.md": "fdcc7aca57eaf7d0fa509dc28ef96abeb1099ed4da1e48411b4bb476d9f51390",
71
71
  "microi-left-right-layout/SKILL.md": "694ea4e599549deb74ea10612100c9e9722cbdabc7f161ab9c917c7254625cee",
72
72
  "microi-microservice/SKILL.md": "4abbe1608a10280f13a11a34c380ca46d76df09c9b35a57f29d5345d21450c59",
@@ -85,9 +85,9 @@
85
85
  "microi-uniapp-frontend/SKILL.md": "506e263d0b762d305bb16f51022772d2d6f03c424d148c611c63ae0fd0a1e5e9",
86
86
  "microi-uniapp-frontend/references/progressive-01-移动端分类-双栏列表独立滚动.md": "44df3c20120298f6565cf4388eadca70d98d097880c61168ce6d3ac03e80968b",
87
87
  "microi-uniapp-frontend/references/progressive-02-关键业务资产不得默认选中.md": "31a0a12e39ec785df038fb5c73d4978d6dec42d86c52b79e91082c9ac13f29cf",
88
- "microi.v8.js": "25ff9e9aca3ff5167a1f3f06e262e3389a6d732cb12b9a3ddb4f218fb331ef53",
89
- "module-engine/SKILL.md": "2ed0766381b21601aa6f8a0597492d67bc494934d1dfffa628ab16b647aef4b4",
90
- "module-engine/references/module-config.md": "fc9a5104d1a99774c9455c92a1277d7ae15851fe917ef7aa6162ffb73debd05a",
88
+ "microi.v8.js": "4e5b7bb819255159a3d7a9555af662618162e31ec41cb3b67b3d7cc01635c9ec",
89
+ "module-engine/SKILL.md": "b29b55848d8bf8d5e4fcac446df7fe8377f4fbeefcd88cb77e619f49e0f052d6",
90
+ "module-engine/references/module-config.md": "6701d2f49f3715077741bd882dbf27fcd4e2bf319a32fc7cae181639f2935b99",
91
91
  "ocr-engine/SKILL.md": "239fed8ba28c0178fbbcc4c3dc8d4f3b8b8cf1d2b794db2014c2600ea7835da6",
92
92
  "ocr-engine/agents/openai.yaml": "3a6cc9984a246c41332c5f53d1badef31b78f81324333ea0d6337cb20c7fc898",
93
93
  "page-engine/SKILL.md": "294028ac521da715889699d3aba5fc273305c5825be844a0d795284890529445",
@@ -111,7 +111,7 @@
111
111
  "spider-engine/SKILL.md": "e24018f7ab2a07706a70bb592adb7a2f91f0a66e3f9bc944593e18731c53d77e",
112
112
  "translate-engine/SKILL.md": "8f4c49d49049dfc0ed5e0a792b35a2c2490e2279a4e3be90f29309a4e55a9d53",
113
113
  "translate-engine/agents/openai.yaml": "8eb47e08a691219bbe22a797ddbdf73234ec77f86e5724bc735fb0738d899112",
114
- "ui-design/SKILL.md": "408ed010f9a15aa27da71a60db1565e60e39f620cfec7e305ca7b073d25da864",
114
+ "ui-design/SKILL.md": "aa50bb8366abdbc98e67ddb5b4d9f7ae97b650dd55ac7cd040c56da6a5d0c450",
115
115
  "ui-design/assets/pattern-showcase/app.js": "68a8d404c30096da853c6edbc7cb27f336982147ddfebccd66c03ba3d99427cd",
116
116
  "ui-design/assets/pattern-showcase/index.html": "242f94772a5f14e38296f1e925f30a9a5fef2103975831cbd47861a3fc14d5bc",
117
117
  "ui-design/assets/pattern-showcase/styles.css": "77c34ddae0dd9c665c8774dc6def4bd8f4f5ed02470d4343d116ed141c87eccb",
@@ -170,7 +170,7 @@
170
170
  "v8-mq-mqtt/references/progressive-01-v8-mqtt-iot-物联网.md": "842c74bd8bc30b932346e34c0d4154edffc1bf6a5a8aaafaaa344f250394762c",
171
171
  "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "e9f981e17e3d93d64aeeeb1bbc80a0eb680414e17782d43bfc7c1db676063dd0",
172
172
  "v8-saas-multi-tenant/SKILL.md": "f3f4e7b0ce320eb72a62bce3666cd7420a17d477c4d6a5dd29d7cef7a61cfb0e",
173
- "v8-security/SKILL.md": "d0a235ea135da81111456c7d6b737589d2f8d0daaa67323de2b94f31ebd46758",
173
+ "v8-security/SKILL.md": "61bcd71e6b5db1a3ee4aa59b2513f3e5b98184c7a59e7978bf8d90669d7e80e8",
174
174
  "v8-security/references/progressive-01-2-权限校验.md": "a7e2314b8f2f9bf413956191ffeda6d2f823760def2b06bf6b4c1565e8f71816",
175
175
  "v8-security/references/progressive-02-7-日志记录.md": "2758de279da56e90587df8422e25a1ccfce5c3bdc1f1c363a90c666b6c3f298a",
176
176
  "v8-sql-query/SKILL.md": "23a12c6801627890d18ff9f1d09cdd1abbd9b08ffc12ef6a12c915d504ed3255",
@@ -183,7 +183,7 @@
183
183
  "v8-utilities/SKILL.md": "8313a3e0e0c5f7a29cb22231b751a52107e3efa3b790e994343e54807fcb7285",
184
184
  "v8-utilities/references/client-api-index.md": "3362126197bd34191640d6bd532b16f1ed446c4a8a9d805f4973be5d58b90a4a",
185
185
  "v8-utilities/references/platform-http-routes.md": "87579eef4e89b4c80e1757ad34ec951e0ccadb6bd15aab4f3ab247f55d5f1cd5",
186
- "v8-utilities/references/server-api-index.md": "c5b9fc297f066e1c48ae2cf7de042afe4d7d41ff60faa93c67020bb95a011d75",
186
+ "v8-utilities/references/server-api-index.md": "a7f8872cb06ef9c145eae3646af25e7c2fb9bf017ea5c3dbd56d25e541f42d0f",
187
187
  "v8-workflow/SKILL.md": "f6dc87709362c3f8305a03d0b9b73e16a5ded601a509e8d5191b1141b0a72175",
188
188
  "v8-workflow/references/progressive-01-节点开始-v8-事件.md": "9b6b01e7ac03c0a11bc837671a30107ff5c5f253029d74fd17713084104d7e99",
189
189
  "workspace-conventions/SKILL.md": "cd64538477676d2b72c1a447b04143905e1f2bf06d293e771d1690f4e9d4962d",
@@ -192,178 +192,178 @@
192
192
  "workspace-conventions/references/progressive-03-cli-与-ide-插件错版共存约定.md": "86db1f03700fd54dd824d28c553c678202e8f74b796fd0f9d91f63bf53a530b1"
193
193
  },
194
194
  "fileVersions": {
195
- ".microi-skills-version.json": "5.1.7",
196
- ".progressive-disclosure-manifest.json": "5.1.7",
197
- "README.md": "5.1.7",
198
- "ai-engine/SKILL.md": "5.1.7",
199
- "ai-engine/agents/openai.yaml": "5.1.7",
200
- "ai-platform-governance/SKILL.md": "5.1.7",
201
- "ai-platform-governance/references/progressive-01-功能开关.md": "5.1.7",
202
- "app-store/SKILL.md": "5.1.7",
203
- "app-store/agents/openai.yaml": "5.1.7",
204
- "business-blueprint/SKILL.md": "5.1.7",
205
- "datasource-engine/SKILL.md": "5.1.7",
206
- "datasource-engine/agents/openai.yaml": "5.1.7",
207
- "dos-orm/SKILL.md": "5.1.7",
208
- "dos-orm/references/api-reference.md": "5.1.7",
209
- "job-engine/SKILL.md": "5.1.7",
210
- "job-engine/agents/openai.yaml": "5.1.7",
211
- "message-notification/SKILL.md": "5.1.7",
212
- "message-notification/agents/openai.yaml": "5.1.7",
213
- "message-notification/references/contracts.md": "5.1.7",
214
- "microi-ai-app-auth.js": "5.1.7",
215
- "microi-ai-application/SKILL.md": "5.1.7",
216
- "microi-ai-application/agents/openai.yaml": "5.1.7",
217
- "microi-ai-application/references/frontend-baseline.md": "5.1.7",
218
- "microi-client-frontend/SKILL.md": "5.1.7",
219
- "microi-client-frontend/references/progressive-01-3-动态按钮系统.md": "5.1.7",
220
- "microi-client-frontend/references/progressive-02-8-运行时高频坑复盘.md": "5.1.7",
221
- "microi-client-frontend/references/progressive-03-vue3-前端微服务宿主规则.md": "5.1.7",
222
- "microi-codex-installer/SKILL.md": "5.1.7",
223
- "microi-codex-installer/agents/openai.yaml": "5.1.7",
224
- "microi-codex/SKILL.md": "5.1.7",
225
- "microi-datasource-mapping/SKILL.md": "5.1.7",
226
- "microi-db-schema/SKILL.md": "5.1.7",
227
- "microi-db-schema/agents/openai.yaml": "5.1.7",
228
- "microi-db-schema/references/core-tables.md": "5.1.7",
229
- "microi-db-schema/references/form-component-options.md": "5.1.7",
230
- "microi-db-schema/references/schema-overview.md": "5.1.7",
231
- "microi-db-schema/references/schema.md": "5.1.7",
232
- "microi-db-schema/references/table-catalog.md": "5.1.7",
233
- "microi-deployment/SKILL.md": "5.1.7",
234
- "microi-deployment/references/deployment-matrix.md": "5.1.7",
235
- "microi-docs-coverage/SKILL.md": "5.1.7",
236
- "microi-docs-coverage/references/capability-map.md": "5.1.7",
237
- "microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "5.1.7",
238
- "microi-form-engine/SKILL.md": "5.1.7",
239
- "microi-form-engine/references/component-catalog.md": "5.1.7",
240
- "microi-form-engine/references/data-source-events.md": "5.1.7",
241
- "microi-form-layout/SKILL.md": "5.1.7",
242
- "microi-form-layout/references/progressive-01-3-三种分组的存储与配置.md": "5.1.7",
243
- "microi-frontend-sdk/SKILL.md": "5.1.7",
244
- "microi-frontend-sdk/references/progressive-01-token-当前登录用户与当前终端登录协议.md": "5.1.7",
245
- "microi-left-right-layout/SKILL.md": "5.1.7",
246
- "microi-microservice/SKILL.md": "5.1.7",
247
- "microi-microservice/references/runtime-delivery.md": "5.1.7",
248
- "microi-mobile-app-quality/SKILL.md": "5.1.7",
249
- "microi-mobile-app-quality/references/progressive-01-4-重要按钮必须带图标.md": "5.1.7",
250
- "microi-mobile-app-quality/references/progressive-02-9-主题切换必须真实且全局生效.md": "5.1.7",
251
- "microi-solution-quotation/SKILL.md": "5.1.7",
252
- "microi-solution-quotation/agents/openai.yaml": "5.1.7",
253
- "microi-solution-quotation/scripts/build_solution_quote.py": "5.1.7",
254
- "microi-system-delivery/SKILL.md": "5.1.7",
255
- "microi-system-delivery/references/progressive-01-标准工作流.md": "5.1.7",
256
- "microi-system-delivery/references/progressive-02-自动化测试必须覆盖的坑.md": "5.1.7",
257
- "microi-ui/SKILL.md": "5.1.7",
258
- "microi-ui/references/progressive-01-移动端场景蓝图.md": "5.1.7",
259
- "microi-uniapp-frontend/SKILL.md": "5.1.7",
260
- "microi-uniapp-frontend/references/progressive-01-移动端分类-双栏列表独立滚动.md": "5.1.7",
261
- "microi-uniapp-frontend/references/progressive-02-关键业务资产不得默认选中.md": "5.1.7",
262
- "microi.v8.js": "5.1.7",
263
- "module-engine/SKILL.md": "5.1.7",
264
- "module-engine/references/module-config.md": "5.1.7",
265
- "ocr-engine/SKILL.md": "5.1.7",
266
- "ocr-engine/agents/openai.yaml": "5.1.7",
267
- "page-engine/SKILL.md": "5.1.7",
268
- "page-engine/references/progressive-01-所有组件类型.md": "5.1.7",
269
- "page-engine/references/progressive-02-版本历史-并发保存与回滚.md": "5.1.7",
270
- "performance-testing/SKILL.md": "5.1.7",
271
- "playwright-e2e/SKILL.md": "5.1.7",
272
- "playwright-e2e/references/progressive-01-全自动登录-免验证码-但不免密码-必读.md": "5.1.7",
273
- "playwright-e2e/references/progressive-02-文字对比度与可读性自动化检查-必做.md": "5.1.7",
274
- "playwright-e2e/references/progressive-03-microi-helper-模板.md": "5.1.7",
275
- "playwright-e2e/references/progressive-04-ci-建议.md": "5.1.7",
276
- "print-engine/SKILL.md": "5.1.7",
277
- "production-readonly-audit/SKILL.md": "5.1.7",
278
- "report-engine/SKILL.md": "5.1.7",
279
- "report-engine/agents/openai.yaml": "5.1.7",
280
- "scripts/optimize-progressive-disclosure.mjs": "5.1.7",
281
- "scripts/refresh-progressive-disclosure.mjs": "5.1.7",
282
- "scripts/validate-progressive-disclosure.mjs": "5.1.7",
283
- "search-engine/SKILL.md": "5.1.7",
284
- "search-engine/agents/openai.yaml": "5.1.7",
285
- "spider-engine/SKILL.md": "5.1.7",
286
- "translate-engine/SKILL.md": "5.1.7",
287
- "translate-engine/agents/openai.yaml": "5.1.7",
288
- "ui-design/SKILL.md": "5.1.7",
289
- "ui-design/assets/pattern-showcase/app.js": "5.1.7",
290
- "ui-design/assets/pattern-showcase/index.html": "5.1.7",
291
- "ui-design/assets/pattern-showcase/styles.css": "5.1.7",
292
- "ui-design/assets/templates/MCI-DESIGN.md": "5.1.7",
293
- "ui-design/references/design-pattern-library.md": "5.1.7",
294
- "ui-design/references/mci-design-contract.md": "5.1.7",
295
- "ui-design/references/motion-and-media.md": "5.1.7",
296
- "ui-design/references/product-flow-recipes.md": "5.1.7",
297
- "ui-design/references/progressive-01-颜色体系-css-variables-支持主题切换.md": "5.1.7",
298
- "ui-design/references/progressive-02-字体.md": "5.1.7",
299
- "ui-design/references/progressive-03-动效规范-丰富但不卡.md": "5.1.7",
300
- "ui-design/references/progressive-04-组件风格速查.md": "5.1.7",
301
- "ui-design/references/progressive-05-移动端专用规范.md": "5.1.7",
302
- "ui-design/references/progressive-06-主题切换实现.md": "5.1.7",
303
- "ui-design/references/progressive-07-速查-从头搭建一个移动端页面.md": "5.1.7",
304
- "ui-design/references/progressive-08-表单分组规范-tabs-vs-collapsegroup-强制.md": "5.1.7",
305
- "uniapp-mall-assets/SKILL.md": "5.1.7",
306
- "unity-integration/SKILL.md": "5.1.7",
307
- "unity-integration/agents/openai.yaml": "5.1.7",
308
- "unity-integration/references/ai-app-delivery.md": "5.1.7",
309
- "unity-integration/references/sdk-api.md": "5.1.7",
310
- "unity-integration/references/toolbox-migration.md": "5.1.7",
311
- "unity-integration/references/webgl-hosting.md": "5.1.7",
312
- "v8-api-config/SKILL.md": "5.1.7",
313
- "v8-cache-pattern/SKILL.md": "5.1.7",
314
- "v8-crud-api/SKILL.md": "5.1.7",
315
- "v8-crud-api/references/progressive-01-查询列表-分页.md": "5.1.7",
316
- "v8-crud-api/references/progressive-02-where-条件语法速查.md": "5.1.7",
317
- "v8-debugging/SKILL.md": "5.1.7",
318
- "v8-explorer-tree/SKILL.md": "5.1.7",
319
- "v8-export-import/SKILL.md": "5.1.7",
320
- "v8-export-import/references/progressive-01-excellayout-高级自由布局.md": "5.1.7",
321
- "v8-export-import/references/progressive-02-powerpoint-导出.md": "5.1.7",
322
- "v8-export-import/references/progressive-03-安全-性能注意.md": "5.1.7",
323
- "v8-file-upload/SKILL.md": "5.1.7",
324
- "v8-file-upload/references/progressive-01-公有桶-vs-私有桶.md": "5.1.7",
325
- "v8-file-upload/references/progressive-02-office-文件在线编辑版本号规则.md": "5.1.7",
326
- "v8-formengine-http/SKILL.md": "5.1.7",
327
- "v8-frontend-events/SKILL.md": "5.1.7",
328
- "v8-frontend-events/references/bluetooth-print-api.md": "5.1.7",
329
- "v8-frontend-events/references/bluetooth-print.md": "5.1.7",
330
- "v8-frontend-events/references/progressive-01-列表事件.md": "5.1.7",
331
- "v8-http-integration/SKILL.md": "5.1.7",
332
- "v8-http-integration/references/progressive-01-get-请求.md": "5.1.7",
333
- "v8-http-integration/references/progressive-02-错误处理模式.md": "5.1.7",
334
- "v8-image-processing/SKILL.md": "5.1.7",
335
- "v8-image-processing/agents/openai.yaml": "5.1.7",
336
- "v8-image-processing/references/api-reference.md": "5.1.7",
337
- "v8-menu-buttons/SKILL.md": "5.1.7",
338
- "v8-menu-buttons/references/progressive-01-2-按钮对象-schema.md": "5.1.7",
339
- "v8-menu-buttons/references/progressive-02-8-模式-f-后台任务按钮-长任务.md": "5.1.7",
340
- "v8-menu-buttons/references/progressive-03-10-反模式-避免.md": "5.1.7",
341
- "v8-mongodb/SKILL.md": "5.1.7",
342
- "v8-mq-mqtt/SKILL.md": "5.1.7",
343
- "v8-mq-mqtt/references/mqtt-production.md": "5.1.7",
344
- "v8-mq-mqtt/references/progressive-01-v8-mqtt-iot-物联网.md": "5.1.7",
345
- "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "5.1.7",
346
- "v8-saas-multi-tenant/SKILL.md": "5.1.7",
347
- "v8-security/SKILL.md": "5.1.7",
348
- "v8-security/references/progressive-01-2-权限校验.md": "5.1.7",
349
- "v8-security/references/progressive-02-7-日志记录.md": "5.1.7",
350
- "v8-sql-query/SKILL.md": "5.1.7",
351
- "v8-table-event/SKILL.md": "5.1.7",
352
- "v8-table-event/references/progressive-01-informv8-js-表单打开事件.md": "5.1.7",
353
- "v8-table-event/references/progressive-02-前端事件名-v8-eventname-可能的值.md": "5.1.7",
354
- "v8-tcp-integration/SKILL.md": "5.1.7",
355
- "v8-tcp-integration/agents/openai.yaml": "5.1.7",
356
- "v8-template-engine/SKILL.md": "5.1.7",
357
- "v8-utilities/SKILL.md": "5.1.7",
358
- "v8-utilities/references/client-api-index.md": "5.1.7",
359
- "v8-utilities/references/platform-http-routes.md": "5.1.7",
360
- "v8-utilities/references/server-api-index.md": "5.1.7",
361
- "v8-workflow/SKILL.md": "5.1.7",
362
- "v8-workflow/references/progressive-01-节点开始-v8-事件.md": "5.1.7",
363
- "workspace-conventions/SKILL.md": "5.1.7",
364
- "workspace-conventions/references/progressive-01-版本更新日志保护规则-强制.md": "5.1.7",
365
- "workspace-conventions/references/progressive-02-microi-net-api-本地启动约定.md": "5.1.7",
366
- "workspace-conventions/references/progressive-03-cli-与-ide-插件错版共存约定.md": "5.1.7"
195
+ ".microi-skills-version.json": "5.1.9",
196
+ ".progressive-disclosure-manifest.json": "5.1.9",
197
+ "README.md": "5.1.9",
198
+ "ai-engine/SKILL.md": "5.1.9",
199
+ "ai-engine/agents/openai.yaml": "5.1.9",
200
+ "ai-platform-governance/SKILL.md": "5.1.9",
201
+ "ai-platform-governance/references/progressive-01-功能开关.md": "5.1.9",
202
+ "app-store/SKILL.md": "5.1.9",
203
+ "app-store/agents/openai.yaml": "5.1.9",
204
+ "business-blueprint/SKILL.md": "5.1.9",
205
+ "datasource-engine/SKILL.md": "5.1.9",
206
+ "datasource-engine/agents/openai.yaml": "5.1.9",
207
+ "dos-orm/SKILL.md": "5.1.9",
208
+ "dos-orm/references/api-reference.md": "5.1.9",
209
+ "job-engine/SKILL.md": "5.1.9",
210
+ "job-engine/agents/openai.yaml": "5.1.9",
211
+ "message-notification/SKILL.md": "5.1.9",
212
+ "message-notification/agents/openai.yaml": "5.1.9",
213
+ "message-notification/references/contracts.md": "5.1.9",
214
+ "microi-ai-app-auth.js": "5.1.9",
215
+ "microi-ai-application/SKILL.md": "5.1.9",
216
+ "microi-ai-application/agents/openai.yaml": "5.1.9",
217
+ "microi-ai-application/references/frontend-baseline.md": "5.1.9",
218
+ "microi-client-frontend/SKILL.md": "5.1.9",
219
+ "microi-client-frontend/references/progressive-01-3-动态按钮系统.md": "5.1.9",
220
+ "microi-client-frontend/references/progressive-02-8-运行时高频坑复盘.md": "5.1.9",
221
+ "microi-client-frontend/references/progressive-03-vue3-前端微服务宿主规则.md": "5.1.9",
222
+ "microi-codex-installer/SKILL.md": "5.1.9",
223
+ "microi-codex-installer/agents/openai.yaml": "5.1.9",
224
+ "microi-codex/SKILL.md": "5.1.9",
225
+ "microi-datasource-mapping/SKILL.md": "5.1.9",
226
+ "microi-db-schema/SKILL.md": "5.1.9",
227
+ "microi-db-schema/agents/openai.yaml": "5.1.9",
228
+ "microi-db-schema/references/core-tables.md": "5.1.9",
229
+ "microi-db-schema/references/form-component-options.md": "5.1.9",
230
+ "microi-db-schema/references/schema-overview.md": "5.1.9",
231
+ "microi-db-schema/references/schema.md": "5.1.9",
232
+ "microi-db-schema/references/table-catalog.md": "5.1.9",
233
+ "microi-deployment/SKILL.md": "5.1.9",
234
+ "microi-deployment/references/deployment-matrix.md": "5.1.9",
235
+ "microi-docs-coverage/SKILL.md": "5.1.9",
236
+ "microi-docs-coverage/references/capability-map.md": "5.1.9",
237
+ "microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "5.1.9",
238
+ "microi-form-engine/SKILL.md": "5.1.9",
239
+ "microi-form-engine/references/component-catalog.md": "5.1.9",
240
+ "microi-form-engine/references/data-source-events.md": "5.1.9",
241
+ "microi-form-layout/SKILL.md": "5.1.9",
242
+ "microi-form-layout/references/progressive-01-3-三种分组的存储与配置.md": "5.1.9",
243
+ "microi-frontend-sdk/SKILL.md": "5.1.9",
244
+ "microi-frontend-sdk/references/progressive-01-token-当前登录用户与当前终端登录协议.md": "5.1.9",
245
+ "microi-left-right-layout/SKILL.md": "5.1.9",
246
+ "microi-microservice/SKILL.md": "5.1.9",
247
+ "microi-microservice/references/runtime-delivery.md": "5.1.9",
248
+ "microi-mobile-app-quality/SKILL.md": "5.1.9",
249
+ "microi-mobile-app-quality/references/progressive-01-4-重要按钮必须带图标.md": "5.1.9",
250
+ "microi-mobile-app-quality/references/progressive-02-9-主题切换必须真实且全局生效.md": "5.1.9",
251
+ "microi-solution-quotation/SKILL.md": "5.1.9",
252
+ "microi-solution-quotation/agents/openai.yaml": "5.1.9",
253
+ "microi-solution-quotation/scripts/build_solution_quote.py": "5.1.9",
254
+ "microi-system-delivery/SKILL.md": "5.1.9",
255
+ "microi-system-delivery/references/progressive-01-标准工作流.md": "5.1.9",
256
+ "microi-system-delivery/references/progressive-02-自动化测试必须覆盖的坑.md": "5.1.9",
257
+ "microi-ui/SKILL.md": "5.1.9",
258
+ "microi-ui/references/progressive-01-移动端场景蓝图.md": "5.1.9",
259
+ "microi-uniapp-frontend/SKILL.md": "5.1.9",
260
+ "microi-uniapp-frontend/references/progressive-01-移动端分类-双栏列表独立滚动.md": "5.1.9",
261
+ "microi-uniapp-frontend/references/progressive-02-关键业务资产不得默认选中.md": "5.1.9",
262
+ "microi.v8.js": "5.1.9",
263
+ "module-engine/SKILL.md": "5.1.9",
264
+ "module-engine/references/module-config.md": "5.1.9",
265
+ "ocr-engine/SKILL.md": "5.1.9",
266
+ "ocr-engine/agents/openai.yaml": "5.1.9",
267
+ "page-engine/SKILL.md": "5.1.9",
268
+ "page-engine/references/progressive-01-所有组件类型.md": "5.1.9",
269
+ "page-engine/references/progressive-02-版本历史-并发保存与回滚.md": "5.1.9",
270
+ "performance-testing/SKILL.md": "5.1.9",
271
+ "playwright-e2e/SKILL.md": "5.1.9",
272
+ "playwright-e2e/references/progressive-01-全自动登录-免验证码-但不免密码-必读.md": "5.1.9",
273
+ "playwright-e2e/references/progressive-02-文字对比度与可读性自动化检查-必做.md": "5.1.9",
274
+ "playwright-e2e/references/progressive-03-microi-helper-模板.md": "5.1.9",
275
+ "playwright-e2e/references/progressive-04-ci-建议.md": "5.1.9",
276
+ "print-engine/SKILL.md": "5.1.9",
277
+ "production-readonly-audit/SKILL.md": "5.1.9",
278
+ "report-engine/SKILL.md": "5.1.9",
279
+ "report-engine/agents/openai.yaml": "5.1.9",
280
+ "scripts/optimize-progressive-disclosure.mjs": "5.1.9",
281
+ "scripts/refresh-progressive-disclosure.mjs": "5.1.9",
282
+ "scripts/validate-progressive-disclosure.mjs": "5.1.9",
283
+ "search-engine/SKILL.md": "5.1.9",
284
+ "search-engine/agents/openai.yaml": "5.1.9",
285
+ "spider-engine/SKILL.md": "5.1.9",
286
+ "translate-engine/SKILL.md": "5.1.9",
287
+ "translate-engine/agents/openai.yaml": "5.1.9",
288
+ "ui-design/SKILL.md": "5.1.9",
289
+ "ui-design/assets/pattern-showcase/app.js": "5.1.9",
290
+ "ui-design/assets/pattern-showcase/index.html": "5.1.9",
291
+ "ui-design/assets/pattern-showcase/styles.css": "5.1.9",
292
+ "ui-design/assets/templates/MCI-DESIGN.md": "5.1.9",
293
+ "ui-design/references/design-pattern-library.md": "5.1.9",
294
+ "ui-design/references/mci-design-contract.md": "5.1.9",
295
+ "ui-design/references/motion-and-media.md": "5.1.9",
296
+ "ui-design/references/product-flow-recipes.md": "5.1.9",
297
+ "ui-design/references/progressive-01-颜色体系-css-variables-支持主题切换.md": "5.1.9",
298
+ "ui-design/references/progressive-02-字体.md": "5.1.9",
299
+ "ui-design/references/progressive-03-动效规范-丰富但不卡.md": "5.1.9",
300
+ "ui-design/references/progressive-04-组件风格速查.md": "5.1.9",
301
+ "ui-design/references/progressive-05-移动端专用规范.md": "5.1.9",
302
+ "ui-design/references/progressive-06-主题切换实现.md": "5.1.9",
303
+ "ui-design/references/progressive-07-速查-从头搭建一个移动端页面.md": "5.1.9",
304
+ "ui-design/references/progressive-08-表单分组规范-tabs-vs-collapsegroup-强制.md": "5.1.9",
305
+ "uniapp-mall-assets/SKILL.md": "5.1.9",
306
+ "unity-integration/SKILL.md": "5.1.9",
307
+ "unity-integration/agents/openai.yaml": "5.1.9",
308
+ "unity-integration/references/ai-app-delivery.md": "5.1.9",
309
+ "unity-integration/references/sdk-api.md": "5.1.9",
310
+ "unity-integration/references/toolbox-migration.md": "5.1.9",
311
+ "unity-integration/references/webgl-hosting.md": "5.1.9",
312
+ "v8-api-config/SKILL.md": "5.1.9",
313
+ "v8-cache-pattern/SKILL.md": "5.1.9",
314
+ "v8-crud-api/SKILL.md": "5.1.9",
315
+ "v8-crud-api/references/progressive-01-查询列表-分页.md": "5.1.9",
316
+ "v8-crud-api/references/progressive-02-where-条件语法速查.md": "5.1.9",
317
+ "v8-debugging/SKILL.md": "5.1.9",
318
+ "v8-explorer-tree/SKILL.md": "5.1.9",
319
+ "v8-export-import/SKILL.md": "5.1.9",
320
+ "v8-export-import/references/progressive-01-excellayout-高级自由布局.md": "5.1.9",
321
+ "v8-export-import/references/progressive-02-powerpoint-导出.md": "5.1.9",
322
+ "v8-export-import/references/progressive-03-安全-性能注意.md": "5.1.9",
323
+ "v8-file-upload/SKILL.md": "5.1.9",
324
+ "v8-file-upload/references/progressive-01-公有桶-vs-私有桶.md": "5.1.9",
325
+ "v8-file-upload/references/progressive-02-office-文件在线编辑版本号规则.md": "5.1.9",
326
+ "v8-formengine-http/SKILL.md": "5.1.9",
327
+ "v8-frontend-events/SKILL.md": "5.1.9",
328
+ "v8-frontend-events/references/bluetooth-print-api.md": "5.1.9",
329
+ "v8-frontend-events/references/bluetooth-print.md": "5.1.9",
330
+ "v8-frontend-events/references/progressive-01-列表事件.md": "5.1.9",
331
+ "v8-http-integration/SKILL.md": "5.1.9",
332
+ "v8-http-integration/references/progressive-01-get-请求.md": "5.1.9",
333
+ "v8-http-integration/references/progressive-02-错误处理模式.md": "5.1.9",
334
+ "v8-image-processing/SKILL.md": "5.1.9",
335
+ "v8-image-processing/agents/openai.yaml": "5.1.9",
336
+ "v8-image-processing/references/api-reference.md": "5.1.9",
337
+ "v8-menu-buttons/SKILL.md": "5.1.9",
338
+ "v8-menu-buttons/references/progressive-01-2-按钮对象-schema.md": "5.1.9",
339
+ "v8-menu-buttons/references/progressive-02-8-模式-f-后台任务按钮-长任务.md": "5.1.9",
340
+ "v8-menu-buttons/references/progressive-03-10-反模式-避免.md": "5.1.9",
341
+ "v8-mongodb/SKILL.md": "5.1.9",
342
+ "v8-mq-mqtt/SKILL.md": "5.1.9",
343
+ "v8-mq-mqtt/references/mqtt-production.md": "5.1.9",
344
+ "v8-mq-mqtt/references/progressive-01-v8-mqtt-iot-物联网.md": "5.1.9",
345
+ "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "5.1.9",
346
+ "v8-saas-multi-tenant/SKILL.md": "5.1.9",
347
+ "v8-security/SKILL.md": "5.1.9",
348
+ "v8-security/references/progressive-01-2-权限校验.md": "5.1.9",
349
+ "v8-security/references/progressive-02-7-日志记录.md": "5.1.9",
350
+ "v8-sql-query/SKILL.md": "5.1.9",
351
+ "v8-table-event/SKILL.md": "5.1.9",
352
+ "v8-table-event/references/progressive-01-informv8-js-表单打开事件.md": "5.1.9",
353
+ "v8-table-event/references/progressive-02-前端事件名-v8-eventname-可能的值.md": "5.1.9",
354
+ "v8-tcp-integration/SKILL.md": "5.1.9",
355
+ "v8-tcp-integration/agents/openai.yaml": "5.1.9",
356
+ "v8-template-engine/SKILL.md": "5.1.9",
357
+ "v8-utilities/SKILL.md": "5.1.9",
358
+ "v8-utilities/references/client-api-index.md": "5.1.9",
359
+ "v8-utilities/references/platform-http-routes.md": "5.1.9",
360
+ "v8-utilities/references/server-api-index.md": "5.1.9",
361
+ "v8-workflow/SKILL.md": "5.1.9",
362
+ "v8-workflow/references/progressive-01-节点开始-v8-事件.md": "5.1.9",
363
+ "workspace-conventions/SKILL.md": "5.1.9",
364
+ "workspace-conventions/references/progressive-01-版本更新日志保护规则-强制.md": "5.1.9",
365
+ "workspace-conventions/references/progressive-02-microi-net-api-本地启动约定.md": "5.1.9",
366
+ "workspace-conventions/references/progressive-03-cli-与-ide-插件错版共存约定.md": "5.1.9"
367
367
  },
368
368
  "files": [
369
369
  ".microi-skills-version.json",
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "5.1.7",
2
+ "version": "5.1.9",
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-20T04:14:49.723Z"
5
+ "updatedAt": "2026-08-20T18:18:30.604Z"
6
6
  }