multimodel-dev-os 3.0.0 → 3.1.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/README.md +6 -2
- package/bin/multimodel-dev-os.js +3433 -3565
- package/docs/.vitepress/config.js +3 -3
- package/docs/catalog.md +1 -1
- package/docs/npm-publishing.md +6 -6
- package/docs/package-safety.md +8 -0
- package/docs/public/llms-full.txt +2 -2
- package/docs/public/llms.txt +1 -1
- package/docs/public/sitemap.xml +5 -0
- package/docs/registry-policy.md +4 -0
- package/docs/registry-security.md +8 -1
- package/docs/registry-sync.md +6 -0
- package/docs/testing.md +123 -0
- package/docs/trusted-registries.md +4 -0
- package/docs/v3-roadmap.md +97 -0
- package/package.json +7 -3
- package/scripts/build-cli.js +17 -0
- package/scripts/install.ps1 +1 -1
- package/scripts/install.sh +1 -1
- package/scripts/verify.js +101 -10
- package/scripts/verify.sh +1 -1
- package/docs/testing-v0.2.md +0 -73
- package/docs/v2-roadmap.md +0 -116
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ Your workspace now has a **single source of truth** that every AI coding tool re
|
|
|
48
48
|
| 🧠 | **Intelligence Engine** | Hash-compressed memory, feedback learning, self-improvement proposals with HITL safety gates |
|
|
49
49
|
| 📁 | **Repo Onboarding** | Analyze existing projects, recommend templates, and bootstrap configs without breaking anything |
|
|
50
50
|
| 🔧 | **Zero Dependencies** | Pure Node.js CLI — no runtime, no build step, no package manager lock-in |
|
|
51
|
-
| 🛡️ | **
|
|
51
|
+
| 🛡️ | **248+ Quality Gates** | Built-in `validate`, `doctor`, and `verify` commands with strict structural assertions |
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
@@ -158,8 +158,12 @@ npx multimodel-dev-os@latest handoff build
|
|
|
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
160
|
| **v3.0.0** | Trusted Remote Catalog & Registry Governance Layer | ✅ Released |
|
|
161
|
+
| **v3.0.1** | Registry UX & Policy Safety Patch | ✅ Released |
|
|
162
|
+
| **v3.0.2** | Registry Sync Security Hotfix | ✅ Released |
|
|
163
|
+
| **v3.1.0** | Modular Source Layout + Formal Unit Tests | ✅ Released |
|
|
161
164
|
|
|
162
|
-
|
|
165
|
+
|
|
166
|
+
**[Full Roadmap →](https://rizvee.github.io/multimodel-dev-os/v3-roadmap)**
|
|
163
167
|
|
|
164
168
|
---
|
|
165
169
|
|