multimodel-dev-os 2.6.0 → 2.8.1
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/plugins/README.md +30 -0
- package/.ai/plugins/plugin.example.yaml +32 -0
- package/.ai/schema/plugin.schema.json +56 -0
- package/README.md +76 -219
- package/assets/adapter-sync-flow.svg +84 -0
- package/assets/architecture-preview.svg +46 -31
- package/assets/onboarding-flow.svg +79 -0
- package/assets/social-preview.svg +1 -1
- package/assets/terminal-demo.svg +22 -23
- package/bin/multimodel-dev-os.js +683 -2
- package/docs/.vitepress/config.js +25 -8
- package/docs/5-day-roadmap.md +9 -9
- package/docs/CLI.md +250 -111
- package/docs/architecture.md +31 -7
- package/docs/comparison.md +72 -25
- package/docs/compatibility.md +2 -2
- package/docs/dashboard.md +107 -0
- package/docs/demo.md +23 -60
- package/docs/demos/adapter-sync.md +103 -0
- package/docs/demos/existing-repo-onboarding.md +125 -0
- package/docs/demos/index.md +91 -0
- package/docs/demos/multi-agent-handoff.md +88 -0
- package/docs/demos/release-check.md +109 -0
- package/docs/demos/safe-improvement-loop.md +119 -0
- package/docs/distribution.md +195 -0
- package/docs/faq.md +91 -24
- package/docs/index.md +192 -81
- package/docs/installers.md +18 -4
- package/docs/launch-kit.md +97 -49
- package/docs/npm-publishing.md +6 -6
- package/docs/plugin-authoring.md +99 -0
- package/docs/plugin-hooks.md +89 -0
- package/docs/public/assets/adapter-sync-flow.svg +84 -0
- package/docs/public/assets/onboarding-flow.svg +79 -0
- package/docs/public/llms-full.txt +16 -3
- package/docs/public/llms.txt +13 -1
- package/docs/public/sitemap.xml +55 -0
- package/docs/quickstart.md +80 -26
- package/docs/repository-command-center.md +16 -0
- package/docs/tui-safety.md +59 -0
- package/docs/use-cases.md +21 -0
- package/docs/v2-roadmap.md +80 -88
- package/docs/workflow-orchestration.md +3 -0
- package/examples/adapter-sync/README.md +45 -0
- package/examples/command-center/README.md +59 -0
- package/examples/real-repo-onboarding/README.md +53 -0
- package/examples/safe-improvement-loop/README.md +48 -0
- package/package.json +1 -1
- package/scripts/install.ps1 +1 -1
- package/scripts/install.sh +1 -1
- package/scripts/verify.js +88 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# MultiModel Dev OS Plugins
|
|
2
|
+
|
|
3
|
+
This directory holds declarative MultiModel Dev OS plugin configurations.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Plugins are **strictly declarative** YAML files that conform to the JSON schema defined in [.ai/schema/plugin.schema.json](../schema/plugin.schema.json). They allow teams and the community to package and distribute custom configurations without executing unverified third-party code.
|
|
8
|
+
|
|
9
|
+
### Safe Containment Rules
|
|
10
|
+
To protect your repositories from supply-chain threats, the plugin system enforces strict containment rules:
|
|
11
|
+
1. **No Code Execution:** Plugins cannot execute JavaScript, binary files, post-install scripts, or terminal shells.
|
|
12
|
+
2. **No Package Installs:** Plugins cannot trigger npm/yarn package downloads or modifications to `package.json`.
|
|
13
|
+
3. **No Network Activity:** Operations are fully offline-safe.
|
|
14
|
+
4. **Write Containment:** Installation can only write rule, template, and workflow definitions to the `.ai/` and `adapters/` folders. Modifying app source code, `.env`, `.git/`, or `.npmrc` is hard-blocked.
|
|
15
|
+
|
|
16
|
+
## Creating a Plugin
|
|
17
|
+
|
|
18
|
+
1. Create a YAML file following the layout in [plugin.example.yaml](plugin.example.yaml).
|
|
19
|
+
2. Define the metadata fields (`name`, `slug`, `version`, `description`, `author`).
|
|
20
|
+
3. Set path permissions using `allowed_file_patterns`.
|
|
21
|
+
4. Validate your file using the CLI tool:
|
|
22
|
+
```bash
|
|
23
|
+
npx multimodel-dev-os@latest plugin validate path/to/your-plugin.yaml
|
|
24
|
+
```
|
|
25
|
+
5. Install your plugin:
|
|
26
|
+
```bash
|
|
27
|
+
npx multimodel-dev-os@latest plugin install path/to/your-plugin.yaml --approved
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
For detailed documentation, see the **[Plugin Authoring Guide](../../docs/plugin-authoring)** and **[TUI & Plugin Safety](../../docs/tui-safety)**.
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: "Example Git Integration Plugin"
|
|
2
|
+
slug: "git-integration"
|
|
3
|
+
version: "1.0.0"
|
|
4
|
+
description: "Declarative plugin extending MultiModel Dev OS with custom git workflows and rules"
|
|
5
|
+
author: "MultiModel Dev OS Team"
|
|
6
|
+
allowed_file_patterns:
|
|
7
|
+
- ".ai/skills/git-operations.md"
|
|
8
|
+
- ".ai/checks/pre-push-audit.md"
|
|
9
|
+
denied_file_patterns:
|
|
10
|
+
- "src/**"
|
|
11
|
+
- ".env"
|
|
12
|
+
- "node_modules/**"
|
|
13
|
+
templates:
|
|
14
|
+
git-commit-helper:
|
|
15
|
+
name: "Git Commit Message Assistant"
|
|
16
|
+
description: "Generates semantic commit messages based on staged diffs"
|
|
17
|
+
workflows:
|
|
18
|
+
git-audit:
|
|
19
|
+
name: "Pre-Push Git Audit"
|
|
20
|
+
description: "Scan branch status and verify all local commits pass verification before pushing code"
|
|
21
|
+
steps:
|
|
22
|
+
- name: "Status Check"
|
|
23
|
+
command: "status"
|
|
24
|
+
- name: "Doctor Pre-flight Audit"
|
|
25
|
+
command: "doctor"
|
|
26
|
+
- name: "Integrity Verify"
|
|
27
|
+
command: "verify"
|
|
28
|
+
adapters:
|
|
29
|
+
git-rules:
|
|
30
|
+
name: "Git Rules Configuration"
|
|
31
|
+
targetFile: ".gitattributes"
|
|
32
|
+
safety_notes: "This plugin only writes configurations to .ai/skills/ and .ai/checks/ to aid developer git workflows. No binary code is executed."
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "MultiModel Dev OS Plugin Schema",
|
|
4
|
+
"description": "JSON schema reference detailing declarative plugin metadata and permitted directories configuration",
|
|
5
|
+
"type": "OBJECT",
|
|
6
|
+
"required": ["name", "slug", "version", "description", "author"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"name": {
|
|
9
|
+
"type": "STRING",
|
|
10
|
+
"description": "Human-readable name of the plugin"
|
|
11
|
+
},
|
|
12
|
+
"slug": {
|
|
13
|
+
"type": "STRING",
|
|
14
|
+
"description": "Unique URL-friendly slug representing the plugin"
|
|
15
|
+
},
|
|
16
|
+
"version": {
|
|
17
|
+
"type": "STRING",
|
|
18
|
+
"description": "Semantic versioning number of the plugin (e.g. 1.0.0)"
|
|
19
|
+
},
|
|
20
|
+
"description": {
|
|
21
|
+
"type": "STRING",
|
|
22
|
+
"description": "Brief summary of what capabilities and templates this plugin introduces"
|
|
23
|
+
},
|
|
24
|
+
"author": {
|
|
25
|
+
"type": "STRING",
|
|
26
|
+
"description": "Name of the developer or team who created the plugin"
|
|
27
|
+
},
|
|
28
|
+
"allowed_file_patterns": {
|
|
29
|
+
"type": "ARRAY",
|
|
30
|
+
"items": { "type": "STRING" },
|
|
31
|
+
"description": "Target paths inside .ai/ or adapters/ this plugin is permitted to write to"
|
|
32
|
+
},
|
|
33
|
+
"denied_file_patterns": {
|
|
34
|
+
"type": "ARRAY",
|
|
35
|
+
"items": { "type": "STRING" },
|
|
36
|
+
"description": "Explicit blacklisted paths this plugin is blocked from writing to"
|
|
37
|
+
},
|
|
38
|
+
"templates": {
|
|
39
|
+
"type": "OBJECT",
|
|
40
|
+
"description": "Custom templates mapped by the plugin configuration"
|
|
41
|
+
},
|
|
42
|
+
"workflows": {
|
|
43
|
+
"type": "OBJECT",
|
|
44
|
+
"description": "Custom workflows mapped by the plugin configuration"
|
|
45
|
+
},
|
|
46
|
+
"adapters": {
|
|
47
|
+
"type": "OBJECT",
|
|
48
|
+
"description": "Custom adapter settings mapped by the plugin configuration"
|
|
49
|
+
},
|
|
50
|
+
"safety_notes": {
|
|
51
|
+
"type": "STRING",
|
|
52
|
+
"description": "Explicit security notices displayed to the user during installation"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"additionalProperties": false
|
|
56
|
+
}
|
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<b>
|
|
9
|
-
<sub>
|
|
8
|
+
<b>One workspace config. Every AI coding tool. Zero lock-in.</b><br>
|
|
9
|
+
<sub>Stop copy-pasting AI rules between Cursor, Claude, Gemini, Codex, and VS Code. Start shipping.</sub>
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
<p align="center">
|
|
@@ -20,56 +20,35 @@
|
|
|
20
20
|
|
|
21
21
|
---
|
|
22
22
|
|
|
23
|
-
##
|
|
23
|
+
## The Problem
|
|
24
|
+
|
|
25
|
+
You use **Cursor** for autocomplete, **Claude Code** for terminal ops, **Gemini** for deep audits. Every tool switch loses your context. Every `.cursorrules` / `CLAUDE.md` / `.vscode/settings.json` change drifts out of sync with the others. Prompts bloat, tokens waste, onboarding breaks.
|
|
26
|
+
|
|
27
|
+
## The Fix: 30 Seconds
|
|
24
28
|
|
|
25
29
|
```bash
|
|
26
30
|
npx multimodel-dev-os@latest init
|
|
27
31
|
```
|
|
28
32
|
|
|
29
|
-
|
|
33
|
+
Your workspace now has a **single source of truth** that every AI coding tool reads automatically — no config duplication, no context loss, no vendor lock-in.
|
|
30
34
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
35
|
+
> Already have a project? Onboard it safely:
|
|
36
|
+
> ```bash
|
|
37
|
+
> npx multimodel-dev-os@latest onboard analyze
|
|
38
|
+
> ```
|
|
34
39
|
|
|
35
40
|
---
|
|
36
41
|
|
|
37
|
-
##
|
|
38
|
-
|
|
39
|
-
AI pair programmers are powerful individually, but switching between them creates real friction:
|
|
40
|
-
|
|
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
|
-
|
|
48
|
-
## The Solution
|
|
49
|
-
|
|
50
|
-
**MultiModel Dev OS** creates a single source of truth — four root contracts and a `.ai/` directory that bridges every tool dynamically:
|
|
51
|
-
|
|
52
|
-
```
|
|
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
|
-
└─────────────────────────────────────────────────────────────┘
|
|
68
|
-
```
|
|
42
|
+
## Key Features
|
|
69
43
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
44
|
+
| | Feature | What It Does |
|
|
45
|
+
|:---|:---|:---|
|
|
46
|
+
| 🔄 | **Universal Adapter Sync** | Write rules once → auto-syncs to `.cursorrules`, `CLAUDE.md`, `.vscode/`, `.gemini/`, and more |
|
|
47
|
+
| ⚡ | **Caveman Mode** | Slash prompt token overhead by **~79%** for tight API budgets |
|
|
48
|
+
| 🧠 | **Intelligence Engine** | Hash-compressed memory, feedback learning, self-improvement proposals with HITL safety gates |
|
|
49
|
+
| 📁 | **Repo Onboarding** | Analyze existing projects, recommend templates, and bootstrap configs without breaking anything |
|
|
50
|
+
| 🔧 | **Zero Dependencies** | Pure Node.js CLI — no runtime, no build step, no package manager lock-in |
|
|
51
|
+
| 🛡️ | **214+ Quality Gates** | Built-in `validate`, `doctor`, and `verify` commands with strict structural assertions |
|
|
73
52
|
|
|
74
53
|
---
|
|
75
54
|
|
|
@@ -91,131 +70,53 @@ AI pair programmers are powerful individually, but switching between them create
|
|
|
91
70
|
|
|
92
71
|
---
|
|
93
72
|
|
|
94
|
-
##
|
|
73
|
+
## How It Works
|
|
95
74
|
|
|
96
|
-
|
|
75
|
+
```
|
|
76
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
77
|
+
│ LAYER 1: Central Root Contracts (Single Source of Truth) │
|
|
78
|
+
│ AGENTS.md • MEMORY.md • TASKS.md • RUNBOOK.md │
|
|
79
|
+
└─────────────────────────┬───────────────────────────────────┘
|
|
80
|
+
│
|
|
81
|
+
┌─────────────────────────▼───────────────────────────────────┐
|
|
82
|
+
│ LAYER 2: Configuration & Intelligence (.ai/) │
|
|
83
|
+
│ context/ agents/ skills/ prompts/ checks/ session/ │
|
|
84
|
+
└─────────────────────────┬───────────────────────────────────┘
|
|
85
|
+
│
|
|
86
|
+
┌─────────────────────────▼───────────────────────────────────┐
|
|
87
|
+
│ LAYER 3: Engine Workflows & Safety Gates │
|
|
88
|
+
│ onboard analyze • adapter sync • improve apply │
|
|
89
|
+
└─────────────────────────┬───────────────────────────────────┘
|
|
90
|
+
│
|
|
91
|
+
┌─────────────────────────▼───────────────────────────────────┐
|
|
92
|
+
│ LAYER 4: Tool & IDE Adapters │
|
|
93
|
+
│ .cursorrules • CLAUDE.md • .vscode/ • .gemini/ │
|
|
94
|
+
└─────────────────────────────────────────────────────────────┘
|
|
95
|
+
```
|
|
97
96
|
|
|
98
|
-
|
|
99
|
-
<img src="assets/terminal-demo.svg" alt="Terminal Demo Sequence" width="100%">
|
|
100
|
-
</p>
|
|
97
|
+
---
|
|
101
98
|
|
|
102
|
-
|
|
99
|
+
## Essential Commands
|
|
103
100
|
|
|
104
101
|
```bash
|
|
105
|
-
#
|
|
106
|
-
npx multimodel-dev-os@latest init
|
|
107
|
-
|
|
108
|
-
# Pick a template
|
|
102
|
+
# Initialize & Onboard
|
|
109
103
|
npx multimodel-dev-os@latest init --template nextjs-saas
|
|
110
|
-
npx multimodel-dev-os@latest
|
|
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
|
|
117
|
-
npx multimodel-dev-os@latest init --adapter cursor
|
|
118
|
-
npx multimodel-dev-os@latest init --adapter claude
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
### Codebase Scanning & Memory
|
|
104
|
+
npx multimodel-dev-os@latest onboard analyze
|
|
122
105
|
|
|
123
|
-
|
|
124
|
-
# Scan target repository structure and framework signals
|
|
106
|
+
# Scan, Status & Memory
|
|
125
107
|
npx multimodel-dev-os@latest scan
|
|
126
|
-
|
|
127
|
-
# Show compact repository intelligence state status
|
|
128
108
|
npx multimodel-dev-os@latest status
|
|
129
|
-
|
|
130
|
-
# Compile hash-compressed codebase state memory
|
|
131
109
|
npx multimodel-dev-os@latest memory build
|
|
132
110
|
|
|
133
|
-
#
|
|
134
|
-
npx multimodel-dev-os@latest
|
|
135
|
-
|
|
136
|
-
# Diff current codebase state against memory files
|
|
137
|
-
npx multimodel-dev-os@latest memory diff
|
|
138
|
-
```
|
|
139
|
-
|
|
140
|
-
### Feedback Learning & Proposals
|
|
141
|
-
|
|
142
|
-
```bash
|
|
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
|
|
111
|
+
# Sync IDE Adapters
|
|
112
|
+
npx multimodel-dev-os@latest adapter sync all --approved
|
|
172
113
|
|
|
173
|
-
#
|
|
114
|
+
# Run Workflows & Handoffs
|
|
174
115
|
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
116
|
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
117
|
```
|
|
211
118
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
Cut prompt token overhead by **~79%** with compressed shorthand declarations:
|
|
215
|
-
|
|
216
|
-
```bash
|
|
217
|
-
npx multimodel-dev-os@latest init --caveman
|
|
218
|
-
```
|
|
119
|
+
📖 **[Full CLI Reference →](https://rizvee.github.io/multimodel-dev-os/CLI)**
|
|
219
120
|
|
|
220
121
|
---
|
|
221
122
|
|
|
@@ -223,70 +124,23 @@ npx multimodel-dev-os@latest init --caveman
|
|
|
223
124
|
|
|
224
125
|
| Capability | Manual Rules File | MultiModel Dev OS |
|
|
225
126
|
|:---|:---|:---|
|
|
226
|
-
| **Tool Sync** | Manual copy-paste across tools | Automated dynamic adapters |
|
|
227
|
-
| **Context Budgets** | Bloats prompts, wastes tokens | Caveman Mode cuts **~79%**
|
|
228
|
-
| **Standards** | Easy to drift and corrupt | CLI `validate` + `doctor` +
|
|
229
|
-
| **Templates** | Start from scratch | 6 production-ready real-world templates |
|
|
230
|
-
| **Model Registry** | Hardcoded model names | Dynamic capability-scored
|
|
231
|
-
| **
|
|
127
|
+
| **Tool Sync** | Manual copy-paste across tools | ✅ Automated dynamic adapters |
|
|
128
|
+
| **Context Budgets** | Bloats prompts, wastes tokens | ✅ Caveman Mode cuts **~79%** overhead |
|
|
129
|
+
| **Standards** | Easy to drift and corrupt | ✅ CLI `validate` + `doctor` + 214-assertion `verify` |
|
|
130
|
+
| **Templates** | Start from scratch | ✅ 6 production-ready real-world templates |
|
|
131
|
+
| **Model Registry** | Hardcoded model names | ✅ Dynamic capability-scored routing presets |
|
|
132
|
+
| **Self-Improvement** | None | ✅ Feedback → Proposals → Apply with safety gates |
|
|
133
|
+
| **Onboarding** | Manual setup every time | ✅ `onboard analyze` bootstraps existing repos |
|
|
232
134
|
|
|
233
135
|
---
|
|
234
136
|
|
|
235
|
-
##
|
|
137
|
+
## What's New in v2.8
|
|
236
138
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
<img src="assets/cost-optimization.svg" alt="Cost Optimization Funnel" width="100%">
|
|
241
|
-
</p>
|
|
139
|
+
- 🧠 **Interactive TUI Dashboard** — Launches an interactive menu wrapper (`dashboard` or `ui`) for keyboard-driven navigation across all MultiModel Dev OS commands with non-TTY automated fallbacks.
|
|
140
|
+
- 🔌 **Declarative Plugin Hooks** — Fully offline, declarative system (`plugin`) to list, show, validate, and install plugin rules to whitelisted directories with overwrite backups.
|
|
141
|
+
- 🛡️ **Zero-Dependency CLI** — Custom keypress menu handling built on Node.js's native `readline` module.
|
|
242
142
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
---
|
|
246
|
-
|
|
247
|
-
## 5-Day Adoption Roadmap
|
|
248
|
-
|
|
249
|
-
Deploy MultiModel Dev OS across your team in under a week:
|
|
250
|
-
|
|
251
|
-
<p align="center">
|
|
252
|
-
<img src="assets/ai-dev-os-roadmap.svg" alt="5-Day Adoption Roadmap" width="100%">
|
|
253
|
-
</p>
|
|
254
|
-
|
|
255
|
-
Step-by-step timeline: **[5-Day Adoption Playbook](https://rizvee.github.io/multimodel-dev-os/5-day-roadmap)**
|
|
256
|
-
|
|
257
|
-
---
|
|
258
|
-
|
|
259
|
-
## Real-World Case Studies
|
|
260
|
-
|
|
261
|
-
- 📦 [Full-Stack Next.js SaaS: Database Schema Synchronization](https://rizvee.github.io/multimodel-dev-os/case-studies/nextjs-saas)
|
|
262
|
-
- 🔌 [WordPress Theme Scaffolding: Folder Boundary Protections](https://rizvee.github.io/multimodel-dev-os/case-studies/wordpress-site)
|
|
263
|
-
- 🛒 [E-Commerce Webhooks: State Verification Alignment](https://rizvee.github.io/multimodel-dev-os/case-studies/ecommerce-store)
|
|
264
|
-
- 📈 [SEO Landing Pages: Core Web Vitals Linter Budgets](https://rizvee.github.io/multimodel-dev-os/case-studies/seo-landing-page)
|
|
265
|
-
- 🚀 [Multi-Model Handoff: Sequential Session Logging](https://rizvee.github.io/multimodel-dev-os/case-studies/multimodel-handoff)
|
|
266
|
-
|
|
267
|
-
---
|
|
268
|
-
|
|
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:
|
|
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)
|
|
143
|
+
**[Full Changelog →](CHANGELOG.md)**
|
|
290
144
|
|
|
291
145
|
---
|
|
292
146
|
|
|
@@ -295,16 +149,16 @@ Learn more:
|
|
|
295
149
|
| Version | Focus | Status |
|
|
296
150
|
|:---|:---|:---|
|
|
297
151
|
| **v2.0.0** | Template Galaxy, Model Registry, Stable Protocol | ✅ Released |
|
|
298
|
-
| **v2.0
|
|
299
|
-
| **v2.
|
|
300
|
-
| **v2.2.0** | Feedback Loops & MCP Tool Integrations | ✅ Released |
|
|
301
|
-
| **v2.3.0** | Proposal Engine & Safety Controls | ✅ Released |
|
|
152
|
+
| **v2.2.0** | Codebase Scanner & Hash-Compressed Memory Engine | ✅ Released |
|
|
153
|
+
| **v2.3.0** | Feedback Learning & Proposal Engine | ✅ Released |
|
|
302
154
|
| **v2.4.0** | Approved Proposal Application Engine | ✅ Released |
|
|
303
|
-
| **v2.4.1** | Proposal Apply UX + Safety Patch | ✅ Released |
|
|
304
155
|
| **v2.5.0** | Repository Intelligence Command Center | ✅ Released |
|
|
156
|
+
| **v2.6.0** | Real-Repo Onboarding & Adapter Sync | ✅ Released |
|
|
157
|
+
| **v2.7.0** | Website, Demo & Distribution System | ✅ Released |
|
|
158
|
+
| **v2.8.0 / v2.8.1** | Interactive TUI Dashboard & Plugin Hooks | ✅ Released |
|
|
305
159
|
| **v3.0.0** | Unified Autonomous Co-Pilot Ecosystem | 🔮 Future |
|
|
306
160
|
|
|
307
|
-
|
|
161
|
+
**[Full Roadmap →](https://rizvee.github.io/multimodel-dev-os/v2-roadmap)**
|
|
308
162
|
|
|
309
163
|
---
|
|
310
164
|
|
|
@@ -318,16 +172,19 @@ Full details: **[v2 Roadmap](https://rizvee.github.io/multimodel-dev-os/v2-roadm
|
|
|
318
172
|
| 🤖 AI Discoverability | **[llms.txt](https://rizvee.github.io/multimodel-dev-os/llms.txt)** |
|
|
319
173
|
| 🚀 Quick Start | **[Quickstart Guide](https://rizvee.github.io/multimodel-dev-os/quickstart)** |
|
|
320
174
|
| 🏗️ Architecture | **[Architecture Deep Dive](https://rizvee.github.io/multimodel-dev-os/architecture)** |
|
|
321
|
-
|
|
|
175
|
+
| ⚔️ Comparison | **[vs Alternatives](https://rizvee.github.io/multimodel-dev-os/comparison)** |
|
|
322
176
|
| 🛡️ Stable Protocol | **[Protocol Specification](https://rizvee.github.io/multimodel-dev-os/stable-protocol)** |
|
|
323
177
|
|
|
324
178
|
---
|
|
325
179
|
|
|
326
|
-
## Contributing
|
|
180
|
+
## Contributing & Community
|
|
327
181
|
|
|
328
182
|
We welcome contributions! Propose new adapters, request templates, improve docs, or report issues.
|
|
329
183
|
|
|
330
|
-
|
|
184
|
+
- 📖 **[Contributing Guidelines](CONTRIBUTING.md)**
|
|
185
|
+
- 🐛 **[Report a Bug](https://github.com/rizvee/multimodel-dev-os/issues/new)**
|
|
186
|
+
- 💡 **[Request a Feature](https://github.com/rizvee/multimodel-dev-os/issues/new)**
|
|
187
|
+
- ⭐ **[Star us on GitHub](https://github.com/rizvee/multimodel-dev-os)** — it helps others discover this project
|
|
331
188
|
|
|
332
189
|
---
|
|
333
190
|
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 320" width="100%" height="100%" style="font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
+
<stop offset="0%" stop-color="#070a13" />
|
|
5
|
+
<stop offset="100%" stop-color="#0d111d" />
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<linearGradient id="accent" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
8
|
+
<stop offset="0%" stop-color="#6366f1" />
|
|
9
|
+
<stop offset="100%" stop-color="#10b981" />
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<linearGradient id="card" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
12
|
+
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.06" />
|
|
13
|
+
<stop offset="100%" stop-color="#ffffff" stop-opacity="0.02" />
|
|
14
|
+
</linearGradient>
|
|
15
|
+
</defs>
|
|
16
|
+
|
|
17
|
+
<!-- Background -->
|
|
18
|
+
<rect width="900" height="320" rx="16" fill="url(#bg)" />
|
|
19
|
+
<rect x="1" y="1" width="898" height="318" rx="15" fill="none" stroke="#1e293b" stroke-width="1" />
|
|
20
|
+
|
|
21
|
+
<!-- Title -->
|
|
22
|
+
<text x="450" y="38" text-anchor="middle" font-size="18" font-weight="800" fill="#e2e8f0" letter-spacing="0.5">ADAPTER SYNC FLOW</text>
|
|
23
|
+
<rect x="200" y="48" width="500" height="2" rx="1" fill="url(#accent)" opacity="0.4" />
|
|
24
|
+
|
|
25
|
+
<!-- Source: AGENTS.md -->
|
|
26
|
+
<rect x="30" y="75" width="180" height="90" rx="12" fill="url(#card)" stroke="#4f46e5" stroke-width="1.5" />
|
|
27
|
+
<text x="120" y="105" text-anchor="middle" font-size="15" font-weight="800" fill="#a78bfa">AGENTS.md</text>
|
|
28
|
+
<text x="120" y="125" text-anchor="middle" font-size="10" fill="#94a3b8">Single source of truth</text>
|
|
29
|
+
<text x="120" y="140" text-anchor="middle" font-size="10" fill="#94a3b8">for all AI coding rules</text>
|
|
30
|
+
<text x="120" y="155" text-anchor="middle" font-size="9" fill="#10b981" font-weight="600">YOUR RULES</text>
|
|
31
|
+
|
|
32
|
+
<!-- Arrow source → adapter sync -->
|
|
33
|
+
<line x1="215" y1="120" x2="275" y2="120" stroke="url(#accent)" stroke-width="2" />
|
|
34
|
+
<polygon points="275,115 285,120 275,125" fill="#10b981" />
|
|
35
|
+
|
|
36
|
+
<!-- Adapter Sync Engine -->
|
|
37
|
+
<rect x="290" y="70" width="160" height="100" rx="12" fill="url(#card)" stroke="#10b981" stroke-width="1.5" />
|
|
38
|
+
<text x="370" y="100" text-anchor="middle" font-size="28">🔄</text>
|
|
39
|
+
<text x="370" y="125" text-anchor="middle" font-size="13" font-weight="700" fill="#f8fafc">adapter sync</text>
|
|
40
|
+
<text x="370" y="143" text-anchor="middle" font-size="10" fill="#94a3b8">Diff + copy with</text>
|
|
41
|
+
<text x="370" y="156" text-anchor="middle" font-size="10" fill="#94a3b8">backup protection</text>
|
|
42
|
+
|
|
43
|
+
<!-- Arrows to targets -->
|
|
44
|
+
<line x1="455" y1="95" x2="540" y2="55" stroke="#6366f1" stroke-width="1.5" />
|
|
45
|
+
<line x1="455" y1="110" x2="540" y2="95" stroke="#6366f1" stroke-width="1.5" />
|
|
46
|
+
<line x1="455" y1="125" x2="540" y2="135" stroke="#6366f1" stroke-width="1.5" />
|
|
47
|
+
<line x1="455" y1="140" x2="540" y2="175" stroke="#6366f1" stroke-width="1.5" />
|
|
48
|
+
<line x1="455" y1="155" x2="540" y2="215" stroke="#6366f1" stroke-width="1.5" />
|
|
49
|
+
<line x1="455" y1="165" x2="540" y2="255" stroke="#6366f1" stroke-width="1.5" />
|
|
50
|
+
|
|
51
|
+
<!-- Target: Cursor -->
|
|
52
|
+
<rect x="545" y="35" width="160" height="36" rx="8" fill="url(#card)" stroke="#334155" stroke-width="1" />
|
|
53
|
+
<text x="555" y="58" font-size="14">🎯</text>
|
|
54
|
+
<text x="578" y="58" font-size="12" font-weight="600" fill="#f8fafc">.cursorrules</text>
|
|
55
|
+
|
|
56
|
+
<!-- Target: Claude -->
|
|
57
|
+
<rect x="545" y="78" width="160" height="36" rx="8" fill="url(#card)" stroke="#334155" stroke-width="1" />
|
|
58
|
+
<text x="555" y="101" font-size="14">⚡</text>
|
|
59
|
+
<text x="578" y="101" font-size="12" font-weight="600" fill="#f8fafc">CLAUDE.md</text>
|
|
60
|
+
|
|
61
|
+
<!-- Target: VS Code -->
|
|
62
|
+
<rect x="545" y="121" width="160" height="36" rx="8" fill="url(#card)" stroke="#334155" stroke-width="1" />
|
|
63
|
+
<text x="555" y="144" font-size="14">💻</text>
|
|
64
|
+
<text x="578" y="144" font-size="12" font-weight="600" fill="#f8fafc">.vscode/settings.json</text>
|
|
65
|
+
|
|
66
|
+
<!-- Target: Gemini -->
|
|
67
|
+
<rect x="545" y="164" width="160" height="36" rx="8" fill="url(#card)" stroke="#334155" stroke-width="1" />
|
|
68
|
+
<text x="555" y="187" font-size="14">🧠</text>
|
|
69
|
+
<text x="578" y="187" font-size="12" font-weight="600" fill="#f8fafc">GEMINI.md</text>
|
|
70
|
+
|
|
71
|
+
<!-- Target: Antigravity -->
|
|
72
|
+
<rect x="545" y="207" width="160" height="36" rx="8" fill="url(#card)" stroke="#334155" stroke-width="1" />
|
|
73
|
+
<text x="555" y="230" font-size="14">🪐</text>
|
|
74
|
+
<text x="578" y="230" font-size="12" font-weight="600" fill="#f8fafc">.gemini/settings.json</text>
|
|
75
|
+
|
|
76
|
+
<!-- Target: More -->
|
|
77
|
+
<rect x="545" y="250" width="160" height="36" rx="8" fill="url(#card)" stroke="#334155" stroke-width="1" />
|
|
78
|
+
<text x="555" y="273" font-size="14">🔌</text>
|
|
79
|
+
<text x="578" y="273" font-size="12" font-weight="600" fill="#94a3b8">+ Cline, Aider, ...</text>
|
|
80
|
+
|
|
81
|
+
<!-- Footer command -->
|
|
82
|
+
<rect x="30" y="280" width="500" height="30" rx="8" fill="#090d16" stroke="#1e293b" stroke-width="1" />
|
|
83
|
+
<text x="45" y="300" font-family="'Fira Code', 'JetBrains Mono', monospace" font-size="12" fill="#34d399">$ <tspan fill="#e2e8f0">npx multimodel-dev-os@latest adapter sync all --approved</tspan></text>
|
|
84
|
+
</svg>
|