multimodel-dev-os 0.8.0 → 1.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.
@@ -0,0 +1,26 @@
1
+ # Support Policy
2
+
3
+ This document defines the lifecycle, support channels, and bug-triaging guidelines for the MultiModel Dev OS.
4
+
5
+ ---
6
+
7
+ ## 1. Support Lifecycle
8
+
9
+ We are committed to maintaining a stable experience for developers:
10
+ - **Long-Term Support (LTS)**: The frozen `v1.0.0` protocol and CLI will receive security updates and critical bug fixes for at least 12 months post-release.
11
+ - **Backward Compatibility Guarantee**: All `1.x` minor releases will remain fully backward compatible with configurations created under `v1.0.0`.
12
+
13
+ ---
14
+
15
+ ## 2. Issue Triage and Bug Reports
16
+
17
+ If you encounter issues with the scaffolding or validation commands:
18
+ 1. Run `multimodel-dev-os doctor` to run advisory diagnostics.
19
+ 2. Ensure your local folder structure complies with the specifications defined in `docs/stable-protocol.md`.
20
+ 3. Submit bug reports using our GitHub Issue templates under the `.github/ISSUE_TEMPLATE/` directory.
21
+
22
+ ---
23
+
24
+ ## 3. Security Vulnerability Disclosures
25
+
26
+ Please do not open public issues for security bugs. Report vulnerabilities directly to the maintainers as described in the `SECURITY.md` file in the repository root.
@@ -0,0 +1,40 @@
1
+ # Template Quality Assurance Blueprint
2
+
3
+ To guarantee that all built-in and community templates scaffold cleanly and operate with zero syntax errors, templates must satisfy the following strict QA criteria before packaging.
4
+
5
+ ---
6
+
7
+ ## 1. Core QA Acceptance Checklist
8
+
9
+ All template profiles (Next.js SaaS, WordPress Site, SEO Landing Page, E-Commerce, General App) must pass these automated assertions:
10
+
11
+ ### A. Initialization Check
12
+ - [ ] Running `npx multimodel-dev-os init --template <name>` scaffolds all required folders and root files cleanly.
13
+ - [ ] No empty write errors, name drifts, or file conflicts occur when executed in an empty target path.
14
+
15
+ ### B. Validation & Doctor Checks
16
+ - [ ] Scaffolding outputs must return 100% successful passes when audited using the local validation linter:
17
+ ```bash
18
+ npx multimodel-dev-os validate
19
+ ```
20
+ - [ ] Running the advisor must return zero warnings or compatibility alerts:
21
+ ```bash
22
+ npx multimodel-dev-os doctor
23
+ ```
24
+
25
+ ### C. Caveman Mode Compatibility
26
+ - [ ] The template must include functional minimal-token variants inside its `.ai/templates/` folder.
27
+ - [ ] Toggling `--caveman` writes successfully, creating compressed files without loss of structural boundaries.
28
+
29
+ ### D. Adapter Installation Check
30
+ - [ ] The template must support native adapter mounts.
31
+ - [ ] Running `init --adapter cursor --adapter claude` copies the corresponding rule files and updates `.ai/config.yaml` to `true` instantly.
32
+
33
+ ---
34
+
35
+ ## 2. New Template Acceptance Criteria
36
+
37
+ When contributing custom team templates:
38
+ 1. **Generic but Realistic:** Templates must not include personal branding, fake metrics, or unverified benchmarks.
39
+ 2. **Zero Dependencies:** Templates must configure purely within the defined root and `.ai/` schema layers, introducing zero package dependencies.
40
+ 3. **Structured Context:** Project briefs and model maps must align with the official protocol specifications.
@@ -63,3 +63,9 @@ node bin/multimodel-dev-os.js show-template nextjs-saas
63
63
  # Bootstrap target using a template
64
64
  node bin/multimodel-dev-os.js init --target ../my-new-app --template nextjs-saas
65
65
  ```
66
+
67
+ ---
68
+
69
+ ## Template Quality Assurance
70
+
71
+ To ensure all contributed templates meet our rigorous quality standards before packaging, refer to our [Template Quality Assurance Blueprint](/template-qa).
@@ -0,0 +1,31 @@
1
+ # v1.0.0 Release Checklist
2
+
3
+ A strict checklist of quality gates and tests that must be run locally before the final release.
4
+
5
+ ---
6
+
7
+ ## 1. Quality Checklist
8
+
9
+ - [ ] All Layer 1 files exist (`AGENTS.md`, `MEMORY.md`, `TASKS.md`, `RUNBOOK.md`).
10
+ - [ ] Schema files (`config.schema.json`, `template.schema.json`, `adapter.schema.json`) exist under `.ai/schema/`.
11
+ - [ ] No external third-party dependencies are added to the core runtime of the CLI utility.
12
+ - [ ] Verify script runs without issues (`npm run verify`).
13
+ - [ ] Documentation builds without errors (`npm run docs:build`).
14
+ - [ ] Package whitelist filters have been reviewed to ensure `node_modules` and compiled VitePress distribution/caches are excluded.
15
+
16
+ ---
17
+
18
+ ## 2. CLI Execution Audits
19
+
20
+ Verify that the binary executable behaves identically across target systems:
21
+ ```bash
22
+ node bin/multimodel-dev-os.js --help
23
+ node bin/multimodel-dev-os.js templates
24
+ node bin/multimodel-dev-os.js validate --target .
25
+ node bin/multimodel-dev-os.js doctor --target .
26
+ ```
27
+
28
+ Verify dry-runs execute safely:
29
+ ```bash
30
+ node bin/multimodel-dev-os.js init --template nextjs-saas --dry-run
31
+ ```
@@ -0,0 +1,29 @@
1
+ # v1.0.0 Readiness Checklist
2
+
3
+ A strict quality playbook defining the core milestones and checks that must be satisfied before freezing the public MultiModel Dev OS protocol at `v1.0.0`.
4
+
5
+ ---
6
+
7
+ ## 1. Core API & Protocol Freeze
8
+ - [x] **Protocol Specification Freeze:** officially release the specification (`protocol.md`), locking the four root contracts (`AGENTS.md`, `MEMORY.md`, `TASKS.md`, `RUNBOOK.md`).
9
+ - [x] **JSON Schema Validation:** Complete standard JSON schema files under `.ai/schema/` to enforce config and template layouts.
10
+ - [x] **Command API Freeze:** Lock the core subcommands (`init`, `verify`, `validate`, `doctor`, `templates`) with consistent signatures, preventing breaking options in future minor versions.
11
+
12
+ ---
13
+
14
+ ## 2. Documentation & Visual Assets
15
+ - [x] **Navigation Menu Parity:** Assure that all nested guidelines, compatibility playbooks, and migration maps are integrated into the hosted VitePress documentation navigation.
16
+ - [x] **High-Fidelity SVGs:** Confirm lightweight, responsive vector assets exist in both root folders and docs public caches.
17
+ - [x] **Before/After Case Studies:** Complete 5 generic but realistic studies demonstrating context sync gains.
18
+
19
+ ---
20
+
21
+ ## 3. CLI Hardening & Error Handling
22
+ - [x] **Descriptive Warning Pathways:** Ensure the CLI logs descriptive error prompts when scaffolding directories, catching template mismatch errors and conflicts cleanly.
23
+ - [x] **Zero Dependency Limits:** Protect the CLI's pure-Node setup, assuring that zero runtime external packages are added.
24
+
25
+ ---
26
+
27
+ ## 4. Package Hygiene & Security
28
+ - [x] **Tarball audit:** Ensure `npm pack --dry-run` reports unpacked sizes under `~260kB` and compressed releases under `~76kB`.
29
+ - [x] **Ignored Cache verification:** Assert that local compiler caches (`docs/.vitepress/dist` and `docs/.vitepress/cache`) and `node_modules/` are strictly excluded from the packaging files whitelist.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multimodel-dev-os",
3
- "version": "0.8.0",
3
+ "version": "1.1.0",
4
4
  "bin": {
5
5
  "multimodel-dev-os": "bin/multimodel-dev-os.js"
6
6
  },
package/scripts/verify.js CHANGED
@@ -194,6 +194,42 @@ checkFile('docs/faq.md');
194
194
  checkFile('docs/testing-v0.2.md');
195
195
  checkFile('docs/npm-publishing.md');
196
196
  checkFile('docs/templates-guide.md');
197
+ checkFile('docs/protocol.md');
198
+ checkFile('docs/compatibility.md');
199
+ checkFile('docs/migration-guide.md');
200
+ checkFile('docs/template-qa.md');
201
+ checkFile('docs/v1-readiness.md');
202
+ checkFile('docs/stable-protocol.md');
203
+ checkFile('docs/release-policy.md');
204
+ checkFile('docs/support-policy.md');
205
+ checkFile('docs/final-launch.md');
206
+ checkFile('docs/v1-checklist.md');
207
+
208
+ // --- JSON Schemas ---
209
+ console.log('\nJSON Schemas:');
210
+ checkFile('.ai/schema/config.schema.json');
211
+ checkFile('.ai/schema/template.schema.json');
212
+ checkFile('.ai/schema/adapter.schema.json');
213
+
214
+ // --- Test Blueprints ---
215
+ console.log('\nTest Manuals:');
216
+ checkFile('tests/README.md');
217
+ checkFile('tests/fixtures/README.md');
218
+ checkFile('tests/smoke/README.md');
219
+
220
+ // --- Visual & AI Discovery Assets ---
221
+ console.log('\nVisual & AI Discovery Assets:');
222
+ checkFile('assets/favicon.png');
223
+ checkFile('assets/logo.png');
224
+ checkFile('docs/public/favicon.png');
225
+ checkFile('docs/public/logo.png');
226
+ checkFile('docs/public/llms.txt');
227
+ checkFile('docs/public/llms-full.txt');
228
+ checkFile('docs/public/robots.txt');
229
+ checkFile('docs/public/sitemap.xml');
230
+ checkFile('docs/public/assets/social-preview.svg');
231
+ checkFile('docs/public/assets/terminal-demo.svg');
232
+ checkFile('docs/public/assets/architecture-preview.svg');
197
233
 
198
234
  // --- CLI & Packaging Pre-Flight Tests ---
199
235
  console.log('\nRunning CLI & Packaging Pre-Flight Tests...');