multimodel-dev-os 2.0.1 → 2.6.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 (45) hide show
  1. package/.ai/intelligence/README.md +14 -0
  2. package/.ai/intelligence/apply-log.schema.json +65 -0
  3. package/.ai/intelligence/feedback-log.example.jsonl +2 -0
  4. package/.ai/intelligence/feedback.schema.json +47 -0
  5. package/.ai/intelligence/improvement-proposal.schema.json +70 -0
  6. package/.ai/intelligence/learning-rules.example.md +18 -0
  7. package/.ai/intelligence/memory.schema.json +97 -0
  8. package/.ai/policies/approval-gates.md +35 -0
  9. package/.ai/policies/memory-policy.md +30 -0
  10. package/.ai/policies/self-improvement-policy.md +39 -0
  11. package/.ai/proposals/README.md +44 -0
  12. package/.ai/proposals/apply-operation.example.json +22 -0
  13. package/.ai/registries/capabilities.yaml +73 -0
  14. package/.ai/registries/tools.yaml +84 -0
  15. package/.ai/registries/workflows.yaml +217 -0
  16. package/README.md +218 -97
  17. package/bin/multimodel-dev-os.js +2871 -6
  18. package/docs/.vitepress/config.js +23 -1
  19. package/docs/CLI.md +89 -2
  20. package/docs/adapter-sync.md +27 -0
  21. package/docs/adapters.md +16 -0
  22. package/docs/agent-handoff.md +40 -0
  23. package/docs/approved-proposal-apply.md +156 -0
  24. package/docs/capability-registry.md +24 -0
  25. package/docs/feedback-learning.md +33 -0
  26. package/docs/future-proof-architecture.md +22 -0
  27. package/docs/hash-compressed-memory.md +72 -0
  28. package/docs/improvement-proposals.md +70 -0
  29. package/docs/learning-rules.md +36 -0
  30. package/docs/public/llms-full.txt +32 -2
  31. package/docs/public/llms.txt +43 -2
  32. package/docs/public/sitemap.xml +30 -0
  33. package/docs/quickstart.md +7 -1
  34. package/docs/real-repo-onboarding.md +27 -0
  35. package/docs/repository-command-center.md +52 -0
  36. package/docs/self-improving-codebase.md +46 -0
  37. package/docs/template-recommendation.md +22 -0
  38. package/docs/templates-guide.md +11 -0
  39. package/docs/tool-registry.md +21 -0
  40. package/docs/v2-roadmap.md +20 -0
  41. package/docs/workflow-orchestration.md +59 -0
  42. package/package.json +1 -1
  43. package/scripts/install.ps1 +1 -1
  44. package/scripts/install.sh +1 -1
  45. package/scripts/verify.js +107 -3
@@ -0,0 +1,217 @@
1
+ # MultiModel Dev OS - Workflow Registry
2
+ # Defines logical steps, cognitive thresholds, and checklist validation gates for coding cycles
3
+
4
+ workflows:
5
+ repo-health:
6
+ name: "Repository Health Check"
7
+ description: "Evaluates project hygiene, directory schema, and structural integrity."
8
+ risk_level: "low"
9
+ allowed_to_write_memory: false
10
+ allowed_to_modify_source: false
11
+ steps:
12
+ - name: "framework-scanning"
13
+ command: "scan"
14
+ expected_output: "Framework detection signals"
15
+ next_action: "doctor"
16
+ - name: "advisory-checkup"
17
+ command: "doctor"
18
+ expected_output: "Project compatibility alerts"
19
+ next_action: "verify"
20
+ - name: "schema-verification"
21
+ command: "verify"
22
+ expected_output: "Structural file verification"
23
+ next_action: "done"
24
+ commands:
25
+ - "scan"
26
+ - "doctor"
27
+ - "verify"
28
+ expected_outputs:
29
+ - "Framework detection signals"
30
+ - "Project compatibility alerts"
31
+ - "Structural file verification"
32
+ next_action: "Resolve warnings shown in doctor checkup"
33
+
34
+ memory-refresh:
35
+ name: "Memory Refresh Cycle"
36
+ description: "Inspects workspace changes and increments memory."
37
+ risk_level: "medium"
38
+ allowed_to_write_memory: true
39
+ allowed_to_modify_source: false
40
+ steps:
41
+ - name: "diff-assessment"
42
+ command: "memory diff"
43
+ expected_output: "Memory delta"
44
+ next_action: "memory refresh"
45
+ - name: "index-refresh"
46
+ command: "memory refresh"
47
+ expected_output: "Updated memory files"
48
+ next_action: "done"
49
+ commands:
50
+ - "memory diff"
51
+ - "memory refresh"
52
+ expected_outputs:
53
+ - "Memory delta"
54
+ - "Updated memory files"
55
+ next_action: "Commit updated intelligence files"
56
+
57
+ feedback-review:
58
+ name: "Feedback Review Loop"
59
+ description: "Inspects developer loop feedback and compiles learning rules."
60
+ risk_level: "low"
61
+ allowed_to_write_memory: false
62
+ allowed_to_modify_source: false
63
+ steps:
64
+ - name: "feedback-listing"
65
+ command: "feedback list"
66
+ expected_output: "Logged feedback items"
67
+ next_action: "feedback summarize"
68
+ - name: "rules-summarization"
69
+ command: "feedback summarize"
70
+ expected_output: "Compiled learning-rules.md"
71
+ next_action: "done"
72
+ commands:
73
+ - "feedback list"
74
+ - "feedback summarize"
75
+ expected_outputs:
76
+ - "Logged feedback items"
77
+ - "Compiled learning rules file"
78
+ next_action: "Review rules and share with the team"
79
+
80
+ proposal-review:
81
+ name: "Improvement Proposal Review"
82
+ description: "Inspects codebase optimization proposals and execution histories."
83
+ risk_level: "low"
84
+ allowed_to_write_memory: false
85
+ allowed_to_modify_source: false
86
+ steps:
87
+ - name: "proposals-list"
88
+ command: "improve review"
89
+ expected_output: "Proposals list"
90
+ next_action: "improve status"
91
+ - name: "proposals-status"
92
+ command: "improve status"
93
+ expected_output: "Pending, approved counts"
94
+ next_action: "improve log"
95
+ - name: "apply-history"
96
+ command: "improve log"
97
+ expected_output: "Audit apply history"
98
+ next_action: "done"
99
+ commands:
100
+ - "improve review"
101
+ - "improve status"
102
+ - "improve log"
103
+ expected_outputs:
104
+ - "Proposals list"
105
+ - "Pending, approved counts"
106
+ - "Audit apply history"
107
+ next_action: "Apply approved proposals manually"
108
+
109
+ release-check:
110
+ name: "Pre-Release Verification"
111
+ description: "Verifies package readiness and install script alignment prior to publish."
112
+ risk_level: "low"
113
+ allowed_to_write_memory: false
114
+ allowed_to_modify_source: false
115
+ steps:
116
+ - name: "code-hygiene"
117
+ command: "verify"
118
+ expected_output: "Release verification passed"
119
+ next_action: "doctor --release"
120
+ - name: "doctor-checks"
121
+ command: "doctor --release"
122
+ expected_output: "Release audit doctor complete"
123
+ next_action: "npm pack --dry-run"
124
+ - name: "tarball-check"
125
+ command: "npm pack --dry-run"
126
+ expected_output: "Dry-run tarball details"
127
+ next_action: "done"
128
+ commands:
129
+ - "verify"
130
+ - "doctor --release"
131
+ - "npm pack --dry-run"
132
+ expected_outputs:
133
+ - "Release verification passed"
134
+ - "Release audit doctor complete"
135
+ - "Dry-run tarball details"
136
+ next_action: "Proceed to manual package publish"
137
+
138
+ feature-implementation:
139
+ name: "Feature Implementation"
140
+ description: "Standard workflow to design, write, and verify new codebase features."
141
+ risk_level: "high"
142
+ allowed_to_write_memory: true
143
+ allowed_to_modify_source: true
144
+ steps:
145
+ - name: planning
146
+ command: "propose"
147
+ expected_output: "Design plan proposal"
148
+ next_action: "coding"
149
+ - name: coding
150
+ command: "implement"
151
+ expected_output: "Code modifications"
152
+ next_action: "verification"
153
+ - name: verification
154
+ command: "verify"
155
+ expected_output: "Checks passing"
156
+ next_action: "done"
157
+ commands:
158
+ - "propose"
159
+ - "implement"
160
+ - "verify"
161
+ expected_outputs:
162
+ - "Design plan proposal"
163
+ - "Code modifications"
164
+ - "Checks passing"
165
+ next_action: "Submit for approval"
166
+
167
+ bug-fixing:
168
+ name: "Bug Fixing"
169
+ description: "Workflow to reproduce, resolve, and run regression tests on defects."
170
+ risk_level: "medium"
171
+ allowed_to_write_memory: true
172
+ allowed_to_modify_source: true
173
+ steps:
174
+ - name: reproduction
175
+ command: "verify"
176
+ expected_output: "Reproduction cases"
177
+ next_action: "resolution"
178
+ - name: resolution
179
+ command: "implement"
180
+ expected_output: "Fix applied"
181
+ next_action: "regression-testing"
182
+ - name: regression-testing
183
+ command: "verify"
184
+ expected_output: "Regression tests passing"
185
+ next_action: "done"
186
+ commands:
187
+ - "verify"
188
+ - "implement"
189
+ - "verify"
190
+ expected_outputs:
191
+ - "Reproduction cases"
192
+ - "Fix applied"
193
+ - "Regression tests passing"
194
+ next_action: "Verify fixed state is fully clean"
195
+
196
+ security-audit:
197
+ name: "Security Audit"
198
+ description: "Workflow to audit files against security guidelines and vulnerability checks."
199
+ risk_level: "high"
200
+ allowed_to_write_memory: false
201
+ allowed_to_modify_source: false
202
+ steps:
203
+ - name: scanning
204
+ command: "scan"
205
+ expected_output: "Security scanning results"
206
+ next_action: "reporting"
207
+ - name: reporting
208
+ command: "doctor"
209
+ expected_output: "Vulnerabilities summary report"
210
+ next_action: "done"
211
+ commands:
212
+ - "scan"
213
+ - "doctor"
214
+ expected_outputs:
215
+ - "Security scanning results"
216
+ - "Vulnerabilities summary report"
217
+ next_action: "Mitigate warnings reported by scanner"
package/README.md CHANGED
@@ -5,12 +5,13 @@
5
5
  </p>
6
6
 
7
7
  <p align="center">
8
- <b>One portable AI Dev OS for multimodel coding workflows.</b>
8
+ <b>The portable AI Dev OS for every model, every tool, every workflow.</b><br>
9
+ <sub>One workspace. Zero lock-in. Ship faster with Codex, Gemini, Claude, Cursor, Antigravity, VS Code, and more.</sub>
9
10
  </p>
10
11
 
11
12
  <p align="center">
12
13
  <a href="https://www.npmjs.com/package/multimodel-dev-os"><img src="https://img.shields.io/npm/v/multimodel-dev-os.svg?color=blue&style=flat-square" alt="NPM Version"></a>
13
- <a href="https://www.npmjs.com/package/multimodel-dev-os"><img src="https://img.shields.io/badge/npm-package-cb3837.svg?style=flat-square" alt="NPM Package"></a>
14
+ <a href="https://www.npmjs.com/package/multimodel-dev-os"><img src="https://img.shields.io/npm/dm/multimodel-dev-os.svg?color=orange&style=flat-square" alt="NPM Downloads"></a>
14
15
  <a href="https://github.com/rizvee/multimodel-dev-os/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/multimodel-dev-os.svg?color=green&style=flat-square" alt="License"></a>
15
16
  <a href="https://github.com/rizvee/multimodel-dev-os/releases"><img src="https://img.shields.io/github/v/release/rizvee/multimodel-dev-os?color=indigo&style=flat-square" alt="GitHub Release"></a>
16
17
  <a href="https://github.com/rizvee/multimodel-dev-os/actions"><img src="https://img.shields.io/github/actions/workflow/status/rizvee/multimodel-dev-os/verify.yml?branch=main&style=flat-square&label=verification" alt="Build Verification"></a>
@@ -19,15 +20,13 @@
19
20
 
20
21
  ---
21
22
 
22
- ## One portable AI Dev OS for Codex, Antigravity, Cursor, Claude, Gemini, VS Code, and multimodel coding workflows.
23
-
24
- Initialize a stable workspace instantly:
23
+ ## Get started in 30 seconds
25
24
 
26
25
  ```bash
27
26
  npx multimodel-dev-os@latest init
28
27
  ```
29
28
 
30
- ---
29
+ That's it. Your workspace now has a unified AI context layer that works across **every major AI coding tool** — no config duplication, no context loss, no vendor lock-in.
31
30
 
32
31
  <p align="center">
33
32
  <img src="assets/social-preview.svg" alt="MultiModel Dev OS Banner" width="100%">
@@ -35,35 +34,37 @@ npx multimodel-dev-os@latest init
35
34
 
36
35
  ---
37
36
 
38
- ## Why This Exists
37
+ ## The Problem
39
38
 
40
- AI pair programmers are lightning-fast, but switching between them introduces context fragmentation:
41
- 1. **Context Loss:** You use **Cursor** for autocomplete, **Claude Code** for command execution, and **Gemini/Antigravity** for deep audits. Every switch forces you to rebuild context.
42
- 2. **Instruction Drift:** Different tools look for different config files (`.cursorrules`, `CLAUDE.md`, `.vscode/settings.json`, `.gemini/settings.json`). Modifying style rules or build parameters in one place leaves the others outdated.
39
+ AI pair programmers are powerful individually, but switching between them creates real friction:
43
40
 
44
- `multimodel-dev-os` solves this by establishing a single source of truth in your repository: four root contracts (`AGENTS.md`, `MEMORY.md`, `TASKS.md`, `RUNBOOK.md`) and a `.ai/` directory that bridges them to all major tools dynamically.
45
-
46
- ---
41
+ | Pain Point | What Happens |
42
+ |:---|:---|
43
+ | **Context Fragmentation** | You use Cursor for autocomplete, Claude Code for terminal ops, Gemini for deep audits. Every switch forces a full context rebuild. |
44
+ | **Instruction Drift** | `.cursorrules`, `CLAUDE.md`, `.vscode/settings.json`, `.gemini/settings.json` — change one, the rest go stale. |
45
+ | **Token Waste** | Without context budgets, prompts bloat and API bills spike. |
46
+ | **Onboarding Friction** | New team members start from scratch with every tool. |
47
47
 
48
- ## What You Get
48
+ ## The Solution
49
49
 
50
- A standard installation scaffolds a lightweight, zero-runtime-dependency workspace hierarchy:
50
+ **MultiModel Dev OS** creates a single source of truth — four root contracts and a `.ai/` directory that bridges every tool dynamically:
51
51
 
52
52
  ```
53
- ┌────────────────────────────────────────────────────────┐
54
- LAYER 1: Root Contracts (Single Source of Truth)
55
- AGENTS.md MEMORY.md TASKS.md RUNBOOK.md
56
- └──────────────────────────┬─────────────────────────────┘
57
- Centralizes project context
58
- ┌──────────────────────────▼─────────────────────────────┐
59
- LAYER 2: Configuration & Modules (.ai/)
60
- context/agents/skills/prompts/checks/
61
- └──────────────────────────┬─────────────────────────────┘
62
- │ Routes files dynamically
63
- ┌──────────────────────────▼─────────────────────────────┐
64
- │ LAYER 3: Tool & IDE Adapters │
65
- .cursorrules CLAUDE.md .vscode/ • .gemini/
66
- └────────────────────────────────────────────────────────┘
53
+ ┌─────────────────────────────────────────────────────────────┐
54
+ LAYER 1: Root Contracts (Single Source of Truth)
55
+ AGENTS.md MEMORY.md TASKS.md RUNBOOK.md
56
+ └─────────────────────────┬───────────────────────────────────┘
57
+
58
+ ┌─────────────────────────▼───────────────────────────────────┐
59
+ LAYER 2: Configuration Engine (.ai/)
60
+ context/ agents/ skills/ prompts/ checks/ models/
61
+ │ registries/ intelligence/ policies/ │
62
+ └─────────────────────────┬───────────────────────────────────┘
63
+
64
+ ┌─────────────────────────▼───────────────────────────────────┐
65
+ LAYER 3: Tool & IDE Adapters
66
+ │ .cursorrules CLAUDE.md .vscode/ .gemini/ GEMINI.md │
67
+ └─────────────────────────────────────────────────────────────┘
67
68
  ```
68
69
 
69
70
  <p align="center">
@@ -72,108 +73,191 @@ A standard installation scaffolds a lightweight, zero-runtime-dependency workspa
72
73
 
73
74
  ---
74
75
 
75
- ## Supported Tools
76
-
77
- | Tool / Agent | Target Adapter File | Setup Instructions | Behavior Setup |
78
- | :--- | :--- | :--- | :--- |
79
- | **Codex** | `adapters/codex/AGENTS.md` | `adapters/codex/setup.md` | Automated code scaffolding |
80
- | **Antigravity** | `.gemini/settings.json` | `adapters/antigravity/setup.md` | Security and audit parameters |
81
- | **Cursor** | `.cursorrules` | `adapters/cursor/setup.md` | Inline autocomplete guidelines |
82
- | **Claude Code** | `CLAUDE.md` | `adapters/claude/setup.md` | Terminal build and run controls |
83
- | **Gemini** | `GEMINI.md` | `adapters/gemini/setup.md` | Prompt system context logs |
84
- | **VS Code** | `.vscode/settings.json` | `adapters/vscode/setup.md` | Editor layout and search limits |
85
-
86
- ---
87
-
88
- ## Why Not Just a Manual AGENTS.md?
76
+ ## Supported Tools & Agents
89
77
 
90
- While you can write a raw markdown file manually, `multimodel-dev-os` offers a standardized development workflow:
78
+ | Tool / Agent | Adapter File | Status |
79
+ |:---|:---|:---|
80
+ | **Codex** (OpenAI) | `adapters/codex/AGENTS.md` | ✅ Full support |
81
+ | **Antigravity** (Google DeepMind) | `.gemini/settings.json` | ✅ Full support |
82
+ | **Cursor** | `.cursorrules` | ✅ Full support |
83
+ | **Claude Code** (Anthropic) | `CLAUDE.md` | ✅ Full support |
84
+ | **Gemini** (Google) | `GEMINI.md` | ✅ Full support |
85
+ | **VS Code** (Copilot) | `.vscode/settings.json` | ✅ Full support |
86
+ | **Cline / Continue / Roo Code** | Via adapter registry | 🔌 Adapter-ready |
87
+ | **Aider / Windsurf** | Via adapter registry | 🔌 Adapter-ready |
88
+ | **MCP Tools** (gcloud, Chrome DevTools) | Via tool registry | 🔌 Registry-ready |
91
89
 
92
- | Feature | Manual Rules File | MultiModel Dev OS |
93
- | :--- | :--- | :--- |
94
- | **Tool Synchronization** | Manual copy-paste across tools | Automated dynamic adapters |
95
- | **Context Budgets** | Bloats prompts, wasting cost | **Caveman Mode** slashes tokens by **~79%** |
96
- | **Standards Enforcement**| Easy to drift and corrupt | Built-in CLI `validate` and `doctor` checks |
97
- | **Onboarding baseline** | Start from scratch | 5 production-ready real-world templates |
90
+ > **Zero lock-in.** Switch tools freely your context, rules, and memory travel with you.
98
91
 
99
92
  ---
100
93
 
101
- ## Interactive Command Line Interface (CLI)
94
+ ## CLI Commands
102
95
 
103
- MultiModel Dev OS is powered by a pure Node.js CLI with **zero runtime external npm dependencies**.
96
+ MultiModel Dev OS ships a pure Node.js CLI with **zero runtime dependencies**.
104
97
 
105
98
  <p align="center">
106
99
  <img src="assets/terminal-demo.svg" alt="Terminal Demo Sequence" width="100%">
107
100
  </p>
108
101
 
109
- ### 1. Scaffolding Templates (Stable npm @latest)
110
- Initialize customized stack specifications for stable releases:
111
- - **Next.js SaaS:** `npx multimodel-dev-os@latest init --template nextjs-saas`
112
- - **WordPress Theme/Plugin:** `npx multimodel-dev-os@latest init --template wordpress-site`
113
- - **E-Commerce Store:** `npx multimodel-dev-os@latest init --template ecommerce-store`
114
- - **SEO Landing Page:** `npx multimodel-dev-os@latest init --template seo-landing-page`
115
- - **General Fallback:** `npx multimodel-dev-os@latest init --template general-app`
102
+ ### Initialize a Workspace
116
103
 
117
- ### 2. Adapter Linking (Stable npm @latest)
118
- Inject rules specifically for a developer tool:
119
104
  ```bash
105
+ # Default workspace
106
+ npx multimodel-dev-os@latest init
107
+
108
+ # Pick a template
109
+ npx multimodel-dev-os@latest init --template nextjs-saas
110
+ npx multimodel-dev-os@latest init --template wordpress-site
111
+ npx multimodel-dev-os@latest init --template ecommerce-store
112
+ npx multimodel-dev-os@latest init --template seo-landing-page
113
+ npx multimodel-dev-os@latest init --template expo-react-native-android
114
+ npx multimodel-dev-os@latest init --template general-app
115
+
116
+ # Inject a specific adapter
120
117
  npx multimodel-dev-os@latest init --adapter cursor
121
118
  npx multimodel-dev-os@latest init --adapter claude
122
119
  ```
123
120
 
124
- ### 3. Caveman Mode (Stable npm @latest)
125
- Cuts prompt rules overhead down by **~79%** using highly optimized short-hand declarations:
121
+ ### Codebase Scanning & Memory
122
+
126
123
  ```bash
127
- npx multimodel-dev-os@latest init --caveman
124
+ # Scan target repository structure and framework signals
125
+ npx multimodel-dev-os@latest scan
126
+
127
+ # Show compact repository intelligence state status
128
+ npx multimodel-dev-os@latest status
129
+
130
+ # Compile hash-compressed codebase state memory
131
+ npx multimodel-dev-os@latest memory build
132
+
133
+ # Incremental update of codebase state memory
134
+ npx multimodel-dev-os@latest memory refresh
135
+
136
+ # Diff current codebase state against memory files
137
+ npx multimodel-dev-os@latest memory diff
128
138
  ```
129
139
 
130
- ### 4. Registry & Model Commands (v2.0.0 Stable Release)
131
- Run model capabilities registries, adapter registers, and scaffold mobile templates directly:
140
+ ### Feedback Learning & Proposals
141
+
132
142
  ```bash
133
- # List model or adapter registries
134
- npx multimodel-dev-os@latest models
135
- npx multimodel-dev-os@latest adapters
143
+ # Log developer preference or instruction feedback
144
+ npx multimodel-dev-os@latest feedback add "Avoid Tailwind CSS" --type preference
136
145
 
137
- # Scaffold the Android Expo template
138
- npx multimodel-dev-os@latest init --template expo-react-native-android
146
+ # View logged feedback entries
147
+ npx multimodel-dev-os@latest feedback list
148
+
149
+ # Compile raw feedback logs into active rules
150
+ npx multimodel-dev-os@latest feedback summarize
151
+
152
+ # Generate structured codebase improvement proposal
153
+ npx multimodel-dev-os@latest improve propose --title "Fix config issues"
154
+
155
+ # Review active proposals and statuses
156
+ npx multimodel-dev-os@latest improve review
157
+
158
+ # View improvement engine status
159
+ npx multimodel-dev-os@latest improve status
160
+
161
+ # Validate proposal safety gates and operations
162
+ npx multimodel-dev-os@latest improve validate .ai/proposals/proposal-xxxx.md
163
+
164
+ # Preview proposed changes in unified diff format
165
+ npx multimodel-dev-os@latest improve diff .ai/proposals/proposal-xxxx.md
166
+
167
+ # Apply deterministic approved operations to codebase
168
+ npx multimodel-dev-os@latest improve apply .ai/proposals/proposal-xxxx.md --approved
169
+
170
+ # View applied proposals execution history audit log
171
+ npx multimodel-dev-os@latest improve log
172
+
173
+ # Orchestrate development workflow pipelines
174
+ npx multimodel-dev-os@latest workflow run repo-health
175
+ npx multimodel-dev-os@latest workflow list
176
+
177
+ # Compile or print token-compressed agent session handoff summaries
178
+ npx multimodel-dev-os@latest handoff build
179
+ npx multimodel-dev-os@latest handoff show
180
+
181
+ # Onboard existing repositories safely
182
+ npx multimodel-dev-os@latest onboard analyze
183
+ npx multimodel-dev-os@latest onboard recommend
184
+ npx multimodel-dev-os@latest onboard plan
185
+ npx multimodel-dev-os@latest onboard apply --approved
186
+ npx multimodel-dev-os@latest onboard status
187
+
188
+ # Manage and sync IDE adapter configuration files
189
+ npx multimodel-dev-os@latest adapter status
190
+ npx multimodel-dev-os@latest adapter diff cursor
191
+ npx multimodel-dev-os@latest adapter sync cursor --approved
192
+ npx multimodel-dev-os@latest adapter sync all --approved
193
+ ```
194
+
195
+ ### Explore Registries
196
+
197
+ ```bash
198
+ npx multimodel-dev-os@latest templates # List all templates
199
+ npx multimodel-dev-os@latest models # View model registry
200
+ npx multimodel-dev-os@latest adapters # View adapter registry
201
+ npx multimodel-dev-os@latest models --json # Machine-readable output
202
+ ```
203
+
204
+ ### Quality Gates
205
+
206
+ ```bash
207
+ npx multimodel-dev-os@latest validate # Strict schema validation
208
+ npx multimodel-dev-os@latest doctor # Advisory compatibility checks
209
+ npx multimodel-dev-os@latest verify # Full release audit
210
+ ```
211
+
212
+ ### Caveman Mode
213
+
214
+ Cut prompt token overhead by **~79%** with compressed shorthand declarations:
215
+
216
+ ```bash
217
+ npx multimodel-dev-os@latest init --caveman
139
218
  ```
140
219
 
141
- For more details, see the [Model Capabilities Registry Guide](https://rizvee.github.io/multimodel-dev-os/model-compatibility).
220
+ ---
221
+
222
+ ## Why Not Just a Manual AGENTS.md?
142
223
 
143
- ### 5. Quality Gates
144
- Run assertions and diagnostic checkups:
145
- - **`validate`** (Strict schema checkup): `npx multimodel-dev-os@latest validate`
146
- - **`doctor`** (Advisory compatibility warning): `npx multimodel-dev-os@latest doctor`
224
+ | Capability | Manual Rules File | MultiModel Dev OS |
225
+ |:---|:---|:---|
226
+ | **Tool Sync** | Manual copy-paste across tools | Automated dynamic adapters |
227
+ | **Context Budgets** | Bloats prompts, wastes tokens | Caveman Mode cuts **~79%** token overhead |
228
+ | **Standards** | Easy to drift and corrupt | CLI `validate` + `doctor` + 193-assertion `verify` |
229
+ | **Templates** | Start from scratch | 6 production-ready real-world templates |
230
+ | **Model Registry** | Hardcoded model names | Dynamic capability-scored registry with routing presets |
231
+ | **Safety** | No guardrails | Prepublish guards, schema validation, hygiene checks |
147
232
 
148
233
  ---
149
234
 
150
235
  ## Cost & Context Optimization
151
236
 
152
- Minimize prompt overhead and API billing by mapping key context-reduction techniques to MultiModel Dev OS features:
237
+ Minimize prompt overhead and API billing with built-in context-reduction techniques:
153
238
 
154
239
  <p align="center">
155
240
  <img src="assets/cost-optimization.svg" alt="Cost Optimization Funnel" width="100%">
156
241
  </p>
157
242
 
158
- For a full deep dive, see our [Cost Optimization Playbook](https://rizvee.github.io/multimodel-dev-os/cost-optimization).
243
+ Read the full playbook: **[Cost Optimization Guide](https://rizvee.github.io/multimodel-dev-os/cost-optimization)**
159
244
 
160
245
  ---
161
246
 
162
247
  ## 5-Day Adoption Roadmap
163
248
 
164
- Deploying MultiModel Dev OS across your team is straightforward and tool-neutral:
249
+ Deploy MultiModel Dev OS across your team in under a week:
165
250
 
166
251
  <p align="center">
167
252
  <img src="assets/ai-dev-os-roadmap.svg" alt="5-Day Adoption Roadmap" width="100%">
168
253
  </p>
169
254
 
170
- See our step-by-step timeline: [5-Day Adoption Roadmap Playbook](https://rizvee.github.io/multimodel-dev-os/5-day-roadmap).
255
+ Step-by-step timeline: **[5-Day Adoption Playbook](https://rizvee.github.io/multimodel-dev-os/5-day-roadmap)**
171
256
 
172
257
  ---
173
258
 
174
259
  ## Real-World Case Studies
175
260
 
176
- Discover how engineering teams deploy MultiModel Dev OS:
177
261
  - 📦 [Full-Stack Next.js SaaS: Database Schema Synchronization](https://rizvee.github.io/multimodel-dev-os/case-studies/nextjs-saas)
178
262
  - 🔌 [WordPress Theme Scaffolding: Folder Boundary Protections](https://rizvee.github.io/multimodel-dev-os/case-studies/wordpress-site)
179
263
  - 🛒 [E-Commerce Webhooks: State Verification Alignment](https://rizvee.github.io/multimodel-dev-os/case-studies/ecommerce-store)
@@ -182,31 +266,68 @@ Discover how engineering teams deploy MultiModel Dev OS:
182
266
 
183
267
  ---
184
268
 
185
- ## Stable Protocol Specification & Roadmap
269
+ ## Intelligence Layer (v2.1.0 Coming Next)
186
270
 
187
- MultiModel Dev OS v2.x packages the stable Layer 1, Layer 2, and Layer 3 specifications alongside the Model Compatibility and Template Galaxy registries.
188
- - 🏁 [v2 Release Checklist](/docs/v2-release-checklist.md) (Release quality checklist)
189
- - 🛡️ [Stable Protocol Specification](https://rizvee.github.io/multimodel-dev-os/stable-protocol)
190
- - 🔌 [Multi-Agent Compatibility Guides](https://rizvee.github.io/multimodel-dev-os/compatibility)
191
- - 📈 [Upgrade & Migration Guide](https://rizvee.github.io/multimodel-dev-os/migration-guide)
192
- - 🏁 [v1.0.0 Release Quality Checklist](https://rizvee.github.io/multimodel-dev-os/v1-checklist)
271
+ The next major milestone introduces a **future-proof intelligence layer** registry-driven, feedback-enabled, with strict human-in-the-loop safety gates:
272
+
273
+ | Component | Description |
274
+ |:---|:---|
275
+ | **Capability Registry** | Score models across coding, reasoning, repo-scan, agentic-duration, MCP compliance — no hardcoded names |
276
+ | **Tool Registry** | Define IDE, terminal, and MCP tool integrations dynamically |
277
+ | **Hash-Compressed Memory** | Token-efficient codebase fingerprints, summaries, and dependency maps |
278
+ | **Feedback Learning** | Convert developer corrections into reusable system rules |
279
+ | **Self-Improvement Engine** | Proposal → Review → Apply cycles with mandatory HITL approval and automatic rollback |
280
+
281
+ > [!NOTE]
282
+ > The v2.1.0 schemas, registries, and policies are already committed and verified (193/193 assertions pass). CLI implementation is the next phase.
283
+
284
+ Learn more:
285
+ - [Future-Proof Architecture](https://rizvee.github.io/multimodel-dev-os/future-proof-architecture)
286
+ - [Hash-Compressed Memory](https://rizvee.github.io/multimodel-dev-os/hash-compressed-memory)
287
+ - [Feedback Learning](https://rizvee.github.io/multimodel-dev-os/feedback-learning)
288
+ - [Capability Registry Guide](https://rizvee.github.io/multimodel-dev-os/capability-registry)
289
+ - [v2 Roadmap (v2.1 → v3.0)](https://rizvee.github.io/multimodel-dev-os/v2-roadmap)
193
290
 
194
291
  ---
195
292
 
196
- ## Contributing
293
+ ## Roadmap
197
294
 
198
- We love contributions! Propose new adapters, request built-in templates, or report issues safely.
199
- Read our [Contributing Onboarding Guidelines](CONTRIBUTING.md) to get started.
295
+ | Version | Focus | Status |
296
+ |:---|:---|:---|
297
+ | **v2.0.0** | Template Galaxy, Model Registry, Stable Protocol | ✅ Released |
298
+ | **v2.0.1** | Post-release polish, docs cleanup, 193 verify assertions | ✅ Released |
299
+ | **v2.1.0** | Intelligence Core — Registries, Memory Engine, Capability Routing | ✅ Released |
300
+ | **v2.2.0** | Feedback Loops & MCP Tool Integrations | ✅ Released |
301
+ | **v2.3.0** | Proposal Engine & Safety Controls | ✅ Released |
302
+ | **v2.4.0** | Approved Proposal Application Engine | ✅ Released |
303
+ | **v2.4.1** | Proposal Apply UX + Safety Patch | ✅ Released |
304
+ | **v2.5.0** | Repository Intelligence Command Center | ✅ Released |
305
+ | **v3.0.0** | Unified Autonomous Co-Pilot Ecosystem | 🔮 Future |
306
+
307
+ Full details: **[v2 Roadmap](https://rizvee.github.io/multimodel-dev-os/v2-roadmap)**
200
308
 
201
309
  ---
202
310
 
203
- ## Docs & Staging Links
311
+ ## Documentation & Resources
312
+
313
+ | Resource | Link |
314
+ |:---|:---|
315
+ | 📖 Documentation Portal | **[rizvee.github.io/multimodel-dev-os](https://rizvee.github.io/multimodel-dev-os/)** |
316
+ | 🐙 GitHub Repository | **[github.com/rizvee/multimodel-dev-os](https://github.com/rizvee/multimodel-dev-os)** |
317
+ | 📦 NPM Registry | **[npmjs.com/package/multimodel-dev-os](https://www.npmjs.com/package/multimodel-dev-os)** |
318
+ | 🤖 AI Discoverability | **[llms.txt](https://rizvee.github.io/multimodel-dev-os/llms.txt)** |
319
+ | 🚀 Quick Start | **[Quickstart Guide](https://rizvee.github.io/multimodel-dev-os/quickstart)** |
320
+ | 🏗️ Architecture | **[Architecture Deep Dive](https://rizvee.github.io/multimodel-dev-os/architecture)** |
321
+ | 🔄 Migration Guide | **[Upgrade from v1.x](https://rizvee.github.io/multimodel-dev-os/migration-guide)** |
322
+ | 🛡️ Stable Protocol | **[Protocol Specification](https://rizvee.github.io/multimodel-dev-os/stable-protocol)** |
323
+
324
+ ---
325
+
326
+ ## Contributing
327
+
328
+ We welcome contributions! Propose new adapters, request templates, improve docs, or report issues.
204
329
 
205
- Explore detailed specifications, guides, and playbooks at the official docs portal:
206
- 👉 **[Documentation site](https://rizvee.github.io/multimodel-dev-os/)**
207
- 👉 **[GitHub repository](https://github.com/rizvee/multimodel-dev-os)**
208
- 👉 **[NPM registry](https://www.npmjs.com/package/multimodel-dev-os)**
209
- 👉 **[llms.txt discoverability guide](https://rizvee.github.io/multimodel-dev-os/llms.txt)**
330
+ Read our **[Contributing Guidelines](CONTRIBUTING.md)** to get started.
210
331
 
211
332
  ---
212
333