@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.
- package/.codebuddy-plugin/marketplace.json +2 -2
- package/.codebuddy-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.workbuddy-plugin/marketplace.json +2 -2
- package/.workbuddy-plugin/plugin.json +1 -1
- package/README.md +7 -12
- package/assets/build-meta.json +4 -4
- package/package.json +1 -1
- package/scripts/microi-cli.js +78 -60
- package/scripts/microi-codex-router.js +30 -0
- package/scripts/microi-skills.meta.json +185 -185
- package/skills/.microi-skills-version.json +2 -2
- package/skills/ai-engine/SKILL.md +1 -1
- package/skills/ai-platform-governance/SKILL.md +1 -1
- package/skills/app-store/SKILL.md +1 -1
- package/skills/business-blueprint/SKILL.md +1 -1
- package/skills/datasource-engine/SKILL.md +1 -1
- package/skills/dos-orm/SKILL.md +1 -1
- package/skills/job-engine/SKILL.md +1 -1
- package/skills/message-notification/SKILL.md +1 -1
- package/skills/microi-ai-application/SKILL.md +1 -1
- package/skills/microi-client-frontend/SKILL.md +1 -1
- package/skills/microi-codex/SKILL.md +4 -4
- package/skills/microi-codex-installer/SKILL.md +25 -36
- package/skills/microi-datasource-mapping/SKILL.md +1 -1
- package/skills/microi-db-schema/SKILL.md +1 -1
- package/skills/microi-deployment/SKILL.md +1 -1
- package/skills/microi-docs-coverage/SKILL.md +1 -1
- package/skills/microi-form-engine/SKILL.md +1 -1
- package/skills/microi-form-layout/SKILL.md +1 -1
- package/skills/microi-frontend-sdk/SKILL.md +1 -1
- package/skills/microi-left-right-layout/SKILL.md +1 -1
- package/skills/microi-microservice/SKILL.md +8 -1
- package/skills/microi-microservice/references/runtime-delivery.md +4 -0
- package/skills/microi-mobile-app-quality/SKILL.md +1 -1
- package/skills/microi-solution-quotation/SKILL.md +1 -1
- package/skills/microi-system-delivery/SKILL.md +1 -1
- package/skills/microi-ui/SKILL.md +1 -1
- package/skills/microi-uniapp-frontend/SKILL.md +1 -1
- package/skills/module-engine/SKILL.md +1 -1
- package/skills/ocr-engine/SKILL.md +1 -1
- package/skills/page-engine/SKILL.md +1 -1
- package/skills/performance-testing/SKILL.md +1 -1
- package/skills/playwright-e2e/SKILL.md +1 -1
- package/skills/print-engine/SKILL.md +1 -1
- package/skills/production-readonly-audit/SKILL.md +1 -1
- package/skills/report-engine/SKILL.md +1 -1
- package/skills/search-engine/SKILL.md +1 -1
- package/skills/spider-engine/SKILL.md +1 -1
- package/skills/translate-engine/SKILL.md +1 -1
- package/skills/ui-design/SKILL.md +1 -1
- package/skills/uniapp-mall-assets/SKILL.md +1 -1
- package/skills/unity-integration/SKILL.md +1 -1
- package/skills/v8-api-config/SKILL.md +1 -1
- package/skills/v8-cache-pattern/SKILL.md +1 -1
- package/skills/v8-crud-api/SKILL.md +1 -1
- package/skills/v8-debugging/SKILL.md +1 -1
- package/skills/v8-explorer-tree/SKILL.md +1 -1
- package/skills/v8-export-import/SKILL.md +1 -1
- package/skills/v8-file-upload/SKILL.md +1 -1
- package/skills/v8-formengine-http/SKILL.md +1 -1
- package/skills/v8-frontend-events/SKILL.md +1 -1
- package/skills/v8-http-integration/SKILL.md +1 -1
- package/skills/v8-image-processing/SKILL.md +1 -1
- package/skills/v8-menu-buttons/SKILL.md +1 -1
- package/skills/v8-mongodb/SKILL.md +1 -1
- package/skills/v8-mq-mqtt/SKILL.md +1 -1
- package/skills/v8-saas-multi-tenant/SKILL.md +1 -1
- package/skills/v8-security/SKILL.md +1 -1
- package/skills/v8-sql-query/SKILL.md +1 -1
- package/skills/v8-table-event/SKILL.md +1 -1
- package/skills/v8-template-engine/SKILL.md +1 -1
- package/skills/v8-utilities/SKILL.md +1 -1
- package/skills/v8-workflow/SKILL.md +1 -1
- 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-
|
|
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.
|
|
6
|
+
"version": "4.9.6",
|
|
7
7
|
"publisher": "Microi"
|
|
8
8
|
},
|
|
9
9
|
"skills": {
|
|
10
|
-
"version": "4.9.
|
|
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":
|
|
18
|
+
"bytes": 1805625
|
|
19
19
|
},
|
|
20
20
|
"fileHashes": {
|
|
21
|
-
".microi-skills-version.json": "
|
|
21
|
+
".microi-skills-version.json": "87afb8796fd14ce5eb9b928b36baba715e153be1a35d5c4dba7967a0f60b34c8",
|
|
22
22
|
"README.md": "168697be6864bbb12befa9a6723d93ea9d1c8b5a615006038c31b09e1171860c",
|
|
23
|
-
"ai-engine/SKILL.md": "
|
|
23
|
+
"ai-engine/SKILL.md": "4f8d12e27259528e1c25f21f5edd8cb62395868a8996389104436aeca10fc81c",
|
|
24
24
|
"ai-engine/agents/openai.yaml": "40deb07801006a46b9a7f0020d13251955eeadd04c8e591160210479936f8b5b",
|
|
25
|
-
"ai-platform-governance/SKILL.md": "
|
|
26
|
-
"app-store/SKILL.md": "
|
|
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": "
|
|
29
|
-
"datasource-engine/SKILL.md": "
|
|
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": "
|
|
31
|
+
"dos-orm/SKILL.md": "4eba99627516f5a73070e3158bfaa28afde21ad6aae4d6b7c546947ebdd79c5e",
|
|
32
32
|
"dos-orm/references/api-reference.md": "facc5e62cd6439a06263580dab9656271118d4bb5a91b5d9230a79136e6daa72",
|
|
33
|
-
"job-engine/SKILL.md": "
|
|
33
|
+
"job-engine/SKILL.md": "684b6884e924cfc334a3368937c6802ebaf84e60d60d90bbf42ad61fa999023b",
|
|
34
34
|
"job-engine/agents/openai.yaml": "65889ee39bc34caca9085539d8954a381aab93590c5635eea3bb6f4c001934af",
|
|
35
|
-
"message-notification/SKILL.md": "
|
|
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": "
|
|
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": "
|
|
43
|
-
"microi-codex-installer/SKILL.md": "
|
|
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": "
|
|
46
|
-
"microi-datasource-mapping/SKILL.md": "
|
|
47
|
-
"microi-db-schema/SKILL.md": "
|
|
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": "
|
|
54
|
+
"microi-deployment/SKILL.md": "e92e3238c7264e12b641e6895f1f51787fe13287ed9365cd93b2f77e5504daf5",
|
|
55
55
|
"microi-deployment/references/deployment-matrix.md": "32d9d1424bf19eae0d2cee2b1667203c830ea7610c71a806e7ddf785a0083009",
|
|
56
|
-
"microi-docs-coverage/SKILL.md": "
|
|
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": "
|
|
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": "
|
|
63
|
-
"microi-frontend-sdk/SKILL.md": "
|
|
64
|
-
"microi-left-right-layout/SKILL.md": "
|
|
65
|
-
"microi-microservice/SKILL.md": "
|
|
66
|
-
"microi-microservice/references/runtime-delivery.md": "
|
|
67
|
-
"microi-mobile-app-quality/SKILL.md": "
|
|
68
|
-
"microi-solution-quotation/SKILL.md": "
|
|
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": "
|
|
72
|
-
"microi-ui/SKILL.md": "
|
|
73
|
-
"microi-uniapp-frontend/SKILL.md": "
|
|
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": "
|
|
75
|
+
"module-engine/SKILL.md": "c023ddb2100a81a4b1c8eff247444f18862b07eebbb9f290b79284be0d836f5d",
|
|
76
76
|
"module-engine/references/module-config.md": "900f3baf7ae8d1311b1e1b8553aeae2ece4d8260fea29a1bd4237f3f9f35fe7d",
|
|
77
|
-
"ocr-engine/SKILL.md": "
|
|
77
|
+
"ocr-engine/SKILL.md": "239fed8ba28c0178fbbcc4c3dc8d4f3b8b8cf1d2b794db2014c2600ea7835da6",
|
|
78
78
|
"ocr-engine/agents/openai.yaml": "3a6cc9984a246c41332c5f53d1badef31b78f81324333ea0d6337cb20c7fc898",
|
|
79
|
-
"page-engine/SKILL.md": "
|
|
80
|
-
"performance-testing/SKILL.md": "
|
|
81
|
-
"playwright-e2e/SKILL.md": "
|
|
82
|
-
"print-engine/SKILL.md": "
|
|
83
|
-
"production-readonly-audit/SKILL.md": "
|
|
84
|
-
"report-engine/SKILL.md": "
|
|
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": "
|
|
86
|
+
"search-engine/SKILL.md": "c1c33ed02a91a6e8d482f05208a0d49c3dc6639165c9cc017e0e270db0d7ee7e",
|
|
87
87
|
"search-engine/agents/openai.yaml": "5ddbe54965386287b00eba1cd7e38f3c7058edc437538f12ddb165f96f75a6eb",
|
|
88
|
-
"spider-engine/SKILL.md": "
|
|
89
|
-
"translate-engine/SKILL.md": "
|
|
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": "
|
|
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": "
|
|
101
|
-
"unity-integration/SKILL.md": "
|
|
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": "
|
|
108
|
-
"v8-cache-pattern/SKILL.md": "
|
|
109
|
-
"v8-crud-api/SKILL.md": "
|
|
110
|
-
"v8-debugging/SKILL.md": "
|
|
111
|
-
"v8-explorer-tree/SKILL.md": "
|
|
112
|
-
"v8-export-import/SKILL.md": "
|
|
113
|
-
"v8-file-upload/SKILL.md": "
|
|
114
|
-
"v8-formengine-http/SKILL.md": "
|
|
115
|
-
"v8-frontend-events/SKILL.md": "
|
|
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": "
|
|
119
|
-
"v8-image-processing/SKILL.md": "
|
|
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": "
|
|
123
|
-
"v8-mongodb/SKILL.md": "
|
|
124
|
-
"v8-mq-mqtt/SKILL.md": "
|
|
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": "
|
|
128
|
-
"v8-security/SKILL.md": "
|
|
129
|
-
"v8-sql-query/SKILL.md": "
|
|
130
|
-
"v8-table-event/SKILL.md": "
|
|
131
|
-
"v8-template-engine/SKILL.md": "
|
|
132
|
-
"v8-utilities/SKILL.md": "
|
|
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": "
|
|
137
|
-
"workspace-conventions/SKILL.md": "
|
|
136
|
+
"v8-workflow/SKILL.md": "4166c7c69048aafd864212a923853c140e837b9e7b5d2805e1c60a191dc8bae1",
|
|
137
|
+
"workspace-conventions/SKILL.md": "46efdcf82c01cad55431ddcdfaa66938df9ab7dabb88a011e0e4d14bfa7e45ff"
|
|
138
138
|
},
|
|
139
139
|
"fileVersions": {
|
|
140
|
-
".microi-skills-version.json": "4.9.
|
|
141
|
-
"README.md": "4.9.
|
|
142
|
-
"ai-engine/SKILL.md": "4.9.
|
|
143
|
-
"ai-engine/agents/openai.yaml": "4.9.
|
|
144
|
-
"ai-platform-governance/SKILL.md": "4.9.
|
|
145
|
-
"app-store/SKILL.md": "4.9.
|
|
146
|
-
"app-store/agents/openai.yaml": "4.9.
|
|
147
|
-
"business-blueprint/SKILL.md": "4.9.
|
|
148
|
-
"datasource-engine/SKILL.md": "4.9.
|
|
149
|
-
"datasource-engine/agents/openai.yaml": "4.9.
|
|
150
|
-
"dos-orm/SKILL.md": "4.9.
|
|
151
|
-
"dos-orm/references/api-reference.md": "4.9.
|
|
152
|
-
"job-engine/SKILL.md": "4.9.
|
|
153
|
-
"job-engine/agents/openai.yaml": "4.9.
|
|
154
|
-
"message-notification/SKILL.md": "4.9.
|
|
155
|
-
"message-notification/agents/openai.yaml": "4.9.
|
|
156
|
-
"message-notification/references/contracts.md": "4.9.
|
|
157
|
-
"microi-ai-app-auth.js": "4.9.
|
|
158
|
-
"microi-ai-application/SKILL.md": "4.9.
|
|
159
|
-
"microi-ai-application/agents/openai.yaml": "4.9.
|
|
160
|
-
"microi-ai-application/references/frontend-baseline.md": "4.9.
|
|
161
|
-
"microi-client-frontend/SKILL.md": "4.9.
|
|
162
|
-
"microi-codex-installer/SKILL.md": "4.9.
|
|
163
|
-
"microi-codex-installer/agents/openai.yaml": "4.9.
|
|
164
|
-
"microi-codex/SKILL.md": "4.9.
|
|
165
|
-
"microi-datasource-mapping/SKILL.md": "4.9.
|
|
166
|
-
"microi-db-schema/SKILL.md": "4.9.
|
|
167
|
-
"microi-db-schema/agents/openai.yaml": "4.9.
|
|
168
|
-
"microi-db-schema/references/core-tables.md": "4.9.
|
|
169
|
-
"microi-db-schema/references/form-component-options.md": "4.9.
|
|
170
|
-
"microi-db-schema/references/schema-overview.md": "4.9.
|
|
171
|
-
"microi-db-schema/references/schema.md": "4.9.
|
|
172
|
-
"microi-db-schema/references/table-catalog.md": "4.9.
|
|
173
|
-
"microi-deployment/SKILL.md": "4.9.
|
|
174
|
-
"microi-deployment/references/deployment-matrix.md": "4.9.
|
|
175
|
-
"microi-docs-coverage/SKILL.md": "4.9.
|
|
176
|
-
"microi-docs-coverage/references/capability-map.md": "4.9.
|
|
177
|
-
"microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "4.9.
|
|
178
|
-
"microi-form-engine/SKILL.md": "4.9.
|
|
179
|
-
"microi-form-engine/references/component-catalog.md": "4.9.
|
|
180
|
-
"microi-form-engine/references/data-source-events.md": "4.9.
|
|
181
|
-
"microi-form-layout/SKILL.md": "4.9.
|
|
182
|
-
"microi-frontend-sdk/SKILL.md": "4.9.
|
|
183
|
-
"microi-left-right-layout/SKILL.md": "4.9.
|
|
184
|
-
"microi-microservice/SKILL.md": "4.9.
|
|
185
|
-
"microi-microservice/references/runtime-delivery.md": "4.9.
|
|
186
|
-
"microi-mobile-app-quality/SKILL.md": "4.9.
|
|
187
|
-
"microi-solution-quotation/SKILL.md": "4.9.
|
|
188
|
-
"microi-solution-quotation/agents/openai.yaml": "4.9.
|
|
189
|
-
"microi-solution-quotation/scripts/build_solution_quote.py": "4.9.
|
|
190
|
-
"microi-system-delivery/SKILL.md": "4.9.
|
|
191
|
-
"microi-ui/SKILL.md": "4.9.
|
|
192
|
-
"microi-uniapp-frontend/SKILL.md": "4.9.
|
|
193
|
-
"microi.v8.js": "4.9.
|
|
194
|
-
"module-engine/SKILL.md": "4.9.
|
|
195
|
-
"module-engine/references/module-config.md": "4.9.
|
|
196
|
-
"ocr-engine/SKILL.md": "4.9.
|
|
197
|
-
"ocr-engine/agents/openai.yaml": "4.9.
|
|
198
|
-
"page-engine/SKILL.md": "4.9.
|
|
199
|
-
"performance-testing/SKILL.md": "4.9.
|
|
200
|
-
"playwright-e2e/SKILL.md": "4.9.
|
|
201
|
-
"print-engine/SKILL.md": "4.9.
|
|
202
|
-
"production-readonly-audit/SKILL.md": "4.9.
|
|
203
|
-
"report-engine/SKILL.md": "4.9.
|
|
204
|
-
"report-engine/agents/openai.yaml": "4.9.
|
|
205
|
-
"search-engine/SKILL.md": "4.9.
|
|
206
|
-
"search-engine/agents/openai.yaml": "4.9.
|
|
207
|
-
"spider-engine/SKILL.md": "4.9.
|
|
208
|
-
"translate-engine/SKILL.md": "4.9.
|
|
209
|
-
"translate-engine/agents/openai.yaml": "4.9.
|
|
210
|
-
"ui-design/SKILL.md": "4.9.
|
|
211
|
-
"ui-design/assets/pattern-showcase/app.js": "4.9.
|
|
212
|
-
"ui-design/assets/pattern-showcase/index.html": "4.9.
|
|
213
|
-
"ui-design/assets/pattern-showcase/styles.css": "4.9.
|
|
214
|
-
"ui-design/assets/templates/MCI-DESIGN.md": "4.9.
|
|
215
|
-
"ui-design/references/design-pattern-library.md": "4.9.
|
|
216
|
-
"ui-design/references/mci-design-contract.md": "4.9.
|
|
217
|
-
"ui-design/references/motion-and-media.md": "4.9.
|
|
218
|
-
"ui-design/references/product-flow-recipes.md": "4.9.
|
|
219
|
-
"uniapp-mall-assets/SKILL.md": "4.9.
|
|
220
|
-
"unity-integration/SKILL.md": "4.9.
|
|
221
|
-
"unity-integration/agents/openai.yaml": "4.9.
|
|
222
|
-
"unity-integration/references/ai-app-delivery.md": "4.9.
|
|
223
|
-
"unity-integration/references/sdk-api.md": "4.9.
|
|
224
|
-
"unity-integration/references/toolbox-migration.md": "4.9.
|
|
225
|
-
"unity-integration/references/webgl-hosting.md": "4.9.
|
|
226
|
-
"v8-api-config/SKILL.md": "4.9.
|
|
227
|
-
"v8-cache-pattern/SKILL.md": "4.9.
|
|
228
|
-
"v8-crud-api/SKILL.md": "4.9.
|
|
229
|
-
"v8-debugging/SKILL.md": "4.9.
|
|
230
|
-
"v8-explorer-tree/SKILL.md": "4.9.
|
|
231
|
-
"v8-export-import/SKILL.md": "4.9.
|
|
232
|
-
"v8-file-upload/SKILL.md": "4.9.
|
|
233
|
-
"v8-formengine-http/SKILL.md": "4.9.
|
|
234
|
-
"v8-frontend-events/SKILL.md": "4.9.
|
|
235
|
-
"v8-frontend-events/references/bluetooth-print-api.md": "4.9.
|
|
236
|
-
"v8-frontend-events/references/bluetooth-print.md": "4.9.
|
|
237
|
-
"v8-http-integration/SKILL.md": "4.9.
|
|
238
|
-
"v8-image-processing/SKILL.md": "4.9.
|
|
239
|
-
"v8-image-processing/agents/openai.yaml": "4.9.
|
|
240
|
-
"v8-image-processing/references/api-reference.md": "4.9.
|
|
241
|
-
"v8-menu-buttons/SKILL.md": "4.9.
|
|
242
|
-
"v8-mongodb/SKILL.md": "4.9.
|
|
243
|
-
"v8-mq-mqtt/SKILL.md": "4.9.
|
|
244
|
-
"v8-mq-mqtt/references/mqtt-production.md": "4.9.
|
|
245
|
-
"v8-mq-mqtt/scripts/check-mqtt-skill-coverage.mjs": "4.9.
|
|
246
|
-
"v8-saas-multi-tenant/SKILL.md": "4.9.
|
|
247
|
-
"v8-security/SKILL.md": "4.9.
|
|
248
|
-
"v8-sql-query/SKILL.md": "4.9.
|
|
249
|
-
"v8-table-event/SKILL.md": "4.9.
|
|
250
|
-
"v8-template-engine/SKILL.md": "4.9.
|
|
251
|
-
"v8-utilities/SKILL.md": "4.9.
|
|
252
|
-
"v8-utilities/references/client-api-index.md": "4.9.
|
|
253
|
-
"v8-utilities/references/platform-http-routes.md": "4.9.
|
|
254
|
-
"v8-utilities/references/server-api-index.md": "4.9.
|
|
255
|
-
"v8-workflow/SKILL.md": "4.9.
|
|
256
|
-
"workspace-conventions/SKILL.md": "4.9.
|
|
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.
|
|
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-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
6
|
+
> **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
|
|
7
7
|
|
|
8
8
|
# Microi 数据源引擎
|
|
9
9
|
|
package/skills/dos-orm/SKILL.md
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
6
|
+
> **Codex 非阻塞自动更新:** 当前宿主为 Codex 时,吾码 CLI、Codex 插件与工作区 AI/MCP 由后台自动更新;需要诊断时读取 `../microi-codex-installer/SKILL.md`。更新失败、等待空闲或尚未重载均不得阻断当前、正在进行或新建任务。非 Codex 宿主跳过此项。
|
|
7
7
|
|
|
8
8
|
# Microi 消息通知
|
|
9
9
|
|