multimodel-dev-os 2.0.0 → 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.
- package/.ai/intelligence/README.md +14 -0
- package/.ai/intelligence/apply-log.schema.json +65 -0
- package/.ai/intelligence/feedback-log.example.jsonl +2 -0
- package/.ai/intelligence/feedback.schema.json +47 -0
- package/.ai/intelligence/improvement-proposal.schema.json +70 -0
- package/.ai/intelligence/learning-rules.example.md +18 -0
- package/.ai/intelligence/memory.schema.json +97 -0
- package/.ai/policies/approval-gates.md +35 -0
- package/.ai/policies/memory-policy.md +30 -0
- package/.ai/policies/self-improvement-policy.md +39 -0
- package/.ai/proposals/README.md +44 -0
- package/.ai/proposals/apply-operation.example.json +22 -0
- package/.ai/registries/capabilities.yaml +73 -0
- package/.ai/registries/tools.yaml +84 -0
- package/.ai/registries/workflows.yaml +217 -0
- package/README.md +218 -97
- package/bin/multimodel-dev-os.js +2899 -10
- package/docs/.vitepress/config.js +23 -1
- package/docs/CLI.md +89 -2
- package/docs/adapter-sync.md +27 -0
- package/docs/adapters.md +16 -0
- package/docs/agent-handoff.md +40 -0
- package/docs/approved-proposal-apply.md +156 -0
- package/docs/capability-registry.md +24 -0
- package/docs/cli-roadmap.md +14 -22
- package/docs/faq.md +1 -1
- package/docs/feedback-learning.md +33 -0
- package/docs/future-proof-architecture.md +22 -0
- package/docs/hash-compressed-memory.md +72 -0
- package/docs/improvement-proposals.md +70 -0
- package/docs/index.md +5 -5
- package/docs/learning-rules.md +36 -0
- package/docs/npm-publishing.md +16 -16
- package/docs/public/llms-full.txt +32 -2
- package/docs/public/llms.txt +43 -2
- package/docs/public/sitemap.xml +81 -1
- package/docs/quickstart.md +14 -16
- package/docs/real-repo-onboarding.md +27 -0
- package/docs/release-policy.md +5 -22
- package/docs/repository-command-center.md +52 -0
- package/docs/self-improving-codebase.md +46 -0
- package/docs/template-recommendation.md +22 -0
- package/docs/templates-guide.md +14 -3
- package/docs/tool-registry.md +21 -0
- package/docs/v2-release-checklist.md +1 -1
- package/docs/v2-roadmap.md +21 -1
- package/docs/workflow-orchestration.md +59 -0
- package/package.json +1 -1
- package/scripts/install.ps1 +1 -1
- package/scripts/install.sh +1 -1
- package/scripts/prepublish-guard.js +3 -3
- 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>
|
|
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/
|
|
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
|
-
##
|
|
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
|
-
##
|
|
37
|
+
## The Problem
|
|
39
38
|
|
|
40
|
-
AI pair programmers are
|
|
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
|
-
|
|
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
|
-
##
|
|
48
|
+
## The Solution
|
|
49
49
|
|
|
50
|
-
|
|
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
|
-
│
|
|
55
|
-
│
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
│
|
|
60
|
-
│
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
│
|
|
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
|
+
## Supported Tools & Agents
|
|
76
77
|
|
|
77
|
-
| Tool / Agent |
|
|
78
|
-
|
|
79
|
-
| **Codex** | `adapters/codex/AGENTS.md` |
|
|
80
|
-
| **Antigravity** | `.gemini/settings.json` |
|
|
81
|
-
| **Cursor** | `.cursorrules` |
|
|
82
|
-
| **Claude Code** | `CLAUDE.md` |
|
|
83
|
-
| **Gemini** | `GEMINI.md` |
|
|
84
|
-
| **VS Code** | `.vscode/settings.json` |
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
## Why Not Just a Manual AGENTS.md?
|
|
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 |
|
|
89
89
|
|
|
90
|
-
|
|
91
|
-
|
|
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
|
-
##
|
|
94
|
+
## CLI Commands
|
|
102
95
|
|
|
103
|
-
MultiModel Dev OS
|
|
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
|
-
###
|
|
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
|
-
###
|
|
125
|
-
|
|
121
|
+
### Codebase Scanning & Memory
|
|
122
|
+
|
|
126
123
|
```bash
|
|
127
|
-
|
|
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
|
-
###
|
|
131
|
-
|
|
140
|
+
### Feedback Learning & Proposals
|
|
141
|
+
|
|
132
142
|
```bash
|
|
133
|
-
#
|
|
134
|
-
|
|
135
|
-
|
|
143
|
+
# Log developer preference or instruction feedback
|
|
144
|
+
npx multimodel-dev-os@latest feedback add "Avoid Tailwind CSS" --type preference
|
|
145
|
+
|
|
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
|
|
136
180
|
|
|
137
|
-
#
|
|
138
|
-
|
|
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
|
|
139
202
|
```
|
|
140
203
|
|
|
141
|
-
|
|
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
|
+
```
|
|
142
211
|
|
|
143
|
-
###
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
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
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
## Why Not Just a Manual AGENTS.md?
|
|
223
|
+
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
##
|
|
269
|
+
## Intelligence Layer (v2.1.0 — Coming Next)
|
|
270
|
+
|
|
271
|
+
The next major milestone introduces a **future-proof intelligence layer** — registry-driven, feedback-enabled, with strict human-in-the-loop safety gates:
|
|
186
272
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
-
|
|
192
|
-
|
|
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
|
-
##
|
|
293
|
+
## Roadmap
|
|
197
294
|
|
|
198
|
-
|
|
199
|
-
|
|
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
|
-
##
|
|
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
|
-
|
|
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
|
|