multimodel-dev-os 2.8.1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.ai/plugins/catalog/.ai/checks/pre-commit-gate.md +14 -0
- package/.ai/plugins/catalog/.ai/skills/checkout-ops.md +12 -0
- package/.ai/plugins/catalog/.ai/skills/git-operations.md +21 -0
- package/.ai/plugins/catalog/.ai/skills/nextjs-builder.md +12 -0
- package/.ai/plugins/catalog/.ai/skills/release-ops.md +12 -0
- package/.ai/plugins/catalog/.ai/skills/seo-audit-ops.md +14 -0
- package/.ai/plugins/catalog/.ai/skills/wp-helper.md +13 -0
- package/.ai/plugins/catalog/README.md +34 -0
- package/.ai/plugins/catalog/ecommerce-workflows.yaml +14 -0
- package/.ai/plugins/catalog/git-workflows.yaml +22 -0
- package/.ai/plugins/catalog/nextjs-workflows.yaml +14 -0
- package/.ai/plugins/catalog/release-workflows.yaml +14 -0
- package/.ai/plugins/catalog/seo-workflows.yaml +19 -0
- package/.ai/plugins/catalog/wordpress-workflows.yaml +14 -0
- package/.ai/plugins/catalog.yaml +161 -0
- package/.ai/policies/registry-policy.yaml +51 -0
- package/.ai/registries/sources.yaml +15 -0
- package/.ai/registry-cache/README.md +35 -0
- package/.ai/schema/registry-manifest.schema.json +57 -0
- package/.ai/schema/registry-policy.schema.json +66 -0
- package/README.md +6 -5
- package/bin/multimodel-dev-os.js +1309 -30
- package/docs/.vitepress/config.js +16 -2
- package/docs/CLI.md +54 -1
- package/docs/architecture.md +9 -3
- package/docs/catalog-authoring.md +63 -0
- package/docs/catalog.md +72 -0
- package/docs/comparison.md +1 -0
- package/docs/dashboard.md +13 -2
- package/docs/faq.md +19 -0
- package/docs/plugin-authoring.md +6 -0
- package/docs/plugin-catalog.md +35 -0
- package/docs/plugin-hooks.md +6 -0
- package/docs/public/llms-full.txt +18 -1
- package/docs/public/llms.txt +17 -1
- package/docs/public/sitemap.xml +248 -203
- package/docs/quickstart.md +17 -0
- package/docs/registry-policy.md +93 -0
- package/docs/registry-security.md +67 -0
- package/docs/registry-sync.md +106 -0
- package/docs/remote-catalog-authoring.md +139 -0
- package/docs/repository-command-center.md +2 -0
- package/docs/trusted-registries.md +77 -0
- package/docs/v2-roadmap.md +13 -4
- package/docs/workflow-marketplace.md +22 -0
- package/docs/workflow-orchestration.md +6 -0
- package/package.json +1 -1
- package/scripts/install.ps1 +1 -1
- package/scripts/install.sh +1 -1
- package/scripts/prepublish-guard.js +27 -5
- package/scripts/verify.js +523 -10
package/README.md
CHANGED
|
@@ -134,11 +134,11 @@ npx multimodel-dev-os@latest handoff build
|
|
|
134
134
|
|
|
135
135
|
---
|
|
136
136
|
|
|
137
|
-
## What's New in
|
|
137
|
+
## What's New in v3.0
|
|
138
138
|
|
|
139
|
-
-
|
|
140
|
-
-
|
|
141
|
-
-
|
|
139
|
+
- 🛡️ **Trusted Remote Registries & Governance** — Manage and synchronize remote catalog indexes safely via `registry` command suite.
|
|
140
|
+
- 🎛️ **Policy Engine** — Configurable safety rules whitelisting destination directories, allowed extensions, and blocking sensitive file paths.
|
|
141
|
+
- 🔒 **Zero Trust Integrity Chain** — SHA256 checksum verification for all downloaded remote catalog assets.
|
|
142
142
|
|
|
143
143
|
**[Full Changelog →](CHANGELOG.md)**
|
|
144
144
|
|
|
@@ -156,7 +156,8 @@ npx multimodel-dev-os@latest handoff build
|
|
|
156
156
|
| **v2.6.0** | Real-Repo Onboarding & Adapter Sync | ✅ Released |
|
|
157
157
|
| **v2.7.0** | Website, Demo & Distribution System | ✅ Released |
|
|
158
158
|
| **v2.8.0 / v2.8.1** | Interactive TUI Dashboard & Plugin Hooks | ✅ Released |
|
|
159
|
-
| **
|
|
159
|
+
| **v2.9.0** | Local Workflow Marketplace & Plugin Catalog | ✅ Released |
|
|
160
|
+
| **v3.0.0** | Trusted Remote Catalog & Registry Governance Layer | ✅ Released |
|
|
160
161
|
|
|
161
162
|
**[Full Roadmap →](https://rizvee.github.io/multimodel-dev-os/v2-roadmap)**
|
|
162
163
|
|