multimodel-dev-os 3.0.1 → 3.2.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.
Files changed (59) hide show
  1. package/README.md +4 -0
  2. package/bin/multimodel-dev-os.js +3419 -3573
  3. package/docs/.vitepress/config.js +2 -2
  4. package/docs/index.md +5 -5
  5. package/docs/npm-publishing.md +5 -5
  6. package/docs/package-safety.md +24 -0
  7. package/docs/public/llms-full.txt +1 -1
  8. package/docs/public/llms.txt +1 -1
  9. package/docs/public/sitemap.xml +10 -0
  10. package/docs/registry-policy.md +4 -0
  11. package/docs/registry-security.md +7 -0
  12. package/docs/registry-sync.md +6 -0
  13. package/docs/release-policy.md +6 -5
  14. package/docs/testing.md +133 -0
  15. package/docs/trusted-registries.md +4 -0
  16. package/docs/v3-roadmap.md +20 -2
  17. package/package.json +10 -3
  18. package/scripts/build-cli.js +59 -0
  19. package/scripts/check-build-fresh.js +52 -0
  20. package/scripts/install.ps1 +1 -1
  21. package/scripts/install.sh +1 -1
  22. package/scripts/verify.js +221 -14
  23. package/scripts/verify.sh +11 -1
  24. package/src/catalog/loader.js +117 -0
  25. package/src/cli/args.js +118 -0
  26. package/src/cli/help.js +60 -0
  27. package/src/cli/main.js +5718 -0
  28. package/src/core/globals.js +52 -0
  29. package/src/core/hashes.js +15 -0
  30. package/src/core/policy.js +36 -0
  31. package/src/core/security.js +61 -0
  32. package/src/core/yaml.js +136 -0
  33. package/src/plugin/manifest.js +95 -0
  34. package/src/registry/sources.js +40 -0
  35. package/src/registry/validation.js +45 -0
  36. package/tests/README.md +37 -0
  37. package/tests/fixtures/README.md +22 -0
  38. package/tests/fixtures/custom-template-example/README.md +10 -0
  39. package/tests/fixtures/proposals/approved-append-line.md +28 -0
  40. package/tests/fixtures/proposals/approved-create-file.md +29 -0
  41. package/tests/fixtures/proposals/approved-replace-text.md +30 -0
  42. package/tests/fixtures/proposals/existing-create-file-no-overwrite.md +29 -0
  43. package/tests/fixtures/proposals/no-operations.md +18 -0
  44. package/tests/fixtures/proposals/path-traversal.md +29 -0
  45. package/tests/fixtures/proposals/pending-proposal.md +29 -0
  46. package/tests/fixtures/proposals/protected-path.md +29 -0
  47. package/tests/fixtures/proposals/replace-multiple-without-allow.md +30 -0
  48. package/tests/fixtures/registry-overrides/README.md +20 -0
  49. package/tests/smoke/README.md +37 -0
  50. package/tests/smoke/cli-smoke.md +49 -0
  51. package/tests/unit/build-output.test.js +40 -0
  52. package/tests/unit/catalog-loader.test.js +44 -0
  53. package/tests/unit/path-safety.test.js +62 -0
  54. package/tests/unit/plugin-manifest.test.js +94 -0
  55. package/tests/unit/prepublish-guard.test.js +35 -0
  56. package/tests/unit/registry-policy.test.js +46 -0
  57. package/tests/unit/registry-url-validation.test.js +64 -0
  58. package/tests/unit/yaml.test.js +92 -0
  59. package/docs/testing-v0.2.md +0 -73
package/README.md CHANGED
@@ -159,6 +159,10 @@ npx multimodel-dev-os@latest handoff build
159
159
  | **v2.9.0** | Local Workflow Marketplace & Plugin Catalog | ✅ Released |
160
160
  | **v3.0.0** | Trusted Remote Catalog & Registry Governance Layer | ✅ Released |
161
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 |
164
+ | **v3.2.0** | Stable Modular Build + Package Governance | ✅ Released |
165
+
162
166
 
163
167
  **[Full Roadmap →](https://rizvee.github.io/multimodel-dev-os/v3-roadmap)**
164
168