@microi.net/cli 4.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +66 -0
- package/dist/mcp-codex-stdio-adapter.js +189 -0
- package/dist/mcp-server.js +972 -0
- package/dist/mcp-trae-windows-launcher.cmd +21 -0
- package/dist/microi-cli-mcp.js +7 -0
- package/dist/microi-cli.js +1645 -0
- package/dist/microi-skills.meta.json +335 -0
- package/dist/microi.skills/.microi-skills-version.json +6 -0
- package/dist/microi.skills/README.md +276 -0
- package/dist/microi.skills/ai-engine/SKILL.md +140 -0
- package/dist/microi.skills/ai-engine/agents/openai.yaml +4 -0
- package/dist/microi.skills/app-store/SKILL.md +105 -0
- package/dist/microi.skills/app-store/agents/openai.yaml +4 -0
- package/dist/microi.skills/business-blueprint/SKILL.md +184 -0
- package/dist/microi.skills/datasource-engine/SKILL.md +89 -0
- package/dist/microi.skills/datasource-engine/agents/openai.yaml +4 -0
- package/dist/microi.skills/dos-orm/SKILL.md +76 -0
- package/dist/microi.skills/dos-orm/references/api-reference.md +229 -0
- package/dist/microi.skills/job-engine/SKILL.md +141 -0
- package/dist/microi.skills/job-engine/agents/openai.yaml +4 -0
- package/dist/microi.skills/message-notification/SKILL.md +113 -0
- package/dist/microi.skills/message-notification/agents/openai.yaml +6 -0
- package/dist/microi.skills/message-notification/references/contracts.md +99 -0
- package/dist/microi.skills/microi-ai-app-auth.js +651 -0
- package/dist/microi.skills/microi-ai-application/SKILL.md +80 -0
- package/dist/microi.skills/microi-ai-application/agents/openai.yaml +4 -0
- package/dist/microi.skills/microi-ai-application/references/frontend-baseline.md +164 -0
- package/dist/microi.skills/microi-client-frontend/SKILL.md +562 -0
- package/dist/microi.skills/microi-datasource-mapping/SKILL.md +108 -0
- package/dist/microi.skills/microi-db-schema/SKILL.md +170 -0
- package/dist/microi.skills/microi-db-schema/agents/openai.yaml +4 -0
- package/dist/microi.skills/microi-db-schema/references/core-tables.md +695 -0
- package/dist/microi.skills/microi-db-schema/references/form-component-options.md +256 -0
- package/dist/microi.skills/microi-db-schema/references/schema-overview.md +203 -0
- package/dist/microi.skills/microi-db-schema/references/schema.md +647 -0
- package/dist/microi.skills/microi-db-schema/references/table-catalog.md +1607 -0
- package/dist/microi.skills/microi-deployment/SKILL.md +117 -0
- package/dist/microi.skills/microi-deployment/references/deployment-matrix.md +94 -0
- package/dist/microi.skills/microi-docs-coverage/SKILL.md +91 -0
- package/dist/microi.skills/microi-docs-coverage/references/capability-map.md +65 -0
- package/dist/microi.skills/microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs +887 -0
- package/dist/microi.skills/microi-form-engine/SKILL.md +159 -0
- package/dist/microi.skills/microi-form-engine/references/component-catalog.md +116 -0
- package/dist/microi.skills/microi-form-engine/references/data-source-events.md +117 -0
- package/dist/microi.skills/microi-form-layout/SKILL.md +373 -0
- package/dist/microi.skills/microi-frontend-sdk/SKILL.md +304 -0
- package/dist/microi.skills/microi-left-right-layout/SKILL.md +132 -0
- package/dist/microi.skills/microi-microservice/SKILL.md +115 -0
- package/dist/microi.skills/microi-microservice/references/runtime-delivery.md +145 -0
- package/dist/microi.skills/microi-mobile-app-quality/SKILL.md +436 -0
- package/dist/microi.skills/microi-solution-quotation/SKILL.md +76 -0
- package/dist/microi.skills/microi-solution-quotation/agents/openai.yaml +4 -0
- package/dist/microi.skills/microi-solution-quotation/scripts/build_solution_quote.py +296 -0
- package/dist/microi.skills/microi-system-delivery/SKILL.md +446 -0
- package/dist/microi.skills/microi-ui/SKILL.md +321 -0
- package/dist/microi.skills/microi-uniapp-frontend/SKILL.md +483 -0
- package/dist/microi.skills/microi.v8.js +1758 -0
- package/dist/microi.skills/module-engine/SKILL.md +131 -0
- package/dist/microi.skills/module-engine/references/module-config.md +174 -0
- package/dist/microi.skills/page-engine/SKILL.md +397 -0
- package/dist/microi.skills/performance-testing/SKILL.md +207 -0
- package/dist/microi.skills/playwright-e2e/SKILL.md +769 -0
- package/dist/microi.skills/print-engine/SKILL.md +237 -0
- package/dist/microi.skills/production-readonly-audit/SKILL.md +39 -0
- package/dist/microi.skills/report-engine/SKILL.md +69 -0
- package/dist/microi.skills/report-engine/agents/openai.yaml +4 -0
- package/dist/microi.skills/search-engine/SKILL.md +73 -0
- package/dist/microi.skills/search-engine/agents/openai.yaml +4 -0
- package/dist/microi.skills/spider-engine/SKILL.md +188 -0
- package/dist/microi.skills/translate-engine/SKILL.md +91 -0
- package/dist/microi.skills/translate-engine/agents/openai.yaml +4 -0
- package/dist/microi.skills/ui-design/SKILL.md +1575 -0
- package/dist/microi.skills/ui-design/assets/pattern-showcase/app.js +54 -0
- package/dist/microi.skills/ui-design/assets/pattern-showcase/index.html +163 -0
- package/dist/microi.skills/ui-design/assets/pattern-showcase/styles.css +311 -0
- package/dist/microi.skills/ui-design/assets/templates/MCI-DESIGN.md +98 -0
- package/dist/microi.skills/ui-design/references/design-pattern-library.md +171 -0
- package/dist/microi.skills/ui-design/references/mci-design-contract.md +84 -0
- package/dist/microi.skills/ui-design/references/motion-and-media.md +71 -0
- package/dist/microi.skills/ui-design/references/product-flow-recipes.md +94 -0
- package/dist/microi.skills/uniapp-mall-assets/SKILL.md +105 -0
- package/dist/microi.skills/v8-api-config/SKILL.md +272 -0
- package/dist/microi.skills/v8-cache-pattern/SKILL.md +286 -0
- package/dist/microi.skills/v8-crud-api/SKILL.md +398 -0
- package/dist/microi.skills/v8-debugging/SKILL.md +279 -0
- package/dist/microi.skills/v8-explorer-tree/SKILL.md +224 -0
- package/dist/microi.skills/v8-export-import/SKILL.md +590 -0
- package/dist/microi.skills/v8-file-upload/SKILL.md +497 -0
- package/dist/microi.skills/v8-formengine-http/SKILL.md +218 -0
- package/dist/microi.skills/v8-frontend-events/SKILL.md +349 -0
- package/dist/microi.skills/v8-frontend-events/references/bluetooth-print-api.md +107 -0
- package/dist/microi.skills/v8-frontend-events/references/bluetooth-print.md +185 -0
- package/dist/microi.skills/v8-http-integration/SKILL.md +379 -0
- package/dist/microi.skills/v8-image-processing/SKILL.md +187 -0
- package/dist/microi.skills/v8-image-processing/agents/openai.yaml +4 -0
- package/dist/microi.skills/v8-image-processing/references/api-reference.md +620 -0
- package/dist/microi.skills/v8-menu-buttons/SKILL.md +661 -0
- package/dist/microi.skills/v8-mongodb/SKILL.md +149 -0
- package/dist/microi.skills/v8-mq-mqtt/SKILL.md +227 -0
- package/dist/microi.skills/v8-saas-multi-tenant/SKILL.md +193 -0
- package/dist/microi.skills/v8-security/SKILL.md +417 -0
- package/dist/microi.skills/v8-sql-query/SKILL.md +290 -0
- package/dist/microi.skills/v8-table-event/SKILL.md +385 -0
- package/dist/microi.skills/v8-template-engine/SKILL.md +165 -0
- package/dist/microi.skills/v8-utilities/SKILL.md +79 -0
- package/dist/microi.skills/v8-utilities/references/client-api-index.md +136 -0
- package/dist/microi.skills/v8-utilities/references/platform-http-routes.md +80 -0
- package/dist/microi.skills/v8-utilities/references/server-api-index.md +129 -0
- package/dist/microi.skills/v8-workflow/SKILL.md +322 -0
- package/dist/microi.skills/workspace-conventions/SKILL.md +479 -0
- package/package.json +40 -0
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
{
|
|
2
|
+
"builtAt": "2026-08-03T07:14:57.461Z",
|
|
3
|
+
"source": "../microi.skills",
|
|
4
|
+
"extension": {
|
|
5
|
+
"name": "v8-engine",
|
|
6
|
+
"version": "4.6.2",
|
|
7
|
+
"publisher": "Microi"
|
|
8
|
+
},
|
|
9
|
+
"skills": {
|
|
10
|
+
"version": "4.6.2",
|
|
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
|
+
"managedBy": "Microi.VSCode/bump-version.js"
|
|
13
|
+
},
|
|
14
|
+
"output": {
|
|
15
|
+
"dir": "dist/microi.skills",
|
|
16
|
+
"files": 103,
|
|
17
|
+
"skills": 57,
|
|
18
|
+
"bytes": 1536139
|
|
19
|
+
},
|
|
20
|
+
"fileHashes": {
|
|
21
|
+
".microi-skills-version.json": "4bba533fb2e09890b489748bb74140e49db06aa670e9ab374796ae1b5199850f",
|
|
22
|
+
"README.md": "8ce5d0625122fcd0f125401e3d7a1a3a67e8ae75c0a1a5441231e238c7042786",
|
|
23
|
+
"ai-engine/SKILL.md": "ad435d66b246ae432d456608d4ba059a9d9b9cdcf7b3eae08d51e79285ab59c6",
|
|
24
|
+
"ai-engine/agents/openai.yaml": "40deb07801006a46b9a7f0020d13251955eeadd04c8e591160210479936f8b5b",
|
|
25
|
+
"app-store/SKILL.md": "0c1578976086f0c166b75ce87dff41db18462f3e57f64c495b80ffc337ff3313",
|
|
26
|
+
"app-store/agents/openai.yaml": "eda8f5cf043e7b8fb0e4fb3acf0625fef95eb49586b43187ced277cd0ae4a2c4",
|
|
27
|
+
"business-blueprint/SKILL.md": "ea379a85476d262f4fc72a5846a06354893065052ef64370bbc7e3a2753a498d",
|
|
28
|
+
"datasource-engine/SKILL.md": "bfd0cab8318eef375ca49f27c0511fce7e939a1c795678e83cf2d3438e24915f",
|
|
29
|
+
"datasource-engine/agents/openai.yaml": "f7cfd13ec721e0991af29b685cd00bb1aec6e5ffb5f198ad59b0eb6e39814725",
|
|
30
|
+
"dos-orm/SKILL.md": "ed4edb7db7c2b066729c228b28b5a5d7cd2c1cb3c3a5be3f10bd533c301318c3",
|
|
31
|
+
"dos-orm/references/api-reference.md": "facc5e62cd6439a06263580dab9656271118d4bb5a91b5d9230a79136e6daa72",
|
|
32
|
+
"job-engine/SKILL.md": "12f175f8de9610a6994bf11931810f4dce2cd0cdcd1f5b575dee4fd2b636658c",
|
|
33
|
+
"job-engine/agents/openai.yaml": "65889ee39bc34caca9085539d8954a381aab93590c5635eea3bb6f4c001934af",
|
|
34
|
+
"message-notification/SKILL.md": "4b066401133ecf687755c5ea8d9dbb2166acc91bc2035dc9c2b96d8d33dd97de",
|
|
35
|
+
"message-notification/agents/openai.yaml": "603e3737afb5c06583f4dbdc5d10cdd4d5f2130232290674b31a2f325e554d57",
|
|
36
|
+
"message-notification/references/contracts.md": "a33e3dd4093430ed1dc5b79a978d8981479e975a7dd30fde6f68559360369f06",
|
|
37
|
+
"microi-ai-app-auth.js": "8023db6ae655bc33027f389a64ef7937ac09da35eb1b8a497aaefb986834242a",
|
|
38
|
+
"microi-ai-application/SKILL.md": "74b0e8c76352b46ab1e101410d5b3d9ec6d9e0701ca9c7a10a6ab44f3c55db7c",
|
|
39
|
+
"microi-ai-application/agents/openai.yaml": "d3dfc4d0f2fda3391e90e661ca9d8d051cb43824b011d1a88e99db135870454f",
|
|
40
|
+
"microi-ai-application/references/frontend-baseline.md": "c21a2d38292fd8d445a7538afb45d609881f624f32d39c0fc4bbbb3c2fa64a74",
|
|
41
|
+
"microi-client-frontend/SKILL.md": "eed67be739a7a86351ef163968953191dcd77cf61831a17ebacbd4de0102c31c",
|
|
42
|
+
"microi-datasource-mapping/SKILL.md": "1626bdf242038838028aa1235c5a6262e22680984583c47a8fc4e5fffb24b7df",
|
|
43
|
+
"microi-db-schema/SKILL.md": "78c3e2b480f4b39848c792650deab48143b0f04cd8d1d3884af9eaccd60f8b71",
|
|
44
|
+
"microi-db-schema/agents/openai.yaml": "c725a2be4c904472f9e46dc4b49aa642c9f3a4437c91a28ba7cc27167497ede7",
|
|
45
|
+
"microi-db-schema/references/core-tables.md": "b71164d9afe8cd6085745a27dddb31722014a85f8ab22f09ab447738612fea6a",
|
|
46
|
+
"microi-db-schema/references/form-component-options.md": "c4c5085d4b2e4fc79b09d255fa1655c2007e863e3c102ccf805ca57abdf79028",
|
|
47
|
+
"microi-db-schema/references/schema-overview.md": "8909f78c1eb651f1c1f251474051d75e548ac95c961e4e8491160e15a04ec0a1",
|
|
48
|
+
"microi-db-schema/references/schema.md": "4e533fce9b42a26e404bfe86e2808f30c0bc3ddfe0d65b568c2ff4825c1742d3",
|
|
49
|
+
"microi-db-schema/references/table-catalog.md": "ea0ef573d0e112c335e3ab66035bce4e5c3039c7bf25c6e3743f086913b46b97",
|
|
50
|
+
"microi-deployment/SKILL.md": "1f3271e442c4476e9304704e2b6e7dd79f45d4c8a689a9d7ce5db86745d2f9a5",
|
|
51
|
+
"microi-deployment/references/deployment-matrix.md": "32d9d1424bf19eae0d2cee2b1667203c830ea7610c71a806e7ddf785a0083009",
|
|
52
|
+
"microi-docs-coverage/SKILL.md": "5fad3dd7b83cf01ef7a303506902c95da7ae85d60b0067d266f1e2fa2326db95",
|
|
53
|
+
"microi-docs-coverage/references/capability-map.md": "f1a4ba0ec68ffafd707e32d8f037e521fb8b534f9ce1e385b26dcae060996af2",
|
|
54
|
+
"microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "44b79f2eeb9076e3e9673d06daf3923065ed458ceea2f200604dfe474bded161",
|
|
55
|
+
"microi-form-engine/SKILL.md": "7f1bba18a5bed223a3b43552a30ac02c2307e53ff74b970b256da845f1359a07",
|
|
56
|
+
"microi-form-engine/references/component-catalog.md": "68963c2d5211a4610c09fab1fa127a349339abbb7427509b183d4be72e977c7b",
|
|
57
|
+
"microi-form-engine/references/data-source-events.md": "59a95a36624476b12cdc84e4c23975d074b1f115df19992fd0fd075bb982e7cb",
|
|
58
|
+
"microi-form-layout/SKILL.md": "48814c2c138e2c0fb6a11d39cf458df6a1cc28a3156c7540db1fa482a2ce6aec",
|
|
59
|
+
"microi-frontend-sdk/SKILL.md": "0ff6e2df0dc01a42ca875bb6eeb92a4397c5dd4ecae0f808ccf36f1f549c58f0",
|
|
60
|
+
"microi-left-right-layout/SKILL.md": "d8c482224846477b6c3068bdf94930cca6d699570f59b09f946601b0a65715f6",
|
|
61
|
+
"microi-microservice/SKILL.md": "c173ce95bd0a61e7de1bec95e0b72eff6cf61de53702b02703ef9319b539fd2f",
|
|
62
|
+
"microi-microservice/references/runtime-delivery.md": "704ed30623d91c971bed359403caa1f848edd07528ecbf211fa3b619ccec117d",
|
|
63
|
+
"microi-mobile-app-quality/SKILL.md": "810bc23f3cfd4ee47ff3a51917b9aaa46cad8d59d2e3a880ed5f4c41b70eb1d7",
|
|
64
|
+
"microi-solution-quotation/SKILL.md": "1bd47bd019a62bdc904612a7d8e2501c76df66eed9ef247544dd7fe38eba02e4",
|
|
65
|
+
"microi-solution-quotation/agents/openai.yaml": "9e3f994cc842c927ca25e23216f6ce5e8f8313fc39b1c7142d9b652ca73e7dd1",
|
|
66
|
+
"microi-solution-quotation/scripts/build_solution_quote.py": "2a8a90ed95308b900da3db433402d857f838b594df624f5a83b62307471a31e7",
|
|
67
|
+
"microi-system-delivery/SKILL.md": "a20fb79009abbe648d12d45d532e4b22907f36d0a878a3ab38dfcb45737ff7c3",
|
|
68
|
+
"microi-ui/SKILL.md": "c38b3d5a8d564bd1c4575255744d5d0081d5a142c73e25da5a0206dd1d32cc89",
|
|
69
|
+
"microi-uniapp-frontend/SKILL.md": "d031dca0ed4182954e383e9828263d46414330f0a014487867b628f655b5bb26",
|
|
70
|
+
"microi.v8.js": "0e885a961bca626005387885d3b9e7deecb7dc7e3eb07d95582e2c3e3a11d4f6",
|
|
71
|
+
"module-engine/SKILL.md": "c5624f19be8abba47bc7194c75df938fc635d815eb3e5a6e225adc4e8ef83c0c",
|
|
72
|
+
"module-engine/references/module-config.md": "314ccec98665b1991913c35c65ca245fd9a8850c8b7bb2116db655c7ef687496",
|
|
73
|
+
"page-engine/SKILL.md": "97c2c8120612fa02280c601574dd6e9e94fa0b21785134db66571f906d54a82f",
|
|
74
|
+
"performance-testing/SKILL.md": "7f4c8fba9bab090bb2d795ade4067e550f9e479d8fe24fe10a2a9d6b536e46cb",
|
|
75
|
+
"playwright-e2e/SKILL.md": "5a3661d81d2cd0f5e9f6a88f6a57bb81aec1aed2122cff9c4843aa947e702a01",
|
|
76
|
+
"print-engine/SKILL.md": "6ed34f2cf161d3c962f18b61297341785bdd1926e0004298ebbb52f2ae15416c",
|
|
77
|
+
"production-readonly-audit/SKILL.md": "dcf95c3c418db1bcbb71346a62f79254d851852939f4208f71b974194c2280ff",
|
|
78
|
+
"report-engine/SKILL.md": "c04a51b067de43c3e14172de1209055da07cc7e1b79b8b2d1541c17fdab1442e",
|
|
79
|
+
"report-engine/agents/openai.yaml": "6705efa604e24e8286e605d7bb8c240e2434d23657ee9012fd68a96503a4a0f9",
|
|
80
|
+
"search-engine/SKILL.md": "ddabf0b288d04c72985d3528e12c19bcd212a292a09593514d8385c4cb2c53a4",
|
|
81
|
+
"search-engine/agents/openai.yaml": "5ddbe54965386287b00eba1cd7e38f3c7058edc437538f12ddb165f96f75a6eb",
|
|
82
|
+
"spider-engine/SKILL.md": "09e9e164dc09c35bb4bebfbe77e3ba18164c89503313b28a1b4f1061e0de5e30",
|
|
83
|
+
"translate-engine/SKILL.md": "979522ee0debc67a219f771b1d9ba082241743b15042ba54a213054aaf8af9bb",
|
|
84
|
+
"translate-engine/agents/openai.yaml": "8eb47e08a691219bbe22a797ddbdf73234ec77f86e5724bc735fb0738d899112",
|
|
85
|
+
"ui-design/SKILL.md": "9e1b4636281d6ff716e143f2bc9a4904ed305347dbefc225e80079acc6910f00",
|
|
86
|
+
"ui-design/assets/pattern-showcase/app.js": "68a8d404c30096da853c6edbc7cb27f336982147ddfebccd66c03ba3d99427cd",
|
|
87
|
+
"ui-design/assets/pattern-showcase/index.html": "242f94772a5f14e38296f1e925f30a9a5fef2103975831cbd47861a3fc14d5bc",
|
|
88
|
+
"ui-design/assets/pattern-showcase/styles.css": "77c34ddae0dd9c665c8774dc6def4bd8f4f5ed02470d4343d116ed141c87eccb",
|
|
89
|
+
"ui-design/assets/templates/MCI-DESIGN.md": "1da0248a9e959face2987838265cb7007b5b80ce9cb03c8b2b9d3333c4d037df",
|
|
90
|
+
"ui-design/references/design-pattern-library.md": "69e93e1f9ed7de7bf5cbd40246c36cbf95a0121367e89c45229d7d28fc934fdb",
|
|
91
|
+
"ui-design/references/mci-design-contract.md": "ffccefb294723450714f2f6a7d236e8033547c582e0e2a86ffc4ee69d31a2d81",
|
|
92
|
+
"ui-design/references/motion-and-media.md": "3d73161a5ad19e3d1ebecf681febd592ea0e1bca42e6340ef6a08cd9a9fd25be",
|
|
93
|
+
"ui-design/references/product-flow-recipes.md": "b6a41c2d2b18f59594024f232e38497c140e5d8f25b54099a7e2a47609c52edc",
|
|
94
|
+
"uniapp-mall-assets/SKILL.md": "153b661fdbfdbb1200f676e8d35d213bbbf2cd8a1fcacfc75370004c3acffa21",
|
|
95
|
+
"v8-api-config/SKILL.md": "a8043eef7e3183f56a33da4eca4e025c645512800459d24e729a8926fe062fa4",
|
|
96
|
+
"v8-cache-pattern/SKILL.md": "703f7e096934221ee40ce6b6c7a9fced8e07d0a538935d6019111c11f647e3fe",
|
|
97
|
+
"v8-crud-api/SKILL.md": "6c49fcd99e0dd5f61adeed6d359c04e781b775132df945365caa306bb8490b80",
|
|
98
|
+
"v8-debugging/SKILL.md": "92cfb55d7d4597fd458d8bd657839856497ef02886c58ba96e002980ad33bd39",
|
|
99
|
+
"v8-explorer-tree/SKILL.md": "9ecb0a2bdb9a6cbdf1ce74c0a97ca1ffa9157fae4e18fd87f97104c14d54ef5d",
|
|
100
|
+
"v8-export-import/SKILL.md": "e55299d75b24bcbb6248ec2572b55cd0515fb4fbfadaa1f78bcbe4a8d701a1f9",
|
|
101
|
+
"v8-file-upload/SKILL.md": "46fb3ea4a9867014a3c40635ae5d73de5064283822f973cca1e78703a4909670",
|
|
102
|
+
"v8-formengine-http/SKILL.md": "d975bc116e100f91d80acf7932128de6fff78c5fcd17557d3d5a5504e3359682",
|
|
103
|
+
"v8-frontend-events/SKILL.md": "3ce956f7571389bb117a74c23af2cfdf69094f99cb204e7752e50dd25be2872e",
|
|
104
|
+
"v8-frontend-events/references/bluetooth-print-api.md": "c5667cc6a9ed1bf385a21ddbc28e39993bc9e6d527bc31b53fb4ad582abf719e",
|
|
105
|
+
"v8-frontend-events/references/bluetooth-print.md": "6865c72adc5c65cf0958fa0e7edaba99f9cdede71c13d3c2f4ceb4168ea3bb56",
|
|
106
|
+
"v8-http-integration/SKILL.md": "231098de4f00dce961adf7be58c04da06ee8e1e230a5c489621f3fee75184bb8",
|
|
107
|
+
"v8-image-processing/SKILL.md": "69fc700953ceec455604666e15a46a5d665cfc1e7c5134d0d47f2b0f938197cb",
|
|
108
|
+
"v8-image-processing/agents/openai.yaml": "009d8b643bea6203a8056c7323b68fbe6a92c594809415cf657868074e52a576",
|
|
109
|
+
"v8-image-processing/references/api-reference.md": "f8f293f64749d9681a1d4d5c25d5ef85ae1cfb7523487c43d08a03e9ebe36fb6",
|
|
110
|
+
"v8-menu-buttons/SKILL.md": "fc933bf7685db029517f05df5e75560118ceb90a4a9d52922f046d34334a3082",
|
|
111
|
+
"v8-mongodb/SKILL.md": "7da703b5dc9fb9613cca1929fd854e3d333ad7d86200b839bb78ccdc8e0cc6cf",
|
|
112
|
+
"v8-mq-mqtt/SKILL.md": "3894fc353a3e9896b16b54b9e12758f0aea950968f80b7f3ec86c6652040341c",
|
|
113
|
+
"v8-saas-multi-tenant/SKILL.md": "79a534087d1321f4534380af3f95b4a4d135eccffdf0e08f569cd7d7db7463c9",
|
|
114
|
+
"v8-security/SKILL.md": "0d288a96356c42190b6e061246bf2edff3bc0cd8a2ade5fad1491c4e539e98cc",
|
|
115
|
+
"v8-sql-query/SKILL.md": "0ebedf72732479e24ca7528120345d468f98fbf96c21a8f45aaa64eb8ef6a488",
|
|
116
|
+
"v8-table-event/SKILL.md": "ddeb3020e8c7e3002c8f8598a65208b7a2f706ee13f040037f85979c7bc1e8fd",
|
|
117
|
+
"v8-template-engine/SKILL.md": "20002c2124214641b782db9deabb367c151b6be1b2d32f6689c163dcb0925cce",
|
|
118
|
+
"v8-utilities/SKILL.md": "cdc1c33e2c464a89635bbcb96bf5079d9e22c58a0c70158634c2ab70fd034d3b",
|
|
119
|
+
"v8-utilities/references/client-api-index.md": "e7b4c9dea4e83e449b9efbb23c3d19da500d8683996a2dba06c568b79adbee60",
|
|
120
|
+
"v8-utilities/references/platform-http-routes.md": "87579eef4e89b4c80e1757ad34ec951e0ccadb6bd15aab4f3ab247f55d5f1cd5",
|
|
121
|
+
"v8-utilities/references/server-api-index.md": "9fd2871b522e39276bcf0cc7526bd6b44c017d051334ce466e2daf9a83b0185e",
|
|
122
|
+
"v8-workflow/SKILL.md": "cd6738edd79f628948adfac898b6d58a81feb28d1ec6d1f83fc12758fb570819",
|
|
123
|
+
"workspace-conventions/SKILL.md": "d1a2c8f20f861a09dcd75b0d65d65dcdcd76523741a0e0666086c241dcda4e5f"
|
|
124
|
+
},
|
|
125
|
+
"fileVersions": {
|
|
126
|
+
".microi-skills-version.json": "4.6.2",
|
|
127
|
+
"README.md": "4.6.2",
|
|
128
|
+
"ai-engine/SKILL.md": "4.6.2",
|
|
129
|
+
"ai-engine/agents/openai.yaml": "4.6.2",
|
|
130
|
+
"app-store/SKILL.md": "4.6.2",
|
|
131
|
+
"app-store/agents/openai.yaml": "4.6.2",
|
|
132
|
+
"business-blueprint/SKILL.md": "4.6.2",
|
|
133
|
+
"datasource-engine/SKILL.md": "4.6.2",
|
|
134
|
+
"datasource-engine/agents/openai.yaml": "4.6.2",
|
|
135
|
+
"dos-orm/SKILL.md": "4.6.2",
|
|
136
|
+
"dos-orm/references/api-reference.md": "4.6.2",
|
|
137
|
+
"job-engine/SKILL.md": "4.6.2",
|
|
138
|
+
"job-engine/agents/openai.yaml": "4.6.2",
|
|
139
|
+
"message-notification/SKILL.md": "4.6.2",
|
|
140
|
+
"message-notification/agents/openai.yaml": "4.6.2",
|
|
141
|
+
"message-notification/references/contracts.md": "4.6.2",
|
|
142
|
+
"microi-ai-app-auth.js": "4.6.2",
|
|
143
|
+
"microi-ai-application/SKILL.md": "4.6.2",
|
|
144
|
+
"microi-ai-application/agents/openai.yaml": "4.6.2",
|
|
145
|
+
"microi-ai-application/references/frontend-baseline.md": "4.6.2",
|
|
146
|
+
"microi-client-frontend/SKILL.md": "4.6.2",
|
|
147
|
+
"microi-datasource-mapping/SKILL.md": "4.6.2",
|
|
148
|
+
"microi-db-schema/SKILL.md": "4.6.2",
|
|
149
|
+
"microi-db-schema/agents/openai.yaml": "4.6.2",
|
|
150
|
+
"microi-db-schema/references/core-tables.md": "4.6.2",
|
|
151
|
+
"microi-db-schema/references/form-component-options.md": "4.6.2",
|
|
152
|
+
"microi-db-schema/references/schema-overview.md": "4.6.2",
|
|
153
|
+
"microi-db-schema/references/schema.md": "4.6.2",
|
|
154
|
+
"microi-db-schema/references/table-catalog.md": "4.6.2",
|
|
155
|
+
"microi-deployment/SKILL.md": "4.6.2",
|
|
156
|
+
"microi-deployment/references/deployment-matrix.md": "4.6.2",
|
|
157
|
+
"microi-docs-coverage/SKILL.md": "4.6.2",
|
|
158
|
+
"microi-docs-coverage/references/capability-map.md": "4.6.2",
|
|
159
|
+
"microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs": "4.6.2",
|
|
160
|
+
"microi-form-engine/SKILL.md": "4.6.2",
|
|
161
|
+
"microi-form-engine/references/component-catalog.md": "4.6.2",
|
|
162
|
+
"microi-form-engine/references/data-source-events.md": "4.6.2",
|
|
163
|
+
"microi-form-layout/SKILL.md": "4.6.2",
|
|
164
|
+
"microi-frontend-sdk/SKILL.md": "4.6.2",
|
|
165
|
+
"microi-left-right-layout/SKILL.md": "4.6.2",
|
|
166
|
+
"microi-microservice/SKILL.md": "4.6.2",
|
|
167
|
+
"microi-microservice/references/runtime-delivery.md": "4.6.2",
|
|
168
|
+
"microi-mobile-app-quality/SKILL.md": "4.6.2",
|
|
169
|
+
"microi-solution-quotation/SKILL.md": "4.6.2",
|
|
170
|
+
"microi-solution-quotation/agents/openai.yaml": "4.6.2",
|
|
171
|
+
"microi-solution-quotation/scripts/build_solution_quote.py": "4.6.2",
|
|
172
|
+
"microi-system-delivery/SKILL.md": "4.6.2",
|
|
173
|
+
"microi-ui/SKILL.md": "4.6.2",
|
|
174
|
+
"microi-uniapp-frontend/SKILL.md": "4.6.2",
|
|
175
|
+
"microi.v8.js": "4.6.2",
|
|
176
|
+
"module-engine/SKILL.md": "4.6.2",
|
|
177
|
+
"module-engine/references/module-config.md": "4.6.2",
|
|
178
|
+
"page-engine/SKILL.md": "4.6.2",
|
|
179
|
+
"performance-testing/SKILL.md": "4.6.2",
|
|
180
|
+
"playwright-e2e/SKILL.md": "4.6.2",
|
|
181
|
+
"print-engine/SKILL.md": "4.6.2",
|
|
182
|
+
"production-readonly-audit/SKILL.md": "4.6.2",
|
|
183
|
+
"report-engine/SKILL.md": "4.6.2",
|
|
184
|
+
"report-engine/agents/openai.yaml": "4.6.2",
|
|
185
|
+
"search-engine/SKILL.md": "4.6.2",
|
|
186
|
+
"search-engine/agents/openai.yaml": "4.6.2",
|
|
187
|
+
"spider-engine/SKILL.md": "4.6.2",
|
|
188
|
+
"translate-engine/SKILL.md": "4.6.2",
|
|
189
|
+
"translate-engine/agents/openai.yaml": "4.6.2",
|
|
190
|
+
"ui-design/SKILL.md": "4.6.2",
|
|
191
|
+
"ui-design/assets/pattern-showcase/app.js": "4.6.2",
|
|
192
|
+
"ui-design/assets/pattern-showcase/index.html": "4.6.2",
|
|
193
|
+
"ui-design/assets/pattern-showcase/styles.css": "4.6.2",
|
|
194
|
+
"ui-design/assets/templates/MCI-DESIGN.md": "4.6.2",
|
|
195
|
+
"ui-design/references/design-pattern-library.md": "4.6.2",
|
|
196
|
+
"ui-design/references/mci-design-contract.md": "4.6.2",
|
|
197
|
+
"ui-design/references/motion-and-media.md": "4.6.2",
|
|
198
|
+
"ui-design/references/product-flow-recipes.md": "4.6.2",
|
|
199
|
+
"uniapp-mall-assets/SKILL.md": "4.6.2",
|
|
200
|
+
"v8-api-config/SKILL.md": "4.6.2",
|
|
201
|
+
"v8-cache-pattern/SKILL.md": "4.6.2",
|
|
202
|
+
"v8-crud-api/SKILL.md": "4.6.2",
|
|
203
|
+
"v8-debugging/SKILL.md": "4.6.2",
|
|
204
|
+
"v8-explorer-tree/SKILL.md": "4.6.2",
|
|
205
|
+
"v8-export-import/SKILL.md": "4.6.2",
|
|
206
|
+
"v8-file-upload/SKILL.md": "4.6.2",
|
|
207
|
+
"v8-formengine-http/SKILL.md": "4.6.2",
|
|
208
|
+
"v8-frontend-events/SKILL.md": "4.6.2",
|
|
209
|
+
"v8-frontend-events/references/bluetooth-print-api.md": "4.6.2",
|
|
210
|
+
"v8-frontend-events/references/bluetooth-print.md": "4.6.2",
|
|
211
|
+
"v8-http-integration/SKILL.md": "4.6.2",
|
|
212
|
+
"v8-image-processing/SKILL.md": "4.6.2",
|
|
213
|
+
"v8-image-processing/agents/openai.yaml": "4.6.2",
|
|
214
|
+
"v8-image-processing/references/api-reference.md": "4.6.2",
|
|
215
|
+
"v8-menu-buttons/SKILL.md": "4.6.2",
|
|
216
|
+
"v8-mongodb/SKILL.md": "4.6.2",
|
|
217
|
+
"v8-mq-mqtt/SKILL.md": "4.6.2",
|
|
218
|
+
"v8-saas-multi-tenant/SKILL.md": "4.6.2",
|
|
219
|
+
"v8-security/SKILL.md": "4.6.2",
|
|
220
|
+
"v8-sql-query/SKILL.md": "4.6.2",
|
|
221
|
+
"v8-table-event/SKILL.md": "4.6.2",
|
|
222
|
+
"v8-template-engine/SKILL.md": "4.6.2",
|
|
223
|
+
"v8-utilities/SKILL.md": "4.6.2",
|
|
224
|
+
"v8-utilities/references/client-api-index.md": "4.6.2",
|
|
225
|
+
"v8-utilities/references/platform-http-routes.md": "4.6.2",
|
|
226
|
+
"v8-utilities/references/server-api-index.md": "4.6.2",
|
|
227
|
+
"v8-workflow/SKILL.md": "4.6.2",
|
|
228
|
+
"workspace-conventions/SKILL.md": "4.6.2"
|
|
229
|
+
},
|
|
230
|
+
"files": [
|
|
231
|
+
".microi-skills-version.json",
|
|
232
|
+
"README.md",
|
|
233
|
+
"ai-engine/SKILL.md",
|
|
234
|
+
"ai-engine/agents/openai.yaml",
|
|
235
|
+
"app-store/SKILL.md",
|
|
236
|
+
"app-store/agents/openai.yaml",
|
|
237
|
+
"business-blueprint/SKILL.md",
|
|
238
|
+
"datasource-engine/SKILL.md",
|
|
239
|
+
"datasource-engine/agents/openai.yaml",
|
|
240
|
+
"dos-orm/SKILL.md",
|
|
241
|
+
"dos-orm/references/api-reference.md",
|
|
242
|
+
"job-engine/SKILL.md",
|
|
243
|
+
"job-engine/agents/openai.yaml",
|
|
244
|
+
"message-notification/SKILL.md",
|
|
245
|
+
"message-notification/agents/openai.yaml",
|
|
246
|
+
"message-notification/references/contracts.md",
|
|
247
|
+
"microi-ai-app-auth.js",
|
|
248
|
+
"microi-ai-application/SKILL.md",
|
|
249
|
+
"microi-ai-application/agents/openai.yaml",
|
|
250
|
+
"microi-ai-application/references/frontend-baseline.md",
|
|
251
|
+
"microi-client-frontend/SKILL.md",
|
|
252
|
+
"microi-datasource-mapping/SKILL.md",
|
|
253
|
+
"microi-db-schema/SKILL.md",
|
|
254
|
+
"microi-db-schema/agents/openai.yaml",
|
|
255
|
+
"microi-db-schema/references/core-tables.md",
|
|
256
|
+
"microi-db-schema/references/form-component-options.md",
|
|
257
|
+
"microi-db-schema/references/schema-overview.md",
|
|
258
|
+
"microi-db-schema/references/schema.md",
|
|
259
|
+
"microi-db-schema/references/table-catalog.md",
|
|
260
|
+
"microi-deployment/SKILL.md",
|
|
261
|
+
"microi-deployment/references/deployment-matrix.md",
|
|
262
|
+
"microi-docs-coverage/SKILL.md",
|
|
263
|
+
"microi-docs-coverage/references/capability-map.md",
|
|
264
|
+
"microi-docs-coverage/scripts/audit-doc-skill-coverage.mjs",
|
|
265
|
+
"microi-form-engine/SKILL.md",
|
|
266
|
+
"microi-form-engine/references/component-catalog.md",
|
|
267
|
+
"microi-form-engine/references/data-source-events.md",
|
|
268
|
+
"microi-form-layout/SKILL.md",
|
|
269
|
+
"microi-frontend-sdk/SKILL.md",
|
|
270
|
+
"microi-left-right-layout/SKILL.md",
|
|
271
|
+
"microi-microservice/SKILL.md",
|
|
272
|
+
"microi-microservice/references/runtime-delivery.md",
|
|
273
|
+
"microi-mobile-app-quality/SKILL.md",
|
|
274
|
+
"microi-solution-quotation/SKILL.md",
|
|
275
|
+
"microi-solution-quotation/agents/openai.yaml",
|
|
276
|
+
"microi-solution-quotation/scripts/build_solution_quote.py",
|
|
277
|
+
"microi-system-delivery/SKILL.md",
|
|
278
|
+
"microi-ui/SKILL.md",
|
|
279
|
+
"microi-uniapp-frontend/SKILL.md",
|
|
280
|
+
"microi.v8.js",
|
|
281
|
+
"module-engine/SKILL.md",
|
|
282
|
+
"module-engine/references/module-config.md",
|
|
283
|
+
"page-engine/SKILL.md",
|
|
284
|
+
"performance-testing/SKILL.md",
|
|
285
|
+
"playwright-e2e/SKILL.md",
|
|
286
|
+
"print-engine/SKILL.md",
|
|
287
|
+
"production-readonly-audit/SKILL.md",
|
|
288
|
+
"report-engine/SKILL.md",
|
|
289
|
+
"report-engine/agents/openai.yaml",
|
|
290
|
+
"search-engine/SKILL.md",
|
|
291
|
+
"search-engine/agents/openai.yaml",
|
|
292
|
+
"spider-engine/SKILL.md",
|
|
293
|
+
"translate-engine/SKILL.md",
|
|
294
|
+
"translate-engine/agents/openai.yaml",
|
|
295
|
+
"ui-design/SKILL.md",
|
|
296
|
+
"ui-design/assets/pattern-showcase/app.js",
|
|
297
|
+
"ui-design/assets/pattern-showcase/index.html",
|
|
298
|
+
"ui-design/assets/pattern-showcase/styles.css",
|
|
299
|
+
"ui-design/assets/templates/MCI-DESIGN.md",
|
|
300
|
+
"ui-design/references/design-pattern-library.md",
|
|
301
|
+
"ui-design/references/mci-design-contract.md",
|
|
302
|
+
"ui-design/references/motion-and-media.md",
|
|
303
|
+
"ui-design/references/product-flow-recipes.md",
|
|
304
|
+
"uniapp-mall-assets/SKILL.md",
|
|
305
|
+
"v8-api-config/SKILL.md",
|
|
306
|
+
"v8-cache-pattern/SKILL.md",
|
|
307
|
+
"v8-crud-api/SKILL.md",
|
|
308
|
+
"v8-debugging/SKILL.md",
|
|
309
|
+
"v8-explorer-tree/SKILL.md",
|
|
310
|
+
"v8-export-import/SKILL.md",
|
|
311
|
+
"v8-file-upload/SKILL.md",
|
|
312
|
+
"v8-formengine-http/SKILL.md",
|
|
313
|
+
"v8-frontend-events/SKILL.md",
|
|
314
|
+
"v8-frontend-events/references/bluetooth-print-api.md",
|
|
315
|
+
"v8-frontend-events/references/bluetooth-print.md",
|
|
316
|
+
"v8-http-integration/SKILL.md",
|
|
317
|
+
"v8-image-processing/SKILL.md",
|
|
318
|
+
"v8-image-processing/agents/openai.yaml",
|
|
319
|
+
"v8-image-processing/references/api-reference.md",
|
|
320
|
+
"v8-menu-buttons/SKILL.md",
|
|
321
|
+
"v8-mongodb/SKILL.md",
|
|
322
|
+
"v8-mq-mqtt/SKILL.md",
|
|
323
|
+
"v8-saas-multi-tenant/SKILL.md",
|
|
324
|
+
"v8-security/SKILL.md",
|
|
325
|
+
"v8-sql-query/SKILL.md",
|
|
326
|
+
"v8-table-event/SKILL.md",
|
|
327
|
+
"v8-template-engine/SKILL.md",
|
|
328
|
+
"v8-utilities/SKILL.md",
|
|
329
|
+
"v8-utilities/references/client-api-index.md",
|
|
330
|
+
"v8-utilities/references/platform-http-routes.md",
|
|
331
|
+
"v8-utilities/references/server-api-index.md",
|
|
332
|
+
"v8-workflow/SKILL.md",
|
|
333
|
+
"workspace-conventions/SKILL.md"
|
|
334
|
+
]
|
|
335
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "4.6.2",
|
|
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
|
+
"managedBy": "Microi.VSCode/bump-version.js",
|
|
5
|
+
"updatedAt": "2026-08-03T07:14:49.443Z"
|
|
6
|
+
}
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
# Microi Skills
|
|
2
|
+
|
|
3
|
+
**Microi 吾码项目级 AI 编程技能集合** — 让 AI 在低代码建模、V8 接口引擎、表单事件、PC 前端、UniApp/H5/小程序、Microi.UI、自动化测试和系统交付中自动遵循最佳实践。
|
|
4
|
+
|
|
5
|
+
> Skills 是一系列结构化指令文件(SKILL.md),告诉 AI 工具在特定场景下**应该如何写代码、如何建模、如何设计界面、如何测试验收**。每个 Skill 覆盖一个明确场景,包含 API 用法、代码模板、设计约束、质量门禁和安全规范。
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 包含的 Skills
|
|
10
|
+
|
|
11
|
+
当前仓库包含 57 个 `SKILL.md`。以下清单按任务类型组织;AI 必须先完整读取与当前任务匹配的 Skill,再执行源码、MCP、文档或交付操作。
|
|
12
|
+
|
|
13
|
+
### V8 引擎核心(后端)
|
|
14
|
+
|
|
15
|
+
| Skill | 场景 | 文件 |
|
|
16
|
+
|-------|------|------|
|
|
17
|
+
| **v8-crud-api** | 接口引擎增删改查 | `v8-crud-api/SKILL.md` |
|
|
18
|
+
| **v8-sql-query** | 安全的 SQL 查询(参数化、_Where 语法、事务) | `v8-sql-query/SKILL.md` |
|
|
19
|
+
| **v8-table-event** | 表单 V8 事件(提交前/后、DataFilter) | `v8-table-event/SKILL.md` |
|
|
20
|
+
| **v8-cache-pattern** | Redis 缓存模式(L1+L2、Key 命名、防穿透) | `v8-cache-pattern/SKILL.md` |
|
|
21
|
+
| **v8-http-integration** | 调用外部 HTTP API(含下载/上传) | `v8-http-integration/SKILL.md` |
|
|
22
|
+
| **v8-mongodb** | MongoDB 增删改查(IoT、审计日志) | `v8-mongodb/SKILL.md` |
|
|
23
|
+
| **v8-mq-mqtt** | RabbitMQ 消息队列与 MQTT 物联网 | `v8-mq-mqtt/SKILL.md` |
|
|
24
|
+
| **v8-workflow** | 工作流(审批流程)V8 事件 | `v8-workflow/SKILL.md` |
|
|
25
|
+
| **v8-api-config** | 接口引擎配置(匿名/锁/StopHttp/响应文件) | `v8-api-config/SKILL.md` |
|
|
26
|
+
| **v8-saas-multi-tenant** | SaaS 多租户(OsClient/OsClientModel) | `v8-saas-multi-tenant/SKILL.md` |
|
|
27
|
+
| **v8-image-processing** | 服务端图片生成、合并、覆盖、水印、缩放、裁剪、绘制与二维码 | `v8-image-processing/SKILL.md` |
|
|
28
|
+
| **v8-file-upload** | 文件上传/下载/响应(HDFS、私有桶 URL) | `v8-file-upload/SKILL.md` |
|
|
29
|
+
| **v8-export-import** | Excel 自定义导入导出(含进度跟踪) | `v8-export-import/SKILL.md` |
|
|
30
|
+
| **v8-debugging** | 调试模式、异常捕获、系统日志 | `v8-debugging/SKILL.md` |
|
|
31
|
+
| **v8-security** | 安全最佳实践(权限/输入验证/防注入) | `v8-security/SKILL.md` |
|
|
32
|
+
| **v8-utilities** | 前后端 V8 上下文、通用函数、扫码、消息、Base64、加密和专项 API 索引 | `v8-utilities/SKILL.md` |
|
|
33
|
+
| **spider-engine** | 爬虫/浏览器采集 Worker、会话、目标地址、配额与交付边界 | `spider-engine/SKILL.md` |
|
|
34
|
+
|
|
35
|
+
### V8 引擎核心(前端)
|
|
36
|
+
|
|
37
|
+
| Skill | 场景 | 文件 |
|
|
38
|
+
|-------|------|------|
|
|
39
|
+
| **v8-frontend-events** | 前端字段/按钮/列表事件(FieldValueChange 等) | `v8-frontend-events/SKILL.md` |
|
|
40
|
+
| **v8-template-engine** | 表格/表单 V8 模板(HTML 渲染、徽章、图片列) | `v8-template-engine/SKILL.md` |
|
|
41
|
+
| **v8-menu-buttons** | 菜单按钮 / Tab / 批量操作 JSON | `v8-menu-buttons/SKILL.md` |
|
|
42
|
+
| **microi-client-frontend** | `Microi.Client` 前台源码架构、表单引擎、动态按钮和工作流修改指南 | `microi-client-frontend/SKILL.md` |
|
|
43
|
+
|
|
44
|
+
### 引擎模块
|
|
45
|
+
|
|
46
|
+
| Skill | 场景 | 文件 |
|
|
47
|
+
|-------|------|------|
|
|
48
|
+
| **page-engine** | 界面引擎页面 JSON 生成 | `page-engine/SKILL.md` |
|
|
49
|
+
| **print-engine** | 打印引擎模板 JSON 生成 | `print-engine/SKILL.md` |
|
|
50
|
+
| **ui-design** | Microi吾码设计规范(阴影/动效/主题/性能) | `ui-design/SKILL.md` |
|
|
51
|
+
| **microi-ui** | 吾码UI(Microi.UI / MCI-UI)组件库、主题 palette、圆角/扁平、Web/UniApp 用法 | `microi-ui/SKILL.md` |
|
|
52
|
+
| **microi-form-engine** | 表单设计器、字段组件、数据源、事件和物理类型 | `microi-form-engine/SKILL.md` |
|
|
53
|
+
| **microi-form-layout** | 表单布局分组规范:Tabs vs CollapseGroup 决策、字段数阈值、回读验收 | `microi-form-layout/SKILL.md` |
|
|
54
|
+
| **microi-db-schema** | 数据库字典、核心表关系、字段归属与 V8 配置存储位置 | `microi-db-schema/SKILL.md` |
|
|
55
|
+
| **module-engine** | sys_menu 菜单模块、查询列、打开方式、ViewSchema 和多表查询 | `module-engine/SKILL.md` |
|
|
56
|
+
| **dos-orm** | Dos.ORM 实体、查询、事务、Provider、批量写入与 CodeFirst | `dos-orm/SKILL.md` |
|
|
57
|
+
| **microi-left-right-layout** | 模块引擎“树形+表格/表单”左右布局与主外键过滤 | `microi-left-right-layout/SKILL.md` |
|
|
58
|
+
| **datasource-engine** | SQL/V8/JSON 数据源设计、租户与权限、字段供数和验收 | `datasource-engine/SKILL.md` |
|
|
59
|
+
| **job-engine** | 定时/后台任务、多节点租约、幂等、恢复和进度 | `job-engine/SKILL.md` |
|
|
60
|
+
| **message-notification** | 公众号/服务号、短信、邮件、平台内部通知、SignalR、幂等与商城交付 | `message-notification/SKILL.md` |
|
|
61
|
+
| **search-engine** | Elasticsearch 索引、同步、查询、租户/数据范围和重建 | `search-engine/SKILL.md` |
|
|
62
|
+
| **report-engine** | Rpt_Report 虚拟报表、数据源、聚合、写接口和导出 | `report-engine/SKILL.md` |
|
|
63
|
+
| **translate-engine** | 多语言词条、翻译供应商、租户隔离、缓存和批量翻译 | `translate-engine/SKILL.md` |
|
|
64
|
+
| **ai-engine** | 模型代理、NL2SQL/NL2V8、Schema/Skill 关键词检索与可选向量融合 | `ai-engine/SKILL.md` |
|
|
65
|
+
| **app-store** | 应用包、Manifest、后台安装、差异升级、回滚和验收 | `app-store/SKILL.md` |
|
|
66
|
+
|
|
67
|
+
### 项目交付、前端与移动端
|
|
68
|
+
|
|
69
|
+
| Skill | 场景 | 文件 |
|
|
70
|
+
|-------|------|------|
|
|
71
|
+
| **business-blueprint** | 从需求生成业务蓝图、模块边界、数据模型与接口清单 | `business-blueprint/SKILL.md` |
|
|
72
|
+
| **microi-system-delivery** | 自然语言到完整系统交付的总控、MCP 编排、验收和复盘 | `microi-system-delivery/SKILL.md` |
|
|
73
|
+
| **microi-deployment** | Docker/Windows/源码部署、配置、升级和多节点运行验收 | `microi-deployment/SKILL.md` |
|
|
74
|
+
| **microi-microservice** | 前端微服务/微应用源码、路由、发布、宿主上下文和运行时交付 | `microi-microservice/SKILL.md` |
|
|
75
|
+
| **microi-ai-application** | Web、MicroService、UniApp、H5 与游戏类 AI 应用的 Vue 3 + Vite + TypeScript 默认架构、迁移和质量门 | `microi-ai-application/SKILL.md` |
|
|
76
|
+
| **microi-docs-coverage** | 中文官网文档到 Skills 的能力映射、V8 API 漏项审计和同步流程 | `microi-docs-coverage/SKILL.md` |
|
|
77
|
+
| **microi-solution-quotation** | 生成紧凑的一页式 Microi吾码解决方案、市场预估价、优惠报价与开发周期 Word | `microi-solution-quotation/SKILL.md` |
|
|
78
|
+
| **microi-frontend-sdk** | Vue3/UniApp/H5/PC 前端统一 SDK、Token终端会话/续签、上传、资源 URL、ApiEngine/FormEngine | `microi-frontend-sdk/SKILL.md` |
|
|
79
|
+
| **microi-uniapp-frontend** | Microi UniApp/H5 通用前端规范、安全区、资源解析、骨架屏、主题与页面质量 | `microi-uniapp-frontend/SKILL.md` |
|
|
80
|
+
| **microi-mobile-app-quality** | 移动端质量门禁:登录、验证码、图标、菜单层级、主题、动效、截图验收 | `microi-mobile-app-quality/SKILL.md` |
|
|
81
|
+
| **microi-datasource-mapping** | 数据源 Key/Value 映射、下拉枚举与前后端显示值一致性 | `microi-datasource-mapping/SKILL.md` |
|
|
82
|
+
| **v8-formengine-http** | 移动端/外部系统直接调用 FormEngine HTTP 路由的约定 | `v8-formengine-http/SKILL.md` |
|
|
83
|
+
| **v8-explorer-tree** | VS Code 插件 V8 资源管理器目录规范和本地文件归档 | `v8-explorer-tree/SKILL.md` |
|
|
84
|
+
| **workspace-conventions** | 工作区文件放置、临时产物、项目专属目录和根目录污染防护 | `workspace-conventions/SKILL.md` |
|
|
85
|
+
| **production-readonly-audit** | 正式环境只读巡检,不改动线上数据的业务核对流程 | `production-readonly-audit/SKILL.md` |
|
|
86
|
+
| **uniapp-mall-assets** | UniApp/H5/商城上传资源、FileServer、私有临时 URL 与富文本安全 | `uniapp-mall-assets/SKILL.md` |
|
|
87
|
+
|
|
88
|
+
### 自动化测试
|
|
89
|
+
|
|
90
|
+
| Skill | 场景 | 文件 |
|
|
91
|
+
|-------|------|------|
|
|
92
|
+
| **playwright-e2e** | Playwright 端到端自动化测试、接口引擎断言、冒烟验收与 CI | `playwright-e2e/SKILL.md` |
|
|
93
|
+
| **performance-testing** | 接口引擎、V8事件、FormEngine CRUD 高并发性能压力测试与报告 | `performance-testing/SKILL.md` |
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## 快速开始:如何使用 Skills
|
|
98
|
+
|
|
99
|
+
### 推荐:VS Code 插件零配置安装
|
|
100
|
+
|
|
101
|
+
安装 Microi 吾码 VS Code 插件后,在工作区执行初始化/拉取。插件会安装当前版本的完整 `microi.skills`,并为 Codex、GitHub Copilot、Claude Code、Cursor 等生成 `AGENTS.md`、`.github/copilot-instructions.md`、`CLAUDE.md` 和 Cursor rules;不需要手工维护 56 条 Skill 引用。
|
|
102
|
+
|
|
103
|
+
插件升级采用清单和内容哈希做差异更新:未被用户修改的官方 Skill 自动升级,用户已经修改的文件不被整文件覆盖,新增 Skill 自动补齐。发布插件时必须比对源 Skills、插件 `dist`、VSIX 和空工作区初始化产物的相对路径与 SHA-256,不能只检查文件数量。
|
|
104
|
+
|
|
105
|
+
随后按需连接 Microi MCP:MCP 提供实时表结构、接口引擎、菜单和应用源码上下文;Skills 提供设计、安全、编码与验收规则;VS Code 插件提供类型、资源树和上下文生成。三者组合才是推荐的 AI 零代码开发路径。
|
|
106
|
+
|
|
107
|
+
### 备用:手工获取 Skills
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
git clone https://gitee.com/ITdos/microi.net.git
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
将源码中的 `microi.skills` 文件夹放到工作区根目录。也可使用 Git sparse-checkout 只获取该目录。
|
|
114
|
+
|
|
115
|
+
### 手工配置 AI 工具加载 Skills
|
|
116
|
+
|
|
117
|
+
根据你使用的 AI 工具,选择对应的配置方式:
|
|
118
|
+
|
|
119
|
+
> 手工配置仅是插件不可用时的备用方案。不要把全部 Skill 内容拼接到单个规则文件;保留独立文件并按任务路由读取,可避免超长上下文、重复规则和版本漂移。
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
### GitHub Copilot(VS Code)
|
|
124
|
+
|
|
125
|
+
**方式 A:通过 `.github/copilot-instructions.md` 全局引用(推荐)**
|
|
126
|
+
|
|
127
|
+
在项目根目录的 `.github/copilot-instructions.md` 文件末尾追加:
|
|
128
|
+
|
|
129
|
+
```markdown
|
|
130
|
+
## Microi 项目技能规范
|
|
131
|
+
|
|
132
|
+
处理 Microi 低代码系统、V8 引擎、PC 前端、UniApp/H5/小程序、Microi.UI、MCP 建模、自动化测试或交付时,参考以下技能文件:
|
|
133
|
+
- microi.skills/v8-crud-api/SKILL.md — 增删改查
|
|
134
|
+
- microi.skills/v8-table-event/SKILL.md — 表单事件
|
|
135
|
+
- microi.skills/v8-sql-query/SKILL.md — SQL 查询
|
|
136
|
+
- microi.skills/v8-http-integration/SKILL.md — HTTP 集成
|
|
137
|
+
- microi.skills/v8-cache-pattern/SKILL.md — Redis 缓存
|
|
138
|
+
- microi.skills/v8-security/SKILL.md — 安全规范
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
> Copilot 会自动将这些 Skill 作为上下文注入到每次对话中。
|
|
142
|
+
|
|
143
|
+
**方式 B:在对话中按需引用**
|
|
144
|
+
|
|
145
|
+
```
|
|
146
|
+
@workspace 参考 microi.skills/v8-crud-api/SKILL.md 帮我写一个用户管理的接口引擎
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
### Cursor
|
|
152
|
+
|
|
153
|
+
**方式 A:在 `.cursor/rules/` 目录中添加规则文件(推荐)**
|
|
154
|
+
|
|
155
|
+
在项目根目录创建 `.cursor/rules/microi-skills.mdc`:
|
|
156
|
+
|
|
157
|
+
```
|
|
158
|
+
---
|
|
159
|
+
description: Microi 项目技能规范
|
|
160
|
+
globs: ["microi-v8-engine/**/*.js", "Microi.Client/**/*.{vue,js,ts,css,scss}", "microi.uniapp/**/*.{vue,js,ts,css,scss,json}", "AI-Project/**/*.{vue,js,ts,css,scss,json,md}", "Microi.UI/**/*.{vue,js,ts,css,scss,md}", "microi.skills/**/*.md"]
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
处理 Microi 项目时,按任务类型参考以下技能文件获取 API 用法、界面规范和验收门禁:
|
|
164
|
+
- @microi.skills/v8-crud-api/SKILL.md
|
|
165
|
+
- @microi.skills/v8-table-event/SKILL.md
|
|
166
|
+
- @microi.skills/v8-sql-query/SKILL.md
|
|
167
|
+
- @microi.skills/v8-http-integration/SKILL.md
|
|
168
|
+
- @microi.skills/v8-cache-pattern/SKILL.md
|
|
169
|
+
- @microi.skills/v8-security/SKILL.md
|
|
170
|
+
- @microi.skills/microi-ui/SKILL.md
|
|
171
|
+
- @microi.skills/microi-uniapp-frontend/SKILL.md
|
|
172
|
+
- @microi.skills/microi-mobile-app-quality/SKILL.md
|
|
173
|
+
- @microi.skills/microi-system-delivery/SKILL.md
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
> Cursor 会在匹配 `microi-v8-engine/**/*.js` 的文件中自动加载这些规则。
|
|
177
|
+
|
|
178
|
+
**方式 B:合并到 `.cursorrules`**
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
for f in microi.skills/*/SKILL.md; do
|
|
182
|
+
echo -e "\n---\n" >> .cursorrules
|
|
183
|
+
cat "$f" >> .cursorrules
|
|
184
|
+
done
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
|
|
189
|
+
### Claude Code
|
|
190
|
+
|
|
191
|
+
**方式 A:添加到 `CLAUDE.md`(推荐)**
|
|
192
|
+
|
|
193
|
+
在项目根目录的 `CLAUDE.md` 中追加:
|
|
194
|
+
|
|
195
|
+
```markdown
|
|
196
|
+
## Microi 项目 Skills
|
|
197
|
+
|
|
198
|
+
处理 Microi 项目时,按任务类型参阅以下文件:
|
|
199
|
+
- microi.skills/v8-crud-api/SKILL.md
|
|
200
|
+
- microi.skills/v8-table-event/SKILL.md
|
|
201
|
+
- microi.skills/v8-sql-query/SKILL.md
|
|
202
|
+
- microi.skills/v8-http-integration/SKILL.md
|
|
203
|
+
- microi.skills/v8-cache-pattern/SKILL.md
|
|
204
|
+
- microi.skills/v8-security/SKILL.md
|
|
205
|
+
- microi.skills/microi-ui/SKILL.md
|
|
206
|
+
- microi.skills/microi-uniapp-frontend/SKILL.md
|
|
207
|
+
- microi.skills/microi-mobile-app-quality/SKILL.md
|
|
208
|
+
- microi.skills/microi-system-delivery/SKILL.md
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
**方式 B:批量追加内容到 `CLAUDE.md`**
|
|
212
|
+
|
|
213
|
+
```bash
|
|
214
|
+
for f in microi.skills/*/SKILL.md; do
|
|
215
|
+
echo -e "\n---\n" >> CLAUDE.md
|
|
216
|
+
cat "$f" >> CLAUDE.md
|
|
217
|
+
done
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
## 安全与兼容底线
|
|
223
|
+
|
|
224
|
+
- 浏览器 FormEngine 请求优先携带真实 `_SysMenuId`;历史无菜单调用由后端从用户真实菜单缓存安全推断,后端可信 V8 不要求 `_SysMenuId`。
|
|
225
|
+
- `_InvokeType: 'Client'` 会触发表单 V8 事件,不是授权标记,也不能用来“避免递归”。
|
|
226
|
+
- 平台保护表和控制面 API 只允许 `Level >= 9999`;普通角色的表权限不能绕过该基线。
|
|
227
|
+
- 多租户、文件、Redis、MQ、对象存储和搜索能力必须由服务端绑定当前 `OsClient`。
|
|
228
|
+
- `setTimeout`、`Task.Run` 和进程内静态状态不能承担可靠后台任务或集群锁。
|
|
229
|
+
- 上传上限由平台默认值和 `sys_osclients` 租户配置共同约束;私有文件的浏览器访问必须绑定菜单、记录、字段和附件。
|
|
230
|
+
- CORS 未配置时为兼容历史默认允许 `*`,配置后才按租户域名收紧;SSRF 严格模式默认关闭,启用后按精确主机白名单放行。
|
|
231
|
+
- MCP 写入前先读取实时 schema/manifest,写后回读;超时先回读确认,不得立即重复创建。
|
|
232
|
+
|
|
233
|
+
---
|
|
234
|
+
|
|
235
|
+
## 使用效果示例
|
|
236
|
+
|
|
237
|
+
配置 Skills 后,AI 对话中的代码生成质量会显著提升:
|
|
238
|
+
|
|
239
|
+
**没有 Skills 时:**
|
|
240
|
+
```
|
|
241
|
+
你:帮我写一个分页查询用户列表的接口引擎
|
|
242
|
+
AI:(可能写出不用 _Where 参数化、没有 try-catch、没有权限校验的代码)
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
**有 Skills 时:**
|
|
246
|
+
```
|
|
247
|
+
你:帮我写一个分页查询用户列表的接口引擎
|
|
248
|
+
AI:参考 v8-crud-api Skill,生成完整代码:
|
|
249
|
+
✅ 使用 V8.FormEngine.GetTableData + _Where 参数化查询
|
|
250
|
+
✅ 包含分页参数校验
|
|
251
|
+
✅ 使用 V8.CurrentUser 做权限校验
|
|
252
|
+
✅ 规范的 V8.Result 返回格式
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
---
|
|
256
|
+
|
|
257
|
+
## 与 VS Code 插件 / MCP 的关系
|
|
258
|
+
|
|
259
|
+
| 方案 | 覆盖内容 | 适用场景 |
|
|
260
|
+
|------|---------|---------|
|
|
261
|
+
| **VS Code 插件** | V8 全部 API 知识 + 数据库表结构 + 代码补全 | 日常开发,自动化 |
|
|
262
|
+
| **MCP Server** | 实时查询数据、远程执行引擎 | AI 实时操作平台 |
|
|
263
|
+
| **Skills**(本项目) | 具体场景的编码最佳实践和代码模板 | 进阶模式,深度指导 |
|
|
264
|
+
|
|
265
|
+
> 💡 推荐三者搭配使用:插件提供 API 知识和表结构 → MCP 提供实时数据查询 → Skills 提供编码最佳实践。
|
|
266
|
+
|
|
267
|
+
## License
|
|
268
|
+
|
|
269
|
+
MIT
|
|
270
|
+
|
|
271
|
+
## 关键路由提示
|
|
272
|
+
|
|
273
|
+
- 独立 PC/H5/UniApp 前端:先读 `microi-frontend-sdk`,再读对应端的 UI/质量 Skill。
|
|
274
|
+
- 表单字段较多时:先读 `microi-form-layout`。默认优先使用 `diy_table.Tabs + diy_field.Tab` 做业务域分组,局部复杂区域再用 `CollapseGroup` 或字段级 `Tabs`。
|
|
275
|
+
- 树形+表格/表单:使用 `microi-left-right-layout`。
|
|
276
|
+
- 跨模块完整交付:从 `business-blueprint` 进入,由 `microi-system-delivery` 总控,并把 `v8-security`、`microi-db-schema` 和自动化验收作为强制门禁。
|