@microi.net/cli 4.9.5 → 4.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/.codebuddy-plugin/marketplace.json +2 -2
  2. package/.codebuddy-plugin/plugin.json +1 -1
  3. package/.codex-plugin/plugin.json +1 -1
  4. package/.workbuddy-plugin/marketplace.json +2 -2
  5. package/.workbuddy-plugin/plugin.json +1 -1
  6. package/README.md +7 -12
  7. package/assets/build-meta.json +4 -4
  8. package/package.json +1 -1
  9. package/scripts/microi-cli.js +78 -60
  10. package/scripts/microi-codex-router.js +30 -0
  11. package/scripts/microi-skills.meta.json +185 -185
  12. package/skills/.microi-skills-version.json +2 -2
  13. package/skills/ai-engine/SKILL.md +1 -1
  14. package/skills/ai-platform-governance/SKILL.md +1 -1
  15. package/skills/app-store/SKILL.md +1 -1
  16. package/skills/business-blueprint/SKILL.md +1 -1
  17. package/skills/datasource-engine/SKILL.md +1 -1
  18. package/skills/dos-orm/SKILL.md +1 -1
  19. package/skills/job-engine/SKILL.md +1 -1
  20. package/skills/message-notification/SKILL.md +1 -1
  21. package/skills/microi-ai-application/SKILL.md +1 -1
  22. package/skills/microi-client-frontend/SKILL.md +1 -1
  23. package/skills/microi-codex/SKILL.md +4 -4
  24. package/skills/microi-codex-installer/SKILL.md +25 -36
  25. package/skills/microi-datasource-mapping/SKILL.md +1 -1
  26. package/skills/microi-db-schema/SKILL.md +1 -1
  27. package/skills/microi-deployment/SKILL.md +1 -1
  28. package/skills/microi-docs-coverage/SKILL.md +1 -1
  29. package/skills/microi-form-engine/SKILL.md +1 -1
  30. package/skills/microi-form-layout/SKILL.md +1 -1
  31. package/skills/microi-frontend-sdk/SKILL.md +1 -1
  32. package/skills/microi-left-right-layout/SKILL.md +1 -1
  33. package/skills/microi-microservice/SKILL.md +8 -1
  34. package/skills/microi-microservice/references/runtime-delivery.md +4 -0
  35. package/skills/microi-mobile-app-quality/SKILL.md +1 -1
  36. package/skills/microi-solution-quotation/SKILL.md +1 -1
  37. package/skills/microi-system-delivery/SKILL.md +1 -1
  38. package/skills/microi-ui/SKILL.md +1 -1
  39. package/skills/microi-uniapp-frontend/SKILL.md +1 -1
  40. package/skills/module-engine/SKILL.md +1 -1
  41. package/skills/ocr-engine/SKILL.md +1 -1
  42. package/skills/page-engine/SKILL.md +1 -1
  43. package/skills/performance-testing/SKILL.md +1 -1
  44. package/skills/playwright-e2e/SKILL.md +1 -1
  45. package/skills/print-engine/SKILL.md +1 -1
  46. package/skills/production-readonly-audit/SKILL.md +1 -1
  47. package/skills/report-engine/SKILL.md +1 -1
  48. package/skills/search-engine/SKILL.md +1 -1
  49. package/skills/spider-engine/SKILL.md +1 -1
  50. package/skills/translate-engine/SKILL.md +1 -1
  51. package/skills/ui-design/SKILL.md +1 -1
  52. package/skills/uniapp-mall-assets/SKILL.md +1 -1
  53. package/skills/unity-integration/SKILL.md +1 -1
  54. package/skills/v8-api-config/SKILL.md +1 -1
  55. package/skills/v8-cache-pattern/SKILL.md +1 -1
  56. package/skills/v8-crud-api/SKILL.md +1 -1
  57. package/skills/v8-debugging/SKILL.md +1 -1
  58. package/skills/v8-explorer-tree/SKILL.md +1 -1
  59. package/skills/v8-export-import/SKILL.md +1 -1
  60. package/skills/v8-file-upload/SKILL.md +1 -1
  61. package/skills/v8-formengine-http/SKILL.md +1 -1
  62. package/skills/v8-frontend-events/SKILL.md +1 -1
  63. package/skills/v8-http-integration/SKILL.md +1 -1
  64. package/skills/v8-image-processing/SKILL.md +1 -1
  65. package/skills/v8-menu-buttons/SKILL.md +1 -1
  66. package/skills/v8-mongodb/SKILL.md +1 -1
  67. package/skills/v8-mq-mqtt/SKILL.md +1 -1
  68. package/skills/v8-saas-multi-tenant/SKILL.md +1 -1
  69. package/skills/v8-security/SKILL.md +1 -1
  70. package/skills/v8-sql-query/SKILL.md +1 -1
  71. package/skills/v8-table-event/SKILL.md +1 -1
  72. package/skills/v8-template-engine/SKILL.md +1 -1
  73. package/skills/v8-utilities/SKILL.md +1 -1
  74. package/skills/v8-workflow/SKILL.md +1 -1
  75. package/skills/workspace-conventions/SKILL.md +8 -9
@@ -109,6 +109,34 @@ function resolveWorkspace() {
109
109
  };
110
110
  }
111
111
 
112
+ function scheduleAutomaticUpdate() {
113
+ if (process.env.MICROI_DISABLE_AUTO_UPDATE === '1') return;
114
+ const cliPath = path.join(__dirname, 'microi-cli.js');
115
+ if (!fs.existsSync(cliPath)) return;
116
+ const workspace = resolveWorkspace();
117
+ try {
118
+ const child = childProcess.spawn(process.execPath, [
119
+ cliPath,
120
+ 'update',
121
+ '--background',
122
+ '--workspace',
123
+ workspace.workspaceRoot,
124
+ '--json',
125
+ ], {
126
+ cwd: pluginRoot,
127
+ detached: true,
128
+ windowsHide: true,
129
+ stdio: 'ignore',
130
+ env: { ...process.env },
131
+ });
132
+ // 不等待更新、不重启当前 Router。新版本仅供后续新进程使用。
133
+ child.on('error', () => { /* 下一次启动自动重试 */ });
134
+ child.unref();
135
+ } catch {
136
+ // 自动更新永远不能成为 MCP 启动门禁。
137
+ }
138
+ }
139
+
112
140
  function loadProfiles() {
113
141
  const workspace = resolveWorkspace();
114
142
  const configured = Array.isArray(workspace.config.profiles)
@@ -459,6 +487,8 @@ function shutdown() {
459
487
  }
460
488
 
461
489
  process.stdin.setEncoding('utf8');
490
+ const automaticUpdateTimer = setTimeout(scheduleAutomaticUpdate, 1500);
491
+ automaticUpdateTimer.unref();
462
492
  process.stdin.on('data', chunk => {
463
493
  inputBuffer += chunk;
464
494
  let newline;
@@ -1,13 +1,13 @@
1
1
  {
2
- "builtAt": "2026-08-12T06:23:44.693Z",
2
+ "builtAt": "2026-08-12T07:36:21.427Z",
3
3
  "source": "../microi.skills",
4
4
  "extension": {
5
5
  "name": "v8-engine",
6
- "version": "4.9.5",
6
+ "version": "4.9.6",
7
7
  "publisher": "Microi"
8
8
  },
9
9
  "skills": {
10
- "version": "4.9.5",
10
+ "version": "4.9.6",
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,80 +15,80 @@
15
15
  "dir": "dist/microi.skills",
16
16
  "files": 117,
17
17
  "skills": 62,
18
- "bytes": 1802390
18
+ "bytes": 1805625
19
19
  },
20
20
  "fileHashes": {
21
- ".microi-skills-version.json": "2970ed9cf3282a529c47d665f3a803fafbd9f615ad20f022d3db2d4c40f31c5f",
21
+ ".microi-skills-version.json": "87afb8796fd14ce5eb9b928b36baba715e153be1a35d5c4dba7967a0f60b34c8",
22
22
  "README.md": "168697be6864bbb12befa9a6723d93ea9d1c8b5a615006038c31b09e1171860c",
23
- "ai-engine/SKILL.md": "9c249704cd21f3c2bc481510b3ec453fc1deffca0a5246aa3ea259181303ec4e",
23
+ "ai-engine/SKILL.md": "4f8d12e27259528e1c25f21f5edd8cb62395868a8996389104436aeca10fc81c",
24
24
  "ai-engine/agents/openai.yaml": "40deb07801006a46b9a7f0020d13251955eeadd04c8e591160210479936f8b5b",
25
- "ai-platform-governance/SKILL.md": "80ea8e6481bdad34df21523aa3c3a1d4be60a7637b6192e66e45fa9f188d9683",
26
- "app-store/SKILL.md": "bddb1f1e0c5bde3ccd4829be6e68197ce5e57d7c92835f61445834f12b51f2d1",
25
+ "ai-platform-governance/SKILL.md": "606692e87154209148312ad78b8f028c80dc915e0e1d7bb1ce383903173d359f",
26
+ "app-store/SKILL.md": "424f1b4b24eef199aca98bcec124a72a699bc219dce86d04af598c14c4451a32",
27
27
  "app-store/agents/openai.yaml": "eda8f5cf043e7b8fb0e4fb3acf0625fef95eb49586b43187ced277cd0ae4a2c4",
28
- "business-blueprint/SKILL.md": "6feff9178a1cdd6bad14481df0fa636956b79a385ccd25b053f1b563a30085ce",
29
- "datasource-engine/SKILL.md": "e186ba655eac38e2dd839423a0abedcc9e89232ec1ec109f44c5d9b333cd512f",
28
+ "business-blueprint/SKILL.md": "01619a3b6d37b5b67649ee59d2701301222006d3b943882b2802b1721c58f8a9",
29
+ "datasource-engine/SKILL.md": "bed8352f1d43b55145e1c492d1ea0ca1ec8750b5c4d74e1e80cd71aa7b9a2e6f",
30
30
  "datasource-engine/agents/openai.yaml": "f7cfd13ec721e0991af29b685cd00bb1aec6e5ffb5f198ad59b0eb6e39814725",
31
- "dos-orm/SKILL.md": "7514d3d1e4141ee27de009f745a27320847a6c9d5f3f40d0f6a60970a562fc4b",
31
+ "dos-orm/SKILL.md": "4eba99627516f5a73070e3158bfaa28afde21ad6aae4d6b7c546947ebdd79c5e",
32
32
  "dos-orm/references/api-reference.md": "facc5e62cd6439a06263580dab9656271118d4bb5a91b5d9230a79136e6daa72",
33
- "job-engine/SKILL.md": "56df8024dbb491764598b271c5e1e40410abad102195723530beda54bb9b0a78",
33
+ "job-engine/SKILL.md": "684b6884e924cfc334a3368937c6802ebaf84e60d60d90bbf42ad61fa999023b",
34
34
  "job-engine/agents/openai.yaml": "65889ee39bc34caca9085539d8954a381aab93590c5635eea3bb6f4c001934af",
35
- "message-notification/SKILL.md": "f1538bf41b3a454ec3d8b285d5aca64f1cd22b940355a67ac0250b1bc2d18095",
35
+ "message-notification/SKILL.md": "8efb5f0d96ffa54bdf0655947bd799d0e327822ca953ed118e46073d85fef560",
36
36
  "message-notification/agents/openai.yaml": "d0e259921410e94caaf8b376d690a529842446e3f32c9523b7dfd1bda599f58c",
37
37
  "message-notification/references/contracts.md": "a33e3dd4093430ed1dc5b79a978d8981479e975a7dd30fde6f68559360369f06",
38
38
  "microi-ai-app-auth.js": "8023db6ae655bc33027f389a64ef7937ac09da35eb1b8a497aaefb986834242a",
39
- "microi-ai-application/SKILL.md": "78b0e743f7b5dfeee330ea71d3b1beb810f9f2420c6611cc578a00a7ea3838c0",
39
+ "microi-ai-application/SKILL.md": "f7b2970872763c7d2c17f336490e7851c648cd4f716c05c26ee6e2d1ba9ae21e",
40
40
  "microi-ai-application/agents/openai.yaml": "d3dfc4d0f2fda3391e90e661ca9d8d051cb43824b011d1a88e99db135870454f",
41
41
  "microi-ai-application/references/frontend-baseline.md": "c21a2d38292fd8d445a7538afb45d609881f624f32d39c0fc4bbbb3c2fa64a74",
42
- "microi-client-frontend/SKILL.md": "7eff847de1fc3729730f668129602699cb29b0d212123557ecbb542b59a95b2b",
43
- "microi-codex-installer/SKILL.md": "4d60ff30a4571024b38f6ab1767b0eca7337a3476d23c2afc3fe4433c318656a",
42
+ "microi-client-frontend/SKILL.md": "a895090a5fa0930425e6674beb3ec38ddb601eaa99d7dcc9c71a86e405e7e173",
43
+ "microi-codex-installer/SKILL.md": "993f4a88f0ef6424e013ba43aefef18c06788c7590276297b179b84a8d86ce4d",
44
44
  "microi-codex-installer/agents/openai.yaml": "e531219b74a70204893a156b1c22c69013a4c9d24b132ead912746b1b312cf80",
45
- "microi-codex/SKILL.md": "8c70d8a1d9cd0918989da4613a5e68efd29fc1e82e1aa35c9bc516ca167d8558",
46
- "microi-datasource-mapping/SKILL.md": "e61556634926360c0c2efab00dccd57e826c75b78e60307adfa158c2c58d4f37",
47
- "microi-db-schema/SKILL.md": "adcb2f63d1e5ea83529438ce03fe0e8648c5cdfcbebfee7d27ae101c06b1b128",
45
+ "microi-codex/SKILL.md": "66f5e11dbf1abb38c1527a7ce9dc5fb9a6693ac639a0c030b8a025e418e2fa62",
46
+ "microi-datasource-mapping/SKILL.md": "619c022b668f928129abef10e3f502f2ca0d2dee6e341ccd55f61fdbbcdd9661",
47
+ "microi-db-schema/SKILL.md": "bc8edc5ca8ec62624d339f9e4ad4d098ca2fe5c95b1a601410b34763adb5565d",
48
48
  "microi-db-schema/agents/openai.yaml": "c725a2be4c904472f9e46dc4b49aa642c9f3a4437c91a28ba7cc27167497ede7",
49
49
  "microi-db-schema/references/core-tables.md": "b71164d9afe8cd6085745a27dddb31722014a85f8ab22f09ab447738612fea6a",
50
50
  "microi-db-schema/references/form-component-options.md": "c4c5085d4b2e4fc79b09d255fa1655c2007e863e3c102ccf805ca57abdf79028",
51
51
  "microi-db-schema/references/schema-overview.md": "8909f78c1eb651f1c1f251474051d75e548ac95c961e4e8491160e15a04ec0a1",
52
52
  "microi-db-schema/references/schema.md": "4e533fce9b42a26e404bfe86e2808f30c0bc3ddfe0d65b568c2ff4825c1742d3",
53
53
  "microi-db-schema/references/table-catalog.md": "ea0ef573d0e112c335e3ab66035bce4e5c3039c7bf25c6e3743f086913b46b97",
54
- "microi-deployment/SKILL.md": "a3c5df8b6508b7034ba15703249105d1992aecdd1b4c17be78c54b23cfcdda3e",
54
+ "microi-deployment/SKILL.md": "e92e3238c7264e12b641e6895f1f51787fe13287ed9365cd93b2f77e5504daf5",
55
55
  "microi-deployment/references/deployment-matrix.md": "32d9d1424bf19eae0d2cee2b1667203c830ea7610c71a806e7ddf785a0083009",
56
- "microi-docs-coverage/SKILL.md": "50dce4e686c9fb23121f1779a8649c62ba0ebfc6bdef8fbb95cb394fed5d7469",
56
+ "microi-docs-coverage/SKILL.md": "44d2e633946af233bdd5a59a9fb74a8613e82031fa2f4635a2664fff0ad6c210",
57
57
  "microi-docs-coverage/references/capability-map.md": "9f7516b3577d3e88d473f8b9e85e061f906b2b1dbfccb89275ef77da85a24f23",
58
58
  "microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "ebd57f17f2ebae499bfa59ad17830db458590feb76f7f0f20219ff0987b33af3",
59
- "microi-form-engine/SKILL.md": "ffbcce75e4bf222b33e8507f311ba6631615f10be1fb6b854e6b12f6cab4afc7",
59
+ "microi-form-engine/SKILL.md": "f272d9df71d72bcace16a443ecef9f81a3fec8ca91ad07a0a207ebf4b320cffb",
60
60
  "microi-form-engine/references/component-catalog.md": "68963c2d5211a4610c09fab1fa127a349339abbb7427509b183d4be72e977c7b",
61
61
  "microi-form-engine/references/data-source-events.md": "59a95a36624476b12cdc84e4c23975d074b1f115df19992fd0fd075bb982e7cb",
62
- "microi-form-layout/SKILL.md": "626dcb0ef9f5560f1204899d7ba419f63c43358aa4d64e3343ad970f3d0b61f7",
63
- "microi-frontend-sdk/SKILL.md": "415c8ccacfe64d31bd819c8a4c06da0a2d1ab835fe7edf04890f5e55ae15897a",
64
- "microi-left-right-layout/SKILL.md": "4ea56e01b6c9a120919c90ae5525528db3173699e82b341f716f1c608201c6d6",
65
- "microi-microservice/SKILL.md": "8ca7b75b214c471ad51acf39c5032bd6c7a580079a8b25c8184e69c3374f12b6",
66
- "microi-microservice/references/runtime-delivery.md": "d21e759aee023dd3a1e9a3dd3bba26a38a5be6c2342d5aecf27901cd97a8ab6d",
67
- "microi-mobile-app-quality/SKILL.md": "a8a5d1a324b327c69652423747cf8932c7d6e0d2cd182eb8efca055d3939247b",
68
- "microi-solution-quotation/SKILL.md": "c0d16a2da319d998475b3bcccae3f7f1b3ddbc73cb628a4f97fe175bb7a5c4e0",
62
+ "microi-form-layout/SKILL.md": "668302c4fd4a17fa1932dcd37a11caa5d01590052077adc60f4c665be372b802",
63
+ "microi-frontend-sdk/SKILL.md": "ebd28fbc6b8ac47c713cf9c44e89b4043bc7ecf652b7796e65d28c4844188c0e",
64
+ "microi-left-right-layout/SKILL.md": "aa5b3c6424e6d69b16df7879a4fba85e551b32bb60a7eb676000568057430231",
65
+ "microi-microservice/SKILL.md": "3944553acfbf6d09cfb740451dfbc07ecfa6e8c41d7e1c07d192b58439e99737",
66
+ "microi-microservice/references/runtime-delivery.md": "31f008828f1967ccae043cfa26c722598b6b9061bbf36aa45193bb950fc58bd6",
67
+ "microi-mobile-app-quality/SKILL.md": "93fa4dfc2810c33e426e11c3c0b37f874b0dfb0bf60d2b92ad11865e2c0faf3f",
68
+ "microi-solution-quotation/SKILL.md": "d99886d1261dba1c56b8ef70090783ffe9ae8a4915f5ca2c7e1fae6be519567a",
69
69
  "microi-solution-quotation/agents/openai.yaml": "9e3f994cc842c927ca25e23216f6ce5e8f8313fc39b1c7142d9b652ca73e7dd1",
70
70
  "microi-solution-quotation/scripts/build_solution_quote.py": "2a8a90ed95308b900da3db433402d857f838b594df624f5a83b62307471a31e7",
71
- "microi-system-delivery/SKILL.md": "a68447fe1917e59c8e525c3e07e8d800000be18673c98e2020151a9076d21f07",
72
- "microi-ui/SKILL.md": "3f4d8454a9f6ce97bb3a6f1a1c28e252b8b59dc4018f8df575b4171fcd18adc5",
73
- "microi-uniapp-frontend/SKILL.md": "74692916aeb26ccc8bda79ed288608af82692996ce343b4ca467abe3f3a076c5",
71
+ "microi-system-delivery/SKILL.md": "740d8c11607a2847b8059808e69c51c9715ccb0e8b514213a7adb7f98bc36639",
72
+ "microi-ui/SKILL.md": "20079680908e7a22e13e0ea5736d866b81f9fb56fb0ebdb453ac9b33436e761a",
73
+ "microi-uniapp-frontend/SKILL.md": "e00b5bcbbf2cfb0cf4993229698a9f2c2ef5f41d428f8772eb778265c193e4a2",
74
74
  "microi.v8.js": "25ff9e9aca3ff5167a1f3f06e262e3389a6d732cb12b9a3ddb4f218fb331ef53",
75
- "module-engine/SKILL.md": "b5b544e622466eb8d83fd35fd699130ab2a09fba46d18111205cd0aa360ddb7f",
75
+ "module-engine/SKILL.md": "c023ddb2100a81a4b1c8eff247444f18862b07eebbb9f290b79284be0d836f5d",
76
76
  "module-engine/references/module-config.md": "900f3baf7ae8d1311b1e1b8553aeae2ece4d8260fea29a1bd4237f3f9f35fe7d",
77
- "ocr-engine/SKILL.md": "d4f64a6e903e22f716ca842702262df590b169b5f94d352f2183206419004103",
77
+ "ocr-engine/SKILL.md": "239fed8ba28c0178fbbcc4c3dc8d4f3b8b8cf1d2b794db2014c2600ea7835da6",
78
78
  "ocr-engine/agents/openai.yaml": "3a6cc9984a246c41332c5f53d1badef31b78f81324333ea0d6337cb20c7fc898",
79
- "page-engine/SKILL.md": "197243ed5ac1a11eeb817d95b532a02d2420a5caed9fc712db4b864ba0096c7d",
80
- "performance-testing/SKILL.md": "adadc7cb76fb3c26f62b4d33fac7b41a99f6c03ff267672850f5196b147c6000",
81
- "playwright-e2e/SKILL.md": "487ac84ab0f88242ed2a5bbaca33a18a635fcd8b3d03a8b8c07b10f4b6496b8f",
82
- "print-engine/SKILL.md": "58543e89a3b83f78f5dda1ada5b8d3eba0c5f997643ef31680e4387a58e2b979",
83
- "production-readonly-audit/SKILL.md": "0906d74c5cea78f6acbcde7edbb3da63da2a141b44e546a239b278ff82f2fdd0",
84
- "report-engine/SKILL.md": "9b53c40a6cb706edc8ec8f066010a3cd781a71caf12ad4173c85f04a3407b666",
79
+ "page-engine/SKILL.md": "c10c0639a82793ea6a39fd44cea69b568241a174f0449dbb7cb7ed275c37d19d",
80
+ "performance-testing/SKILL.md": "98139f3d09565847b3ed6d9122fc281e333e6dbd719c888927a5f023f0a399e2",
81
+ "playwright-e2e/SKILL.md": "e9ae52e876bad6413b92875ac83124750432682e72eaf54c087cc155c99e1318",
82
+ "print-engine/SKILL.md": "8d71b572a8da5cb5c0928d30e177a49ba7f79fb7785779127e19d5d47efac421",
83
+ "production-readonly-audit/SKILL.md": "da8a47202f51850f879c387b75607ebde70b31b58c550f0959c54fc3da908972",
84
+ "report-engine/SKILL.md": "40f1d24013cf8bcb446ab084cfca26e71fec9806980b33b244478e34cc8c1ded",
85
85
  "report-engine/agents/openai.yaml": "6705efa604e24e8286e605d7bb8c240e2434d23657ee9012fd68a96503a4a0f9",
86
- "search-engine/SKILL.md": "86f83dca51776d9f92770fa1965cccf9c0707db80b014b80a7345460a46ecd33",
86
+ "search-engine/SKILL.md": "c1c33ed02a91a6e8d482f05208a0d49c3dc6639165c9cc017e0e270db0d7ee7e",
87
87
  "search-engine/agents/openai.yaml": "5ddbe54965386287b00eba1cd7e38f3c7058edc437538f12ddb165f96f75a6eb",
88
- "spider-engine/SKILL.md": "e3bed6e42197b12db64c13144ae5b218747c06f59dc92ec7fc6d7bc63f4e25d9",
89
- "translate-engine/SKILL.md": "d7cbdae18ed404859d5506d8cfd310a04e985db2436e54492964155db299d69f",
88
+ "spider-engine/SKILL.md": "e24018f7ab2a07706a70bb592adb7a2f91f0a66e3f9bc944593e18731c53d77e",
89
+ "translate-engine/SKILL.md": "8f4c49d49049dfc0ed5e0a792b35a2c2490e2279a4e3be90f29309a4e55a9d53",
90
90
  "translate-engine/agents/openai.yaml": "8eb47e08a691219bbe22a797ddbdf73234ec77f86e5724bc735fb0738d899112",
91
- "ui-design/SKILL.md": "75d1522e9d7159ab0ca99cd9abbe3e20cf6e43fd2f660c9ef92a61ae0a42eb06",
91
+ "ui-design/SKILL.md": "9c1821a85924f4b787da2fc8536199cef806cca3a826f1484047a808b41a1dd3",
92
92
  "ui-design/assets/pattern-showcase/app.js": "68a8d404c30096da853c6edbc7cb27f336982147ddfebccd66c03ba3d99427cd",
93
93
  "ui-design/assets/pattern-showcase/index.html": "242f94772a5f14e38296f1e925f30a9a5fef2103975831cbd47861a3fc14d5bc",
94
94
  "ui-design/assets/pattern-showcase/styles.css": "77c34ddae0dd9c665c8774dc6def4bd8f4f5ed02470d4343d116ed141c87eccb",
@@ -97,163 +97,163 @@
97
97
  "ui-design/references/mci-design-contract.md": "3312b7ecc09567d4da18289b4e0bbb4061ed3ff94b71b6f72b46ea7d65a577eb",
98
98
  "ui-design/references/motion-and-media.md": "3d73161a5ad19e3d1ebecf681febd592ea0e1bca42e6340ef6a08cd9a9fd25be",
99
99
  "ui-design/references/product-flow-recipes.md": "b6a41c2d2b18f59594024f232e38497c140e5d8f25b54099a7e2a47609c52edc",
100
- "uniapp-mall-assets/SKILL.md": "f81b2e05abbd9e29a1a26fc3a4a9a34b1c84b856035a3d612f173727fff7ed82",
101
- "unity-integration/SKILL.md": "3880bd7c6a73928242c9ecc80a561f3dc21f76e8fb1882abeef25ffa53ae5efa",
100
+ "uniapp-mall-assets/SKILL.md": "30a85548bb600de35e5608c3c95df2e4ac4dd17954da2a9d48bc1744fad6db6b",
101
+ "unity-integration/SKILL.md": "cd84007e385446917f3091fb8b5549645d38dd030c0cae4562a1ffbbd91a094d",
102
102
  "unity-integration/agents/openai.yaml": "f07748ace7e6303e49eac32d77f3e7163c8de1cef1f2f87e20de76207c8e5a50",
103
103
  "unity-integration/references/ai-app-delivery.md": "56532b2b1c17ef2c7e6ff89b3e08039936f736c36589310e4721c3d65b9ac550",
104
104
  "unity-integration/references/sdk-api.md": "b473e7094b0c4cf7860cecb9acfbdd55025c7f851b4bd4bf92b4233091b182fa",
105
105
  "unity-integration/references/toolbox-migration.md": "b9294ea7db2b2a0f31e650e6e80f6d8f69385037bff6ac39fd5525ea98f8c934",
106
106
  "unity-integration/references/webgl-hosting.md": "5c19bda62d7c7a258b4fafc1d46e9a7c94e5400803d77d9aff44ce794083e745",
107
- "v8-api-config/SKILL.md": "16a936c5b872cf86b34c3bc13c61134a796bbe0849ce03cfbe5f29198521f130",
108
- "v8-cache-pattern/SKILL.md": "34d008ee755fe71451b00c3950b2036576fe5ecfc5e5040839282afc9c1f3774",
109
- "v8-crud-api/SKILL.md": "a282114f9b3aac5f4f50fc4ae0e657dc9acc1cd78c074e53260cb4fd58e9e733",
110
- "v8-debugging/SKILL.md": "8f8233f66b4063f166ccaa6f42514723aaa78ca743cebc2ff3c7fd4621df08e9",
111
- "v8-explorer-tree/SKILL.md": "d37541c20ceda5156ee51c771d828a0746edc7e0e7aa4d72bdd0a6c6ec3f014a",
112
- "v8-export-import/SKILL.md": "00312a0107705ddac0fffcd52d11c4a15166c50484b74dd42f6f7e9fa91bc6e8",
113
- "v8-file-upload/SKILL.md": "824287b5a76cedb2481be3964d47120ed1ac004797be8621921715bb39c805c8",
114
- "v8-formengine-http/SKILL.md": "1679069c1d6253643cbad112aedab871950a3c56b3c965278e9af4fefafc28b1",
115
- "v8-frontend-events/SKILL.md": "a039042655937a4df8830ee39348107435d3d92368d648a90240aef65beda61b",
107
+ "v8-api-config/SKILL.md": "1b5c927004ad372ad76edef233600c675932c5d5529aa434f2ad55eacba33f17",
108
+ "v8-cache-pattern/SKILL.md": "bfa7250d461f77a7498821face0d20bae933b22cc7139bceac4bd8a6b680cb56",
109
+ "v8-crud-api/SKILL.md": "97eb5908c4f897157909b86016348507c70d66d1276284ff1651a4e9b0494893",
110
+ "v8-debugging/SKILL.md": "a45274230ebc81575c23c054a97a26a10c2f719543ed2ba474f86592257614a3",
111
+ "v8-explorer-tree/SKILL.md": "1c941d9b5b589a27ed2ce3000f69206c2209660f7d1c86b5b0cb0a82bc1d5003",
112
+ "v8-export-import/SKILL.md": "e6d70e66b2c939e761c7f63d8280dbc1c4d9978ed9586bddc92366b29f1392b8",
113
+ "v8-file-upload/SKILL.md": "60496ffb4c5476884f631801c0f2978362155620f5c3d0f7e94daf3a57b8b130",
114
+ "v8-formengine-http/SKILL.md": "8338e9087e93bb41ad260863b076db387373c606e481bf49809c447083c761d1",
115
+ "v8-frontend-events/SKILL.md": "b539665a92623671ccad2628238afb2ad267b70b7955f07c705f718f5ad458fa",
116
116
  "v8-frontend-events/references/bluetooth-print-api.md": "ce7f2448dc79e7eb946646784619b47501bdff1651253fc5e82fc91ee41ea6c8",
117
117
  "v8-frontend-events/references/bluetooth-print.md": "1fc0683f7562be27a8b6eda547a408ae4f4a8594cf004893f78131f9cda17f33",
118
- "v8-http-integration/SKILL.md": "d76ccd0b52ef46a9ee0469441ef2bb535b8329dc3178adda2dff1dfe8ab52d18",
119
- "v8-image-processing/SKILL.md": "2615cc484c2c59b636c8f442b832ef310c847a8d7893a801673d83427a6d525a",
118
+ "v8-http-integration/SKILL.md": "1baaf8210846bbbd8e2247aca4f942fb17a5fdd3a7a122fc50263727a651ddd2",
119
+ "v8-image-processing/SKILL.md": "b622fb8563e16bf25ec9238b3819d7fef52f2ce00a79fd96f374de9336745435",
120
120
  "v8-image-processing/agents/openai.yaml": "009d8b643bea6203a8056c7323b68fbe6a92c594809415cf657868074e52a576",
121
121
  "v8-image-processing/references/api-reference.md": "f8f293f64749d9681a1d4d5c25d5ef85ae1cfb7523487c43d08a03e9ebe36fb6",
122
- "v8-menu-buttons/SKILL.md": "0249cd6205bcb1f3a173e9fcb0d2734638cad99dff48ccc23fa09161e2f8a0f0",
123
- "v8-mongodb/SKILL.md": "2c97bec9abfdcf6c5d622206ef47e67cdd8947f8ecfed6294e5d3fdf1355d94c",
124
- "v8-mq-mqtt/SKILL.md": "fa85edaf801401063b647da4784c060118ae0ccfa83bdd394b503d6dcc1a064d",
122
+ "v8-menu-buttons/SKILL.md": "2a26a222efc7a4750b200cbb3cf0f38a806e5ba4fc0d5d70f62c567594ef319c",
123
+ "v8-mongodb/SKILL.md": "dbd34ce9b9577c5623ca68ea20bd72785a5bacb9eacaf1311026b2ed4c9bca22",
124
+ "v8-mq-mqtt/SKILL.md": "e60ccacc645efe824a9d63842d52f390900b888d9dbd51587ea6012aa527d126",
125
125
  "v8-mq-mqtt/references/mqtt-production.md": "8ef68eb3f312abfef23a2c667d809d9aa2bc036f6219ea7921969b4edb0f0090",
126
126
  "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "e9f981e17e3d93d64aeeeb1bbc80a0eb680414e17782d43bfc7c1db676063dd0",
127
- "v8-saas-multi-tenant/SKILL.md": "df7b1b7b712a446812e6469521b69d0cdf908361a0c2c0a48b334026e717efab",
128
- "v8-security/SKILL.md": "7144e4427ed674479e2ad90775fc951513630c7bc1494d0a66d4790c823ce306",
129
- "v8-sql-query/SKILL.md": "ef788b154ef195e184f5586f8f8f2f21aad1b1fc0ea697cc1478495b10abf808",
130
- "v8-table-event/SKILL.md": "16ff880319ce390b882696ff8985c9a654c47b56499c2389a9d6a6ec834ba2d1",
131
- "v8-template-engine/SKILL.md": "77af63d434cc335bbb1fa450cc3264a89cd32f0abf4fc74a9e660c2bdcee0e79",
132
- "v8-utilities/SKILL.md": "e2755bb40ae475a81c09e9e100c2b90fcb27a3abb43dfab801f3b6c59c40fdd8",
127
+ "v8-saas-multi-tenant/SKILL.md": "f1920bf968793d3a28753b01befc875814d5e1a0ad97cecbf97e1d52cd6c90b8",
128
+ "v8-security/SKILL.md": "bfc586ceb46a851c1c2fc6d2bca97975b607910f327055c2088fce1ff84f0725",
129
+ "v8-sql-query/SKILL.md": "23a12c6801627890d18ff9f1d09cdd1abbd9b08ffc12ef6a12c915d504ed3255",
130
+ "v8-table-event/SKILL.md": "c2e623d0f4456a0603a1acabd2f2e844a534c966ed5af311e2f18e9ab290e936",
131
+ "v8-template-engine/SKILL.md": "19363a9e047737b62236f187946ac8398ee6cb19907de70ce0888681b75afb15",
132
+ "v8-utilities/SKILL.md": "61dfa0cfbb02fa9cb53d3ce5dbf0f0d0b8a49eb9b11b7fa616a48eaa1dd55ffc",
133
133
  "v8-utilities/references/client-api-index.md": "3362126197bd34191640d6bd532b16f1ed446c4a8a9d805f4973be5d58b90a4a",
134
134
  "v8-utilities/references/platform-http-routes.md": "87579eef4e89b4c80e1757ad34ec951e0ccadb6bd15aab4f3ab247f55d5f1cd5",
135
135
  "v8-utilities/references/server-api-index.md": "72655af1078b0c63ace253f6a6ab74847abffe38829fdcb55780861d8d4b0e9f",
136
- "v8-workflow/SKILL.md": "a3864fcdb203479fd1cf074e97644defbc47c9861147fd7bcaca5f0e1aa13210",
137
- "workspace-conventions/SKILL.md": "6b0f1888a4f50d3bbe09a5687ac846e63d19bee3fffc9d37e4a3f409fc7956ef"
136
+ "v8-workflow/SKILL.md": "4166c7c69048aafd864212a923853c140e837b9e7b5d2805e1c60a191dc8bae1",
137
+ "workspace-conventions/SKILL.md": "46efdcf82c01cad55431ddcdfaa66938df9ab7dabb88a011e0e4d14bfa7e45ff"
138
138
  },
139
139
  "fileVersions": {
140
- ".microi-skills-version.json": "4.9.5",
141
- "README.md": "4.9.5",
142
- "ai-engine/SKILL.md": "4.9.5",
143
- "ai-engine/agents/openai.yaml": "4.9.5",
144
- "ai-platform-governance/SKILL.md": "4.9.5",
145
- "app-store/SKILL.md": "4.9.5",
146
- "app-store/agents/openai.yaml": "4.9.5",
147
- "business-blueprint/SKILL.md": "4.9.5",
148
- "datasource-engine/SKILL.md": "4.9.5",
149
- "datasource-engine/agents/openai.yaml": "4.9.5",
150
- "dos-orm/SKILL.md": "4.9.5",
151
- "dos-orm/references/api-reference.md": "4.9.5",
152
- "job-engine/SKILL.md": "4.9.5",
153
- "job-engine/agents/openai.yaml": "4.9.5",
154
- "message-notification/SKILL.md": "4.9.5",
155
- "message-notification/agents/openai.yaml": "4.9.5",
156
- "message-notification/references/contracts.md": "4.9.5",
157
- "microi-ai-app-auth.js": "4.9.5",
158
- "microi-ai-application/SKILL.md": "4.9.5",
159
- "microi-ai-application/agents/openai.yaml": "4.9.5",
160
- "microi-ai-application/references/frontend-baseline.md": "4.9.5",
161
- "microi-client-frontend/SKILL.md": "4.9.5",
162
- "microi-codex-installer/SKILL.md": "4.9.5",
163
- "microi-codex-installer/agents/openai.yaml": "4.9.5",
164
- "microi-codex/SKILL.md": "4.9.5",
165
- "microi-datasource-mapping/SKILL.md": "4.9.5",
166
- "microi-db-schema/SKILL.md": "4.9.5",
167
- "microi-db-schema/agents/openai.yaml": "4.9.5",
168
- "microi-db-schema/references/core-tables.md": "4.9.5",
169
- "microi-db-schema/references/form-component-options.md": "4.9.5",
170
- "microi-db-schema/references/schema-overview.md": "4.9.5",
171
- "microi-db-schema/references/schema.md": "4.9.5",
172
- "microi-db-schema/references/table-catalog.md": "4.9.5",
173
- "microi-deployment/SKILL.md": "4.9.5",
174
- "microi-deployment/references/deployment-matrix.md": "4.9.5",
175
- "microi-docs-coverage/SKILL.md": "4.9.5",
176
- "microi-docs-coverage/references/capability-map.md": "4.9.5",
177
- "microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "4.9.5",
178
- "microi-form-engine/SKILL.md": "4.9.5",
179
- "microi-form-engine/references/component-catalog.md": "4.9.5",
180
- "microi-form-engine/references/data-source-events.md": "4.9.5",
181
- "microi-form-layout/SKILL.md": "4.9.5",
182
- "microi-frontend-sdk/SKILL.md": "4.9.5",
183
- "microi-left-right-layout/SKILL.md": "4.9.5",
184
- "microi-microservice/SKILL.md": "4.9.5",
185
- "microi-microservice/references/runtime-delivery.md": "4.9.5",
186
- "microi-mobile-app-quality/SKILL.md": "4.9.5",
187
- "microi-solution-quotation/SKILL.md": "4.9.5",
188
- "microi-solution-quotation/agents/openai.yaml": "4.9.5",
189
- "microi-solution-quotation/scripts/build_solution_quote.py": "4.9.5",
190
- "microi-system-delivery/SKILL.md": "4.9.5",
191
- "microi-ui/SKILL.md": "4.9.5",
192
- "microi-uniapp-frontend/SKILL.md": "4.9.5",
193
- "microi.v8.js": "4.9.5",
194
- "module-engine/SKILL.md": "4.9.5",
195
- "module-engine/references/module-config.md": "4.9.5",
196
- "ocr-engine/SKILL.md": "4.9.5",
197
- "ocr-engine/agents/openai.yaml": "4.9.5",
198
- "page-engine/SKILL.md": "4.9.5",
199
- "performance-testing/SKILL.md": "4.9.5",
200
- "playwright-e2e/SKILL.md": "4.9.5",
201
- "print-engine/SKILL.md": "4.9.5",
202
- "production-readonly-audit/SKILL.md": "4.9.5",
203
- "report-engine/SKILL.md": "4.9.5",
204
- "report-engine/agents/openai.yaml": "4.9.5",
205
- "search-engine/SKILL.md": "4.9.5",
206
- "search-engine/agents/openai.yaml": "4.9.5",
207
- "spider-engine/SKILL.md": "4.9.5",
208
- "translate-engine/SKILL.md": "4.9.5",
209
- "translate-engine/agents/openai.yaml": "4.9.5",
210
- "ui-design/SKILL.md": "4.9.5",
211
- "ui-design/assets/pattern-showcase/app.js": "4.9.5",
212
- "ui-design/assets/pattern-showcase/index.html": "4.9.5",
213
- "ui-design/assets/pattern-showcase/styles.css": "4.9.5",
214
- "ui-design/assets/templates/MCI-DESIGN.md": "4.9.5",
215
- "ui-design/references/design-pattern-library.md": "4.9.5",
216
- "ui-design/references/mci-design-contract.md": "4.9.5",
217
- "ui-design/references/motion-and-media.md": "4.9.5",
218
- "ui-design/references/product-flow-recipes.md": "4.9.5",
219
- "uniapp-mall-assets/SKILL.md": "4.9.5",
220
- "unity-integration/SKILL.md": "4.9.5",
221
- "unity-integration/agents/openai.yaml": "4.9.5",
222
- "unity-integration/references/ai-app-delivery.md": "4.9.5",
223
- "unity-integration/references/sdk-api.md": "4.9.5",
224
- "unity-integration/references/toolbox-migration.md": "4.9.5",
225
- "unity-integration/references/webgl-hosting.md": "4.9.5",
226
- "v8-api-config/SKILL.md": "4.9.5",
227
- "v8-cache-pattern/SKILL.md": "4.9.5",
228
- "v8-crud-api/SKILL.md": "4.9.5",
229
- "v8-debugging/SKILL.md": "4.9.5",
230
- "v8-explorer-tree/SKILL.md": "4.9.5",
231
- "v8-export-import/SKILL.md": "4.9.5",
232
- "v8-file-upload/SKILL.md": "4.9.5",
233
- "v8-formengine-http/SKILL.md": "4.9.5",
234
- "v8-frontend-events/SKILL.md": "4.9.5",
235
- "v8-frontend-events/references/bluetooth-print-api.md": "4.9.5",
236
- "v8-frontend-events/references/bluetooth-print.md": "4.9.5",
237
- "v8-http-integration/SKILL.md": "4.9.5",
238
- "v8-image-processing/SKILL.md": "4.9.5",
239
- "v8-image-processing/agents/openai.yaml": "4.9.5",
240
- "v8-image-processing/references/api-reference.md": "4.9.5",
241
- "v8-menu-buttons/SKILL.md": "4.9.5",
242
- "v8-mongodb/SKILL.md": "4.9.5",
243
- "v8-mq-mqtt/SKILL.md": "4.9.5",
244
- "v8-mq-mqtt/references/mqtt-production.md": "4.9.5",
245
- "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "4.9.5",
246
- "v8-saas-multi-tenant/SKILL.md": "4.9.5",
247
- "v8-security/SKILL.md": "4.9.5",
248
- "v8-sql-query/SKILL.md": "4.9.5",
249
- "v8-table-event/SKILL.md": "4.9.5",
250
- "v8-template-engine/SKILL.md": "4.9.5",
251
- "v8-utilities/SKILL.md": "4.9.5",
252
- "v8-utilities/references/client-api-index.md": "4.9.5",
253
- "v8-utilities/references/platform-http-routes.md": "4.9.5",
254
- "v8-utilities/references/server-api-index.md": "4.9.5",
255
- "v8-workflow/SKILL.md": "4.9.5",
256
- "workspace-conventions/SKILL.md": "4.9.5"
140
+ ".microi-skills-version.json": "4.9.6",
141
+ "README.md": "4.9.6",
142
+ "ai-engine/SKILL.md": "4.9.6",
143
+ "ai-engine/agents/openai.yaml": "4.9.6",
144
+ "ai-platform-governance/SKILL.md": "4.9.6",
145
+ "app-store/SKILL.md": "4.9.6",
146
+ "app-store/agents/openai.yaml": "4.9.6",
147
+ "business-blueprint/SKILL.md": "4.9.6",
148
+ "datasource-engine/SKILL.md": "4.9.6",
149
+ "datasource-engine/agents/openai.yaml": "4.9.6",
150
+ "dos-orm/SKILL.md": "4.9.6",
151
+ "dos-orm/references/api-reference.md": "4.9.6",
152
+ "job-engine/SKILL.md": "4.9.6",
153
+ "job-engine/agents/openai.yaml": "4.9.6",
154
+ "message-notification/SKILL.md": "4.9.6",
155
+ "message-notification/agents/openai.yaml": "4.9.6",
156
+ "message-notification/references/contracts.md": "4.9.6",
157
+ "microi-ai-app-auth.js": "4.9.6",
158
+ "microi-ai-application/SKILL.md": "4.9.6",
159
+ "microi-ai-application/agents/openai.yaml": "4.9.6",
160
+ "microi-ai-application/references/frontend-baseline.md": "4.9.6",
161
+ "microi-client-frontend/SKILL.md": "4.9.6",
162
+ "microi-codex-installer/SKILL.md": "4.9.6",
163
+ "microi-codex-installer/agents/openai.yaml": "4.9.6",
164
+ "microi-codex/SKILL.md": "4.9.6",
165
+ "microi-datasource-mapping/SKILL.md": "4.9.6",
166
+ "microi-db-schema/SKILL.md": "4.9.6",
167
+ "microi-db-schema/agents/openai.yaml": "4.9.6",
168
+ "microi-db-schema/references/core-tables.md": "4.9.6",
169
+ "microi-db-schema/references/form-component-options.md": "4.9.6",
170
+ "microi-db-schema/references/schema-overview.md": "4.9.6",
171
+ "microi-db-schema/references/schema.md": "4.9.6",
172
+ "microi-db-schema/references/table-catalog.md": "4.9.6",
173
+ "microi-deployment/SKILL.md": "4.9.6",
174
+ "microi-deployment/references/deployment-matrix.md": "4.9.6",
175
+ "microi-docs-coverage/SKILL.md": "4.9.6",
176
+ "microi-docs-coverage/references/capability-map.md": "4.9.6",
177
+ "microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "4.9.6",
178
+ "microi-form-engine/SKILL.md": "4.9.6",
179
+ "microi-form-engine/references/component-catalog.md": "4.9.6",
180
+ "microi-form-engine/references/data-source-events.md": "4.9.6",
181
+ "microi-form-layout/SKILL.md": "4.9.6",
182
+ "microi-frontend-sdk/SKILL.md": "4.9.6",
183
+ "microi-left-right-layout/SKILL.md": "4.9.6",
184
+ "microi-microservice/SKILL.md": "4.9.6",
185
+ "microi-microservice/references/runtime-delivery.md": "4.9.6",
186
+ "microi-mobile-app-quality/SKILL.md": "4.9.6",
187
+ "microi-solution-quotation/SKILL.md": "4.9.6",
188
+ "microi-solution-quotation/agents/openai.yaml": "4.9.6",
189
+ "microi-solution-quotation/scripts/build_solution_quote.py": "4.9.6",
190
+ "microi-system-delivery/SKILL.md": "4.9.6",
191
+ "microi-ui/SKILL.md": "4.9.6",
192
+ "microi-uniapp-frontend/SKILL.md": "4.9.6",
193
+ "microi.v8.js": "4.9.6",
194
+ "module-engine/SKILL.md": "4.9.6",
195
+ "module-engine/references/module-config.md": "4.9.6",
196
+ "ocr-engine/SKILL.md": "4.9.6",
197
+ "ocr-engine/agents/openai.yaml": "4.9.6",
198
+ "page-engine/SKILL.md": "4.9.6",
199
+ "performance-testing/SKILL.md": "4.9.6",
200
+ "playwright-e2e/SKILL.md": "4.9.6",
201
+ "print-engine/SKILL.md": "4.9.6",
202
+ "production-readonly-audit/SKILL.md": "4.9.6",
203
+ "report-engine/SKILL.md": "4.9.6",
204
+ "report-engine/agents/openai.yaml": "4.9.6",
205
+ "search-engine/SKILL.md": "4.9.6",
206
+ "search-engine/agents/openai.yaml": "4.9.6",
207
+ "spider-engine/SKILL.md": "4.9.6",
208
+ "translate-engine/SKILL.md": "4.9.6",
209
+ "translate-engine/agents/openai.yaml": "4.9.6",
210
+ "ui-design/SKILL.md": "4.9.6",
211
+ "ui-design/assets/pattern-showcase/app.js": "4.9.6",
212
+ "ui-design/assets/pattern-showcase/index.html": "4.9.6",
213
+ "ui-design/assets/pattern-showcase/styles.css": "4.9.6",
214
+ "ui-design/assets/templates/MCI-DESIGN.md": "4.9.6",
215
+ "ui-design/references/design-pattern-library.md": "4.9.6",
216
+ "ui-design/references/mci-design-contract.md": "4.9.6",
217
+ "ui-design/references/motion-and-media.md": "4.9.6",
218
+ "ui-design/references/product-flow-recipes.md": "4.9.6",
219
+ "uniapp-mall-assets/SKILL.md": "4.9.6",
220
+ "unity-integration/SKILL.md": "4.9.6",
221
+ "unity-integration/agents/openai.yaml": "4.9.6",
222
+ "unity-integration/references/ai-app-delivery.md": "4.9.6",
223
+ "unity-integration/references/sdk-api.md": "4.9.6",
224
+ "unity-integration/references/toolbox-migration.md": "4.9.6",
225
+ "unity-integration/references/webgl-hosting.md": "4.9.6",
226
+ "v8-api-config/SKILL.md": "4.9.6",
227
+ "v8-cache-pattern/SKILL.md": "4.9.6",
228
+ "v8-crud-api/SKILL.md": "4.9.6",
229
+ "v8-debugging/SKILL.md": "4.9.6",
230
+ "v8-explorer-tree/SKILL.md": "4.9.6",
231
+ "v8-export-import/SKILL.md": "4.9.6",
232
+ "v8-file-upload/SKILL.md": "4.9.6",
233
+ "v8-formengine-http/SKILL.md": "4.9.6",
234
+ "v8-frontend-events/SKILL.md": "4.9.6",
235
+ "v8-frontend-events/references/bluetooth-print-api.md": "4.9.6",
236
+ "v8-frontend-events/references/bluetooth-print.md": "4.9.6",
237
+ "v8-http-integration/SKILL.md": "4.9.6",
238
+ "v8-image-processing/SKILL.md": "4.9.6",
239
+ "v8-image-processing/agents/openai.yaml": "4.9.6",
240
+ "v8-image-processing/references/api-reference.md": "4.9.6",
241
+ "v8-menu-buttons/SKILL.md": "4.9.6",
242
+ "v8-mongodb/SKILL.md": "4.9.6",
243
+ "v8-mq-mqtt/SKILL.md": "4.9.6",
244
+ "v8-mq-mqtt/references/mqtt-production.md": "4.9.6",
245
+ "v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "4.9.6",
246
+ "v8-saas-multi-tenant/SKILL.md": "4.9.6",
247
+ "v8-security/SKILL.md": "4.9.6",
248
+ "v8-sql-query/SKILL.md": "4.9.6",
249
+ "v8-table-event/SKILL.md": "4.9.6",
250
+ "v8-template-engine/SKILL.md": "4.9.6",
251
+ "v8-utilities/SKILL.md": "4.9.6",
252
+ "v8-utilities/references/client-api-index.md": "4.9.6",
253
+ "v8-utilities/references/platform-http-routes.md": "4.9.6",
254
+ "v8-utilities/references/server-api-index.md": "4.9.6",
255
+ "v8-workflow/SKILL.md": "4.9.6",
256
+ "workspace-conventions/SKILL.md": "4.9.6"
257
257
  },
258
258
  "files": [
259
259
  ".microi-skills-version.json",
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.9.5",
2
+ "version": "4.9.6",
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-12T06:23:29.828Z"
5
+ "updatedAt": "2026-08-12T07:36:02.879Z"
6
6
  }
@@ -3,7 +3,7 @@ name: ai-engine
3
3
  description: Microi AI 引擎、模型代理、NL2SQL/NL2V8 与知识库规范。用于模型路由、密钥和订阅配额、Schema/Skill 关键词检索与可选向量融合、提示词安全、流式响应、租户隔离和验收。
4
4
  ---
5
5
 
6
- > **Codex 强制前置:** 当前宿主为 Codex 时,在使用本 Skill 前必须先完整读取 `../microi-codex-installer/SKILL.md`,完成“Codex 每任务最新版硬门禁”;门禁未通过不得继续本 Skill。非 Codex 宿主跳过此项。
6
+ > **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
7
7
 
8
8
  # Microi AI Engine
9
9
 
@@ -3,7 +3,7 @@ name: ai-platform-governance
3
3
  description: Microi吾码 AI 平台治理中心设计、调用、扩展、应用商城升级与验收规范。用于门户与资源版本、身份目录/用户组/权限解释、配置模板与漂移、功能开关、发布审批/门禁/断点回滚、服务注册路由与韧性、Trace/告警/日志生命周期、资产物料、协作租约和可恢复导入。
4
4
  ---
5
5
 
6
- > **Codex 强制前置:** 当前宿主为 Codex 时,在使用本 Skill 前必须先完整读取 `../microi-codex-installer/SKILL.md`,完成“Codex 每任务最新版硬门禁”;门禁未通过不得继续本 Skill。非 Codex 宿主跳过此项。
6
+ > **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
7
7
 
8
8
  # Microi吾码 AI 平台治理中心
9
9
 
@@ -3,7 +3,7 @@ name: app-store
3
3
  description: Microi 应用商城开发、打包、安装和升级规范。用于官方/社区应用、Manifest、源码与构建产物、依赖、后台安装任务、租户隔离、增量升级、回滚和验收。
4
4
  ---
5
5
 
6
- > **Codex 强制前置:** 当前宿主为 Codex 时,在使用本 Skill 前必须先完整读取 `../microi-codex-installer/SKILL.md`,完成“Codex 每任务最新版硬门禁”;门禁未通过不得继续本 Skill。非 Codex 宿主跳过此项。
6
+ > **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
7
7
 
8
8
  # Microi 应用商城
9
9
 
@@ -3,7 +3,7 @@ name: business-blueprint
3
3
  description: Microi 业务架构蓝图(System Blueprint)— 设计期系统知识图谱,AI 生成低代码系统时防幻觉的唯一事实源
4
4
  ---
5
5
 
6
- > **Codex 强制前置:** 当前宿主为 Codex 时,在使用本 Skill 前必须先完整读取 `../microi-codex-installer/SKILL.md`,完成“Codex 每任务最新版硬门禁”;门禁未通过不得继续本 Skill。非 Codex 宿主跳过此项。
6
+ > **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
7
7
 
8
8
  # Microi 业务架构蓝图(System Blueprint)
9
9
 
@@ -3,7 +3,7 @@ name: datasource-engine
3
3
  description: Microi 数据源引擎设计、调用与安全规范。用于配置 sys_datasource 的 SQL、V8、JSON 数据源,为表单选项、报表、接口或远程搜索供数,以及通过前后端 V8.DataSourceEngine.Run 调用和验收。
4
4
  ---
5
5
 
6
- > **Codex 强制前置:** 当前宿主为 Codex 时,在使用本 Skill 前必须先完整读取 `../microi-codex-installer/SKILL.md`,完成“Codex 每任务最新版硬门禁”;门禁未通过不得继续本 Skill。非 Codex 宿主跳过此项。
6
+ > **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
7
7
 
8
8
  # Microi 数据源引擎
9
9
 
@@ -3,7 +3,7 @@ name: dos-orm
3
3
  description: Dos.ORM C# 数据访问指南。用于 Microi.Server 中编写或审查 DbSession、Entity、From、WhereClip、事务、异步查询、BulkInsert、Upsert、SqlFunc、子查询、导航属性、CodeFirst、读写分离和分库分表代码。
4
4
  ---
5
5
 
6
- > **Codex 强制前置:** 当前宿主为 Codex 时,在使用本 Skill 前必须先完整读取 `../microi-codex-installer/SKILL.md`,完成“Codex 每任务最新版硬门禁”;门禁未通过不得继续本 Skill。非 Codex 宿主跳过此项。
6
+ > **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
7
7
 
8
8
  # Dos.ORM
9
9
 
@@ -3,7 +3,7 @@ name: job-engine
3
3
  description: Microi 定时任务与可靠后台任务规范。用于配置 Microi.Job、Quartz 和接口引擎任务,设计多节点租约、幂等、重试、停机排空、恢复、进度与验收。
4
4
  ---
5
5
 
6
- > **Codex 强制前置:** 当前宿主为 Codex 时,在使用本 Skill 前必须先完整读取 `../microi-codex-installer/SKILL.md`,完成“Codex 每任务最新版硬门禁”;门禁未通过不得继续本 Skill。非 Codex 宿主跳过此项。
6
+ > **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
7
7
 
8
8
  # Microi Job 定时与后台任务
9
9
 
@@ -3,7 +3,7 @@ name: message-notification
3
3
  description: 设计、实现、迁移和验收 Microi 多通道消息通知。用于涉及 wx_tpl_msg、mic_msgset、mic_msg_event_log、微信公众号或服务号模板消息、小程序跳转、短信、邮件、平台内部通知、V8.Notification、通知中心 SignalR、msg_event、消息幂等或通知应用商城交付的任务。
4
4
  ---
5
5
 
6
- > **Codex 强制前置:** 当前宿主为 Codex 时,在使用本 Skill 前必须先完整读取 `../microi-codex-installer/SKILL.md`,完成“Codex 每任务最新版硬门禁”;门禁未通过不得继续本 Skill。非 Codex 宿主跳过此项。
6
+ > **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
7
7
 
8
8
  # Microi 消息通知
9
9