multimodel-dev-os 2.0.1 → 2.8.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/plugins/README.md +30 -0
- package/.ai/plugins/plugin.example.yaml +32 -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/.ai/schema/plugin.schema.json +56 -0
- package/README.md +116 -138
- 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 +3472 -7
- package/docs/.vitepress/config.js +46 -7
- package/docs/5-day-roadmap.md +9 -9
- package/docs/CLI.md +260 -34
- 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/architecture.md +31 -7
- package/docs/capability-registry.md +24 -0
- package/docs/comparison.md +72 -25
- package/docs/compatibility.md +2 -2
- package/docs/dashboard.md +105 -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/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 +192 -81
- package/docs/installers.md +18 -4
- package/docs/launch-kit.md +97 -49
- package/docs/learning-rules.md +36 -0
- package/docs/npm-publishing.md +6 -6
- package/docs/plugin-authoring.md +99 -0
- package/docs/plugin-hooks.md +80 -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 +47 -4
- package/docs/public/llms.txt +55 -2
- package/docs/public/sitemap.xml +85 -0
- package/docs/quickstart.md +82 -22
- package/docs/real-repo-onboarding.md +27 -0
- package/docs/repository-command-center.md +68 -0
- package/docs/self-improving-codebase.md +46 -0
- package/docs/template-recommendation.md +22 -0
- package/docs/templates-guide.md +11 -0
- package/docs/tool-registry.md +21 -0
- package/docs/tui-safety.md +59 -0
- package/docs/use-cases.md +21 -0
- package/docs/v2-roadmap.md +78 -71
- package/docs/workflow-orchestration.md +62 -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 +107 -3
package/README.md
CHANGED
|
@@ -5,12 +5,13 @@
|
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<b>One
|
|
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>
|
|
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,194 +20,171 @@
|
|
|
19
20
|
|
|
20
21
|
---
|
|
21
22
|
|
|
22
|
-
##
|
|
23
|
+
## The Problem
|
|
23
24
|
|
|
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
|
|
25
28
|
|
|
26
29
|
```bash
|
|
27
30
|
npx multimodel-dev-os@latest init
|
|
28
31
|
```
|
|
29
32
|
|
|
30
|
-
|
|
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.
|
|
31
34
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
+
> Already have a project? Onboard it safely:
|
|
36
|
+
> ```bash
|
|
37
|
+
> npx multimodel-dev-os@latest onboard analyze
|
|
38
|
+
> ```
|
|
35
39
|
|
|
36
40
|
---
|
|
37
41
|
|
|
38
|
-
##
|
|
39
|
-
|
|
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.
|
|
42
|
+
## Key Features
|
|
43
43
|
|
|
44
|
-
|
|
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 |
|
|
45
52
|
|
|
46
53
|
---
|
|
47
54
|
|
|
48
|
-
##
|
|
49
|
-
|
|
50
|
-
A standard installation scaffolds a lightweight, zero-runtime-dependency workspace hierarchy:
|
|
51
|
-
|
|
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
|
-
└────────────────────────────────────────────────────────┘
|
|
67
|
-
```
|
|
68
|
-
|
|
69
|
-
<p align="center">
|
|
70
|
-
<img src="assets/architecture-preview.svg" alt="Architecture Diagram" width="100%">
|
|
71
|
-
</p>
|
|
55
|
+
## Supported Tools & Agents
|
|
72
56
|
|
|
73
|
-
|
|
57
|
+
| Tool / Agent | Adapter File | Status |
|
|
58
|
+
|:---|:---|:---|
|
|
59
|
+
| **Codex** (OpenAI) | `adapters/codex/AGENTS.md` | ✅ Full support |
|
|
60
|
+
| **Antigravity** (Google DeepMind) | `.gemini/settings.json` | ✅ Full support |
|
|
61
|
+
| **Cursor** | `.cursorrules` | ✅ Full support |
|
|
62
|
+
| **Claude Code** (Anthropic) | `CLAUDE.md` | ✅ Full support |
|
|
63
|
+
| **Gemini** (Google) | `GEMINI.md` | ✅ Full support |
|
|
64
|
+
| **VS Code** (Copilot) | `.vscode/settings.json` | ✅ Full support |
|
|
65
|
+
| **Cline / Continue / Roo Code** | Via adapter registry | 🔌 Adapter-ready |
|
|
66
|
+
| **Aider / Windsurf** | Via adapter registry | 🔌 Adapter-ready |
|
|
67
|
+
| **MCP Tools** (gcloud, Chrome DevTools) | Via tool registry | 🔌 Registry-ready |
|
|
74
68
|
|
|
75
|
-
|
|
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 |
|
|
69
|
+
> **Zero lock-in.** Switch tools freely — your context, rules, and memory travel with you.
|
|
85
70
|
|
|
86
71
|
---
|
|
87
72
|
|
|
88
|
-
##
|
|
89
|
-
|
|
90
|
-
While you can write a raw markdown file manually, `multimodel-dev-os` offers a standardized development workflow:
|
|
73
|
+
## How It Works
|
|
91
74
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
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
|
+
```
|
|
98
96
|
|
|
99
97
|
---
|
|
100
98
|
|
|
101
|
-
##
|
|
102
|
-
|
|
103
|
-
MultiModel Dev OS is powered by a pure Node.js CLI with **zero runtime external npm dependencies**.
|
|
104
|
-
|
|
105
|
-
<p align="center">
|
|
106
|
-
<img src="assets/terminal-demo.svg" alt="Terminal Demo Sequence" width="100%">
|
|
107
|
-
</p>
|
|
108
|
-
|
|
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`
|
|
99
|
+
## Essential Commands
|
|
116
100
|
|
|
117
|
-
### 2. Adapter Linking (Stable npm @latest)
|
|
118
|
-
Inject rules specifically for a developer tool:
|
|
119
101
|
```bash
|
|
120
|
-
|
|
121
|
-
npx multimodel-dev-os@latest init --
|
|
122
|
-
|
|
102
|
+
# Initialize & Onboard
|
|
103
|
+
npx multimodel-dev-os@latest init --template nextjs-saas
|
|
104
|
+
npx multimodel-dev-os@latest onboard analyze
|
|
123
105
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
npx multimodel-dev-os@latest
|
|
128
|
-
```
|
|
106
|
+
# Scan, Status & Memory
|
|
107
|
+
npx multimodel-dev-os@latest scan
|
|
108
|
+
npx multimodel-dev-os@latest status
|
|
109
|
+
npx multimodel-dev-os@latest memory build
|
|
129
110
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
```bash
|
|
133
|
-
# List model or adapter registries
|
|
134
|
-
npx multimodel-dev-os@latest models
|
|
135
|
-
npx multimodel-dev-os@latest adapters
|
|
111
|
+
# Sync IDE Adapters
|
|
112
|
+
npx multimodel-dev-os@latest adapter sync all --approved
|
|
136
113
|
|
|
137
|
-
#
|
|
138
|
-
npx multimodel-dev-os@latest
|
|
114
|
+
# Run Workflows & Handoffs
|
|
115
|
+
npx multimodel-dev-os@latest workflow run repo-health
|
|
116
|
+
npx multimodel-dev-os@latest handoff build
|
|
139
117
|
```
|
|
140
118
|
|
|
141
|
-
|
|
142
|
-
|
|
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`
|
|
119
|
+
📖 **[Full CLI Reference →](https://rizvee.github.io/multimodel-dev-os/CLI)**
|
|
147
120
|
|
|
148
121
|
---
|
|
149
122
|
|
|
150
|
-
##
|
|
151
|
-
|
|
152
|
-
Minimize prompt overhead and API billing by mapping key context-reduction techniques to MultiModel Dev OS features:
|
|
153
|
-
|
|
154
|
-
<p align="center">
|
|
155
|
-
<img src="assets/cost-optimization.svg" alt="Cost Optimization Funnel" width="100%">
|
|
156
|
-
</p>
|
|
123
|
+
## Why Not Just a Manual AGENTS.md?
|
|
157
124
|
|
|
158
|
-
|
|
125
|
+
| Capability | Manual Rules File | MultiModel Dev OS |
|
|
126
|
+
|:---|:---|:---|
|
|
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 |
|
|
159
134
|
|
|
160
135
|
---
|
|
161
136
|
|
|
162
|
-
##
|
|
137
|
+
## What's New in v2.8
|
|
163
138
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
<img src="assets/ai-dev-os-roadmap.svg" alt="5-Day Adoption Roadmap" width="100%">
|
|
168
|
-
</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.
|
|
169
142
|
|
|
170
|
-
|
|
143
|
+
**[Full Changelog →](CHANGELOG.md)**
|
|
171
144
|
|
|
172
145
|
---
|
|
173
146
|
|
|
174
|
-
##
|
|
175
|
-
|
|
176
|
-
Discover how engineering teams deploy MultiModel Dev OS:
|
|
177
|
-
- 📦 [Full-Stack Next.js SaaS: Database Schema Synchronization](https://rizvee.github.io/multimodel-dev-os/case-studies/nextjs-saas)
|
|
178
|
-
- 🔌 [WordPress Theme Scaffolding: Folder Boundary Protections](https://rizvee.github.io/multimodel-dev-os/case-studies/wordpress-site)
|
|
179
|
-
- 🛒 [E-Commerce Webhooks: State Verification Alignment](https://rizvee.github.io/multimodel-dev-os/case-studies/ecommerce-store)
|
|
180
|
-
- 📈 [SEO Landing Pages: Core Web Vitals Linter Budgets](https://rizvee.github.io/multimodel-dev-os/case-studies/seo-landing-page)
|
|
181
|
-
- 🚀 [Multi-Model Handoff: Sequential Session Logging](https://rizvee.github.io/multimodel-dev-os/case-studies/multimodel-handoff)
|
|
147
|
+
## Roadmap
|
|
182
148
|
|
|
183
|
-
|
|
149
|
+
| Version | Focus | Status |
|
|
150
|
+
|:---|:---|:---|
|
|
151
|
+
| **v2.0.0** | Template Galaxy, Model Registry, Stable Protocol | ✅ Released |
|
|
152
|
+
| **v2.2.0** | Codebase Scanner & Hash-Compressed Memory Engine | ✅ Released |
|
|
153
|
+
| **v2.3.0** | Feedback Learning & Proposal Engine | ✅ Released |
|
|
154
|
+
| **v2.4.0** | Approved Proposal Application Engine | ✅ Released |
|
|
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** | Interactive TUI Dashboard & Plugin Hooks | ✅ Released |
|
|
159
|
+
| **v3.0.0** | Unified Autonomous Co-Pilot Ecosystem | 🔮 Future |
|
|
184
160
|
|
|
185
|
-
|
|
186
|
-
|
|
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)
|
|
161
|
+
**[Full Roadmap →](https://rizvee.github.io/multimodel-dev-os/v2-roadmap)**
|
|
193
162
|
|
|
194
163
|
---
|
|
195
164
|
|
|
196
|
-
##
|
|
165
|
+
## Documentation & Resources
|
|
197
166
|
|
|
198
|
-
|
|
199
|
-
|
|
167
|
+
| Resource | Link |
|
|
168
|
+
|:---|:---|
|
|
169
|
+
| 📖 Documentation Portal | **[rizvee.github.io/multimodel-dev-os](https://rizvee.github.io/multimodel-dev-os/)** |
|
|
170
|
+
| 🐙 GitHub Repository | **[github.com/rizvee/multimodel-dev-os](https://github.com/rizvee/multimodel-dev-os)** |
|
|
171
|
+
| 📦 NPM Registry | **[npmjs.com/package/multimodel-dev-os](https://www.npmjs.com/package/multimodel-dev-os)** |
|
|
172
|
+
| 🤖 AI Discoverability | **[llms.txt](https://rizvee.github.io/multimodel-dev-os/llms.txt)** |
|
|
173
|
+
| 🚀 Quick Start | **[Quickstart Guide](https://rizvee.github.io/multimodel-dev-os/quickstart)** |
|
|
174
|
+
| 🏗️ Architecture | **[Architecture Deep Dive](https://rizvee.github.io/multimodel-dev-os/architecture)** |
|
|
175
|
+
| ⚔️ Comparison | **[vs Alternatives](https://rizvee.github.io/multimodel-dev-os/comparison)** |
|
|
176
|
+
| 🛡️ Stable Protocol | **[Protocol Specification](https://rizvee.github.io/multimodel-dev-os/stable-protocol)** |
|
|
200
177
|
|
|
201
178
|
---
|
|
202
179
|
|
|
203
|
-
##
|
|
180
|
+
## Contributing & Community
|
|
181
|
+
|
|
182
|
+
We welcome contributions! Propose new adapters, request templates, improve docs, or report issues.
|
|
204
183
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
👉 **[llms.txt discoverability guide](https://rizvee.github.io/multimodel-dev-os/llms.txt)**
|
|
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
|
|
210
188
|
|
|
211
189
|
---
|
|
212
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>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 820
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 820 420" width="100%" height="100%" style="font-family: 'Outfit', 'Inter', -apple-system, sans-serif;">
|
|
2
2
|
<defs>
|
|
3
3
|
<!-- Card Gradients -->
|
|
4
4
|
<linearGradient id="rootCard" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
@@ -9,6 +9,10 @@
|
|
|
9
9
|
<stop offset="0%" stop-color="#111827" />
|
|
10
10
|
<stop offset="100%" stop-color="#1f2937" />
|
|
11
11
|
</linearGradient>
|
|
12
|
+
<linearGradient id="engineCard" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
13
|
+
<stop offset="0%" stop-color="#064e3b" />
|
|
14
|
+
<stop offset="100%" stop-color="#022c22" />
|
|
15
|
+
</linearGradient>
|
|
12
16
|
|
|
13
17
|
<!-- Flow Connector -->
|
|
14
18
|
<linearGradient id="flowGrad" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
@@ -18,75 +22,86 @@
|
|
|
18
22
|
</defs>
|
|
19
23
|
|
|
20
24
|
<!-- Canvas Container -->
|
|
21
|
-
<rect width="820" height="
|
|
25
|
+
<rect width="820" height="420" rx="12" fill="#090d16" stroke="#1e293b" stroke-width="1.5"/>
|
|
26
|
+
|
|
27
|
+
<!-- Layer 1: Central Root Contracts -->
|
|
28
|
+
<g transform="translate(110, 15)">
|
|
29
|
+
<rect width="600" height="60" rx="12" fill="url(#rootCard)" stroke="#4f46e5" stroke-width="2"/>
|
|
30
|
+
<text x="300" y="24" font-size="12" font-weight="800" fill="#a5b4fc" text-anchor="middle" letter-spacing="1">LAYER 1: CENTRAL ROOT CONTRACTS (SINGLE SOURCE)</text>
|
|
31
|
+
<text x="300" y="46" font-size="14" font-weight="700" fill="#f8fafc" text-anchor="middle">AGENTS.md • MEMORY.md • TASKS.md • RUNBOOK.md</text>
|
|
32
|
+
</g>
|
|
33
|
+
|
|
34
|
+
<!-- Flow Connector L1 -> L2 -->
|
|
35
|
+
<path d="M 410,75 L 410,95" stroke="url(#flowGrad)" stroke-width="3" stroke-dasharray="4,4" fill="none"/>
|
|
22
36
|
|
|
23
|
-
<!-- Layer
|
|
24
|
-
<g transform="translate(110,
|
|
25
|
-
<rect width="600" height="
|
|
26
|
-
<text x="300" y="
|
|
27
|
-
<text x="300" y="
|
|
37
|
+
<!-- Layer 2: Configuration & Intelligence (.ai/) -->
|
|
38
|
+
<g transform="translate(110, 95)">
|
|
39
|
+
<rect width="600" height="60" rx="12" fill="url(#aiCard)" stroke="#8b5cf6" stroke-width="1.5"/>
|
|
40
|
+
<text x="300" y="22" font-size="11" font-weight="800" fill="#c084fc" text-anchor="middle" letter-spacing="1">LAYER 2: .AI/ CONFIGURATION & INTELLIGENCE</text>
|
|
41
|
+
<text x="300" y="44" font-size="13" font-weight="700" fill="#e2e8f0" text-anchor="middle">context • agents • skills • prompts • checks • session logs</text>
|
|
28
42
|
</g>
|
|
29
43
|
|
|
30
|
-
<!-- Flow Connector
|
|
31
|
-
<path d="M 410,
|
|
44
|
+
<!-- Flow Connector L2 -> L3 -->
|
|
45
|
+
<path d="M 410,155 L 410,175" stroke="url(#flowGrad)" stroke-width="3" fill="none"/>
|
|
46
|
+
<polygon points="410,175 405,165 415,165" fill="#10b981"/>
|
|
32
47
|
|
|
33
|
-
<!-- Layer
|
|
34
|
-
<g transform="translate(110,
|
|
35
|
-
<rect width="600" height="
|
|
36
|
-
<text x="300" y="
|
|
37
|
-
<text x="300" y="
|
|
48
|
+
<!-- Layer 3: Dev OS Engine & Safety -->
|
|
49
|
+
<g transform="translate(110, 175)">
|
|
50
|
+
<rect width="600" height="60" rx="12" fill="url(#engineCard)" stroke="#10b981" stroke-width="1.5"/>
|
|
51
|
+
<text x="300" y="22" font-size="11" font-weight="800" fill="#34d399" text-anchor="middle" letter-spacing="1">LAYER 3: ENGINE WORKFLOWS & SAFETY GATES</text>
|
|
52
|
+
<text x="300" y="44" font-size="13" font-weight="700" fill="#e2e8f0" text-anchor="middle">onboard analyze • adapter sync • improve propose • verify doctor</text>
|
|
38
53
|
</g>
|
|
39
54
|
|
|
40
|
-
<!-- Flow Connector
|
|
41
|
-
<path d="M 410,
|
|
42
|
-
<polygon points="410,260 405,250 415,250" fill="#
|
|
55
|
+
<!-- Flow Connector L3 -> L4 -->
|
|
56
|
+
<path d="M 410,235 L 410,260" stroke="#334155" stroke-width="3" fill="none"/>
|
|
57
|
+
<polygon points="410,260 405,250 415,250" fill="#334155"/>
|
|
43
58
|
|
|
44
|
-
<!-- Layer
|
|
45
|
-
<path d="M 100,265 L
|
|
46
|
-
<path d="M 100,265 L 100,
|
|
47
|
-
<path d="M
|
|
48
|
-
<path d="M
|
|
49
|
-
<path d="M
|
|
50
|
-
<path d="M
|
|
59
|
+
<!-- Layer 4: Target Tools Connection Tree -->
|
|
60
|
+
<path d="M 100,265 L 725,265 L 725,285" stroke="#334155" stroke-width="2" fill="none"/>
|
|
61
|
+
<path d="M 100,265 L 100,285" stroke="#334155" stroke-width="2" fill="none"/>
|
|
62
|
+
<path d="M 225,265 L 225,285" stroke="#334155" stroke-width="2" fill="none"/>
|
|
63
|
+
<path d="M 350,265 L 350,285" stroke="#334155" stroke-width="2" fill="none"/>
|
|
64
|
+
<path d="M 475,265 L 475,285" stroke="#334155" stroke-width="2" fill="none"/>
|
|
65
|
+
<path d="M 600,265 L 600,285" stroke="#334155" stroke-width="2" fill="none"/>
|
|
51
66
|
|
|
52
|
-
<!-- Adapter
|
|
67
|
+
<!-- Universal Adapter Nodes -->
|
|
53
68
|
<!-- Node 1: Codex -->
|
|
54
|
-
<g transform="translate(40,
|
|
69
|
+
<g transform="translate(40, 285)">
|
|
55
70
|
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
56
71
|
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Codex</text>
|
|
57
72
|
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">adapters/codex/</text>
|
|
58
73
|
</g>
|
|
59
74
|
|
|
60
75
|
<!-- Node 2: Antigravity -->
|
|
61
|
-
<g transform="translate(165,
|
|
76
|
+
<g transform="translate(165, 285)">
|
|
62
77
|
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
63
78
|
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Antigravity</text>
|
|
64
79
|
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">.gemini/settings</text>
|
|
65
80
|
</g>
|
|
66
81
|
|
|
67
82
|
<!-- Node 3: Cursor -->
|
|
68
|
-
<g transform="translate(290,
|
|
83
|
+
<g transform="translate(290, 285)">
|
|
69
84
|
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
70
85
|
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Cursor</text>
|
|
71
86
|
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">.cursorrules</text>
|
|
72
87
|
</g>
|
|
73
88
|
|
|
74
89
|
<!-- Node 4: Claude -->
|
|
75
|
-
<g transform="translate(415,
|
|
90
|
+
<g transform="translate(415, 285)">
|
|
76
91
|
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
77
92
|
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Claude</text>
|
|
78
93
|
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">CLAUDE.md</text>
|
|
79
94
|
</g>
|
|
80
95
|
|
|
81
96
|
<!-- Node 5: Gemini -->
|
|
82
|
-
<g transform="translate(540,
|
|
97
|
+
<g transform="translate(540, 285)">
|
|
83
98
|
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
84
99
|
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Gemini</text>
|
|
85
100
|
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">GEMINI.md</text>
|
|
86
101
|
</g>
|
|
87
102
|
|
|
88
103
|
<!-- Node 6: VS Code -->
|
|
89
|
-
<g transform="translate(665,
|
|
104
|
+
<g transform="translate(665, 285)">
|
|
90
105
|
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
91
106
|
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">VS Code</text>
|
|
92
107
|
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">.vscode/settings</text>
|