multimodel-dev-os 2.8.1 → 2.9.1

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 (50) hide show
  1. package/.ai/plugins/catalog/.ai/checks/pre-commit-gate.md +14 -0
  2. package/.ai/plugins/catalog/.ai/skills/checkout-ops.md +12 -0
  3. package/.ai/plugins/catalog/.ai/skills/git-operations.md +21 -0
  4. package/.ai/plugins/catalog/.ai/skills/nextjs-builder.md +12 -0
  5. package/.ai/plugins/catalog/.ai/skills/release-ops.md +12 -0
  6. package/.ai/plugins/catalog/.ai/skills/seo-audit-ops.md +14 -0
  7. package/.ai/plugins/catalog/.ai/skills/wp-helper.md +13 -0
  8. package/.ai/plugins/catalog/README.md +34 -0
  9. package/.ai/plugins/catalog/ecommerce-workflows.yaml +14 -0
  10. package/.ai/plugins/catalog/git-workflows.yaml +22 -0
  11. package/.ai/plugins/catalog/nextjs-workflows.yaml +14 -0
  12. package/.ai/plugins/catalog/release-workflows.yaml +14 -0
  13. package/.ai/plugins/catalog/seo-workflows.yaml +19 -0
  14. package/.ai/plugins/catalog/wordpress-workflows.yaml +14 -0
  15. package/.ai/plugins/catalog.yaml +161 -0
  16. package/.ai/policies/registry-policy.yaml +51 -0
  17. package/.ai/registries/sources.yaml +15 -0
  18. package/.ai/registry-cache/README.md +35 -0
  19. package/.ai/schema/registry-manifest.schema.json +57 -0
  20. package/.ai/schema/registry-policy.schema.json +66 -0
  21. package/README.md +6 -5
  22. package/bin/multimodel-dev-os.js +1309 -30
  23. package/docs/.vitepress/config.js +16 -2
  24. package/docs/CLI.md +54 -1
  25. package/docs/architecture.md +9 -3
  26. package/docs/catalog-authoring.md +63 -0
  27. package/docs/catalog.md +72 -0
  28. package/docs/comparison.md +1 -0
  29. package/docs/dashboard.md +13 -2
  30. package/docs/faq.md +19 -0
  31. package/docs/plugin-authoring.md +6 -0
  32. package/docs/plugin-catalog.md +35 -0
  33. package/docs/plugin-hooks.md +6 -0
  34. package/docs/public/llms-full.txt +18 -1
  35. package/docs/public/llms.txt +17 -1
  36. package/docs/public/sitemap.xml +45 -0
  37. package/docs/quickstart.md +17 -0
  38. package/docs/registry-policy.md +93 -0
  39. package/docs/registry-security.md +67 -0
  40. package/docs/registry-sync.md +106 -0
  41. package/docs/remote-catalog-authoring.md +139 -0
  42. package/docs/repository-command-center.md +2 -0
  43. package/docs/trusted-registries.md +77 -0
  44. package/docs/v2-roadmap.md +13 -4
  45. package/docs/workflow-marketplace.md +22 -0
  46. package/docs/workflow-orchestration.md +6 -0
  47. package/package.json +1 -1
  48. package/scripts/install.ps1 +0 -0
  49. package/scripts/install.sh +0 -0
  50. package/scripts/verify.js +458 -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 v2.8
137
+ ## What's New in v3.0
138
138
 
139
- - 🧠 **Interactive TUI Dashboard** — Launches an interactive menu wrapper (`dashboard` or `ui`) for keyboard-driven navigation across all MultiModel Dev OS commands with non-TTY automated fallbacks.
140
- - 🔌 **Declarative Plugin Hooks** — Fully offline, declarative system (`plugin`) to list, show, validate, and install plugin rules to whitelisted directories with overwrite backups.
141
- - 🛡️ **Zero-Dependency CLI** — Custom keypress menu handling built on Node.js's native `readline` module.
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
- | **v3.0.0** | Unified Autonomous Co-Pilot Ecosystem | 🔮 Future |
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