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.
Files changed (81) hide show
  1. package/.ai/intelligence/README.md +14 -0
  2. package/.ai/intelligence/apply-log.schema.json +65 -0
  3. package/.ai/intelligence/feedback-log.example.jsonl +2 -0
  4. package/.ai/intelligence/feedback.schema.json +47 -0
  5. package/.ai/intelligence/improvement-proposal.schema.json +70 -0
  6. package/.ai/intelligence/learning-rules.example.md +18 -0
  7. package/.ai/intelligence/memory.schema.json +97 -0
  8. package/.ai/plugins/README.md +30 -0
  9. package/.ai/plugins/plugin.example.yaml +32 -0
  10. package/.ai/policies/approval-gates.md +35 -0
  11. package/.ai/policies/memory-policy.md +30 -0
  12. package/.ai/policies/self-improvement-policy.md +39 -0
  13. package/.ai/proposals/README.md +44 -0
  14. package/.ai/proposals/apply-operation.example.json +22 -0
  15. package/.ai/registries/capabilities.yaml +73 -0
  16. package/.ai/registries/tools.yaml +84 -0
  17. package/.ai/registries/workflows.yaml +217 -0
  18. package/.ai/schema/plugin.schema.json +56 -0
  19. package/README.md +116 -138
  20. package/assets/adapter-sync-flow.svg +84 -0
  21. package/assets/architecture-preview.svg +46 -31
  22. package/assets/onboarding-flow.svg +79 -0
  23. package/assets/social-preview.svg +1 -1
  24. package/assets/terminal-demo.svg +22 -23
  25. package/bin/multimodel-dev-os.js +3472 -7
  26. package/docs/.vitepress/config.js +46 -7
  27. package/docs/5-day-roadmap.md +9 -9
  28. package/docs/CLI.md +260 -34
  29. package/docs/adapter-sync.md +27 -0
  30. package/docs/adapters.md +16 -0
  31. package/docs/agent-handoff.md +40 -0
  32. package/docs/approved-proposal-apply.md +156 -0
  33. package/docs/architecture.md +31 -7
  34. package/docs/capability-registry.md +24 -0
  35. package/docs/comparison.md +72 -25
  36. package/docs/compatibility.md +2 -2
  37. package/docs/dashboard.md +105 -0
  38. package/docs/demo.md +23 -60
  39. package/docs/demos/adapter-sync.md +103 -0
  40. package/docs/demos/existing-repo-onboarding.md +125 -0
  41. package/docs/demos/index.md +91 -0
  42. package/docs/demos/multi-agent-handoff.md +88 -0
  43. package/docs/demos/release-check.md +109 -0
  44. package/docs/demos/safe-improvement-loop.md +119 -0
  45. package/docs/distribution.md +195 -0
  46. package/docs/faq.md +91 -24
  47. package/docs/feedback-learning.md +33 -0
  48. package/docs/future-proof-architecture.md +22 -0
  49. package/docs/hash-compressed-memory.md +72 -0
  50. package/docs/improvement-proposals.md +70 -0
  51. package/docs/index.md +192 -81
  52. package/docs/installers.md +18 -4
  53. package/docs/launch-kit.md +97 -49
  54. package/docs/learning-rules.md +36 -0
  55. package/docs/npm-publishing.md +6 -6
  56. package/docs/plugin-authoring.md +99 -0
  57. package/docs/plugin-hooks.md +80 -0
  58. package/docs/public/assets/adapter-sync-flow.svg +84 -0
  59. package/docs/public/assets/onboarding-flow.svg +79 -0
  60. package/docs/public/llms-full.txt +47 -4
  61. package/docs/public/llms.txt +55 -2
  62. package/docs/public/sitemap.xml +85 -0
  63. package/docs/quickstart.md +82 -22
  64. package/docs/real-repo-onboarding.md +27 -0
  65. package/docs/repository-command-center.md +68 -0
  66. package/docs/self-improving-codebase.md +46 -0
  67. package/docs/template-recommendation.md +22 -0
  68. package/docs/templates-guide.md +11 -0
  69. package/docs/tool-registry.md +21 -0
  70. package/docs/tui-safety.md +59 -0
  71. package/docs/use-cases.md +21 -0
  72. package/docs/v2-roadmap.md +78 -71
  73. package/docs/workflow-orchestration.md +62 -0
  74. package/examples/adapter-sync/README.md +45 -0
  75. package/examples/command-center/README.md +59 -0
  76. package/examples/real-repo-onboarding/README.md +53 -0
  77. package/examples/safe-improvement-loop/README.md +48 -0
  78. package/package.json +1 -1
  79. package/scripts/install.ps1 +1 -1
  80. package/scripts/install.sh +1 -1
  81. package/scripts/verify.js +107 -3
package/docs/index.md CHANGED
@@ -3,38 +3,44 @@ layout: home
3
3
 
4
4
  hero:
5
5
  name: "MultiModel Dev OS"
6
- text: "Standardize your AI pair-programmers"
7
- tagline: "One portable AI Dev OS for Codex, Antigravity, Cursor, Claude, Gemini, VS Code, and multimodel coding workflows."
6
+ text: "One config. Every AI tool. Zero lock-in."
7
+ tagline: "Stop copy-pasting rules between Cursor, Claude, Gemini, Codex, and VS Code. Standardize your AI pair-programmers with a single portable workspace."
8
8
  image:
9
9
  src: /logo.png
10
10
  alt: MultiModel Dev OS Logo
11
11
  actions:
12
12
  - theme: brand
13
- text: Get Started Quick
13
+ text: Get Started in 30 Seconds
14
14
  link: /quickstart
15
15
  - theme: alt
16
- text: Stable Protocol Specs
17
- link: /stable-protocol
16
+ text: See It in Action
17
+ link: /demos/
18
18
  - theme: alt
19
- text: v2 Release Checklist
20
- link: /v2-release-checklist
21
- - theme: alt
22
- text: View Case Studies
23
- link: /case-studies/
19
+ text: vs Alternatives
20
+ link: /comparison
24
21
  - theme: alt
25
22
  text: View on GitHub
26
23
  link: https://github.com/rizvee/multimodel-dev-os
27
24
 
28
25
  features:
26
+ - icon: 📁
27
+ title: Instant Repo Onboarding
28
+ details: Analyze existing projects, get template recommendations, and bootstrap AI Dev OS configs without breaking anything.
29
+ - icon: 🔄
30
+ title: Universal Adapter Sync
31
+ details: Write rules once in AGENTS.md — auto-syncs to .cursorrules, CLAUDE.md, .vscode/, .gemini/, and 10+ more tools.
29
32
  - icon: 🧠
30
- title: Universal Portability
31
- details: Supports Codex, Antigravity, Cursor, Claude Code, Gemini, and VS Code with dynamic adapters sync.
33
+ title: Self-Improving Intelligence
34
+ details: Hash-compressed memory, developer feedback loops, and structured improvement proposals with human-in-the-loop safety gates.
32
35
  - icon: ⚡
33
- title: Ultra-Low Token Footprint
34
- details: Includes Caveman Mode to slash model context footprint by ~79%, saving massive API bill budgets.
36
+ title: Caveman Mode (−79% Tokens)
37
+ details: Slash model context footprint by ~79% with compressed shorthand declarations. Save massively on API bills.
35
38
  - icon: 🛡️
36
- title: Local Quality Gates
37
- details: Built-in zero-dependency validate and doctor checkups ensure pristine workspace rules layout.
39
+ title: 214+ Quality Gates
40
+ details: Built-in validate, doctor, and verify commands enforce workspace health with strict structural assertions.
41
+ - icon: 🔧
42
+ title: Zero Dependencies
43
+ details: Pure Node.js CLI — no runtime, no build step, no package manager lock-in. Works on Windows, macOS, and Linux.
38
44
  ---
39
45
 
40
46
  <style>
@@ -42,17 +48,27 @@ features:
42
48
  --vp-home-hero-name-color: transparent;
43
49
  --vp-home-hero-name-background: linear-gradient(135deg, #6366f1 0%, #10b981 100%);
44
50
  }
51
+ .section-title {
52
+ font-size: 1.6rem;
53
+ font-weight: 800;
54
+ margin-bottom: 0.5rem;
55
+ }
56
+ .section-sub {
57
+ color: var(--vp-c-text-2);
58
+ font-size: 1rem;
59
+ margin-bottom: 1.5rem;
60
+ }
45
61
  .grid-container {
46
62
  display: grid;
47
63
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
48
- gap: 1.5rem;
49
- margin-top: 2rem;
64
+ gap: 1.25rem;
65
+ margin-top: 1.5rem;
50
66
  margin-bottom: 2rem;
51
67
  }
52
68
  .card-item {
53
69
  border: 1px solid var(--vp-c-bg-mute);
54
70
  background-color: var(--vp-c-bg-soft);
55
- border-radius: 8px;
71
+ border-radius: 10px;
56
72
  padding: 1.5rem;
57
73
  transition: border-color 0.25s, transform 0.25s;
58
74
  text-decoration: none !important;
@@ -60,48 +76,91 @@ features:
60
76
  }
61
77
  .card-item:hover {
62
78
  border-color: var(--vp-c-brand-1);
63
- transform: translateY(-4px);
79
+ transform: translateY(-3px);
64
80
  }
65
81
  .card-title {
66
- font-weight: 600;
67
- font-size: 1.15rem;
68
- margin-bottom: 0.5rem;
82
+ font-weight: 700;
83
+ font-size: 1.1rem;
84
+ margin-bottom: 0.4rem;
69
85
  }
70
86
  .card-desc {
71
87
  font-size: 0.9rem;
72
88
  color: var(--vp-c-text-2);
73
89
  }
90
+ .card-time {
91
+ font-size: 0.8rem;
92
+ color: var(--vp-c-brand-1);
93
+ font-weight: 600;
94
+ margin-top: 0.4rem;
95
+ }
74
96
  .works-with-grid {
75
97
  display: grid;
76
- grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
77
- gap: 1rem;
78
- margin-top: 1.5rem;
79
- margin-bottom: 2.5rem;
98
+ grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
99
+ gap: 0.75rem;
100
+ margin-top: 1rem;
101
+ margin-bottom: 2rem;
80
102
  }
81
103
  .works-with-item {
82
104
  border: 1px solid var(--vp-c-bg-mute);
83
105
  background-color: var(--vp-c-bg-soft);
84
106
  border-radius: 6px;
85
- padding: 1rem;
107
+ padding: 0.75rem;
86
108
  text-align: center;
87
109
  font-weight: 500;
88
- font-size: 0.95rem;
110
+ font-size: 0.9rem;
111
+ }
112
+ .highlight-box {
113
+ background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(16, 185, 129, 0.08));
114
+ border: 1px solid rgba(99, 102, 241, 0.2);
115
+ border-radius: 12px;
116
+ padding: 1.5rem 2rem;
117
+ margin: 2rem 0;
118
+ }
119
+ .highlight-box h3 { margin-top: 0; }
120
+ .safety-grid {
121
+ display: grid;
122
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
123
+ gap: 1rem;
124
+ margin: 1.5rem 0;
89
125
  }
126
+ .safety-item {
127
+ text-align: center;
128
+ padding: 1rem;
129
+ }
130
+ .safety-icon { font-size: 2rem; margin-bottom: 0.3rem; }
131
+ .safety-label { font-weight: 700; font-size: 1.1rem; }
132
+ .safety-desc { font-size: 0.85rem; color: var(--vp-c-text-2); }
90
133
  </style>
91
134
 
92
- ## Quick Start Setup
93
-
94
- Scaffold a tool-neutral workspace instantly:
135
+ ## Install in 30 Seconds
95
136
 
96
137
  ```bash
97
138
  npx multimodel-dev-os@latest init
98
139
  ```
99
140
 
141
+ Already have a project? Onboard it safely:
142
+
143
+ ```bash
144
+ npx multimodel-dev-os@latest onboard analyze
145
+ npx multimodel-dev-os@latest onboard recommend
146
+ npx multimodel-dev-os@latest onboard apply --approved
147
+ ```
148
+
100
149
  ---
101
150
 
102
- ## Works With
151
+ ## Why Not Just `.cursorrules` or `CLAUDE.md`?
152
+
153
+ You use **Cursor** for autocomplete, **Claude Code** for terminal ops, **Gemini** for audits. Every tool switch:
154
+
155
+ 1. **Drops context** — the next tool doesn't know what the previous one decided
156
+ 2. **Drifts rules** — you update `.cursorrules` but forget `CLAUDE.md`, causing confusing failures
157
+ 3. **Wastes tokens** — every prompt resends your full ruleset, and API bills spike
103
158
 
104
- MultiModel Dev OS maps repository context directly to all major developer tools and coding agents:
159
+ **MultiModel Dev OS** gives you a **single source of truth** (`AGENTS.md`) that auto-syncs to every tool. Change once, every tool updates.
160
+
161
+ ---
162
+
163
+ ## Works With
105
164
 
106
165
  <div class="works-with-grid">
107
166
  <div class="works-with-item">🤖 Codex</div>
@@ -110,81 +169,133 @@ MultiModel Dev OS maps repository context directly to all major developer tools
110
169
  <div class="works-with-item">⚡ Claude Code</div>
111
170
  <div class="works-with-item">🧠 Gemini</div>
112
171
  <div class="works-with-item">💻 VS Code</div>
172
+ <div class="works-with-item">🔌 Cline / Roo</div>
173
+ <div class="works-with-item">🔌 Aider</div>
113
174
  </div>
114
175
 
115
176
  ---
116
177
 
117
- ## Core Specifications & Playbooks
178
+ ## See It in Action
118
179
 
119
180
  <div class="grid-container">
120
- <a href="/quickstart" class="card-item">
121
- <div class="card-title">🚀 Quickstart Guide</div>
122
- <div class="card-desc">Deploy adapters and root contracts in under 2 minutes.</div>
181
+ <a href="/demos/existing-repo-onboarding" class="card-item">
182
+ <div class="card-title">📁 Repo Onboarding</div>
183
+ <div class="card-desc">Analyze your project, get recommendations, and bootstrap configs safely.</div>
184
+ <div class="card-time">~2 min</div>
123
185
  </a>
124
- <a href="/templates/" class="card-item">
125
- <div class="card-title">📦 Template Gallery</div>
126
- <div class="card-desc">5 premium, production-ready stack configurations for developers.</div>
127
- </a>
128
- <a href="/stable-protocol" class="card-item">
129
- <div class="card-title">🛡️ Stable Protocol</div>
130
- <div class="card-desc">Explore the officially frozen Layer 1-3 directory and file contracts.</div>
186
+ <a href="/demos/adapter-sync" class="card-item">
187
+ <div class="card-title">🔄 Adapter Sync</div>
188
+ <div class="card-desc">Mirror rules across Cursor, Claude, VS Code, and Gemini automatically.</div>
189
+ <div class="card-time">~1 min</div>
131
190
  </a>
132
- <a href="/cost-optimization" class="card-item">
133
- <div class="card-title">⚡ Cost Optimization</div>
134
- <div class="card-desc">Cuts your prompting token bills by up to 79% using Caveman shortcuts.</div>
191
+ <a href="/demos/safe-improvement-loop" class="card-item">
192
+ <div class="card-title">🧠 Improvement Loop</div>
193
+ <div class="card-desc">Feedback proposals validate apply with audit trails.</div>
194
+ <div class="card-time">~2 min</div>
135
195
  </a>
136
- <a href="/case-studies/" class="card-item">
137
- <div class="card-title">💼 Case Studies Gallery</div>
138
- <div class="card-desc">5 real-world integration guides mapping SaaS schemas and sequential handoffs.</div>
196
+ <a href="/demos/multi-agent-handoff" class="card-item">
197
+ <div class="card-title">🤝 Agent Handoff</div>
198
+ <div class="card-desc">Compile session context and hand off between models.</div>
199
+ <div class="card-time">~1 min</div>
139
200
  </a>
140
- <a href="/migration-guide" class="card-item">
141
- <div class="card-title">📈 Migration Playbook</div>
142
- <div class="card-desc">Upgrade older workspaces to v1.1.0 standards cleanly.</div>
201
+ <a href="/demos/release-check" class="card-item">
202
+ <div class="card-title">🚀 Release Check</div>
203
+ <div class="card-desc">Run 214+ verification assertions and package hygiene checks.</div>
204
+ <div class="card-time">~1 min</div>
143
205
  </a>
144
- <a href="/v2-release-checklist" class="card-item">
145
- <div class="card-title">🏁 v2 Release Checklist</div>
146
- <div class="card-desc">Audit repository compliance with the strict v2 release quality gates.</div>
147
- </a>
148
- <a href="/llms.txt" class="card-item" target="_blank">
149
- <div class="card-title">🤖 AI Discovery (llms.txt)</div>
150
- <div class="card-desc">A highly concise, structured overview formatted specifically for AI context ingestion.</div>
206
+ <a href="/comparison" class="card-item">
207
+ <div class="card-title">⚔️ vs Alternatives</div>
208
+ <div class="card-desc">See how MMDO compares to manual rules, prompt packs, and tool-specific configs.</div>
209
+ <div class="card-time"></div>
151
210
  </a>
152
211
  </div>
153
212
 
154
213
  ---
155
214
 
156
- ## For AI Assistants and Coding Agents
215
+ <div class="highlight-box">
157
216
 
158
- To support modern AI search, GEO discovery, and developer agents:
159
- - We provide [llms.txt](/llms.txt) and [llms-full.txt](/llms-full.txt) at the root of the hosted documentation to allow Large Language Models and AEO utilities to read full workspace specs in single, token-optimized files.
160
- - The officially frozen protocol guarantees that agents can read and write workspace rules without manual supervision or instruction drift.
217
+ ### 🆕 What's New in v2.7
161
218
 
162
- ---
219
+ - 🎬 **Demo Workflow Pages** — 5 copy-paste guided workflows for onboarding, adapter sync, improvement loops, handoffs, and release checks
220
+ - 📖 **Distribution Guide** — comprehensive release, verification, and package hygiene documentation
221
+ - 🖼️ **Visual Flow Diagrams** — SVG assets for onboarding and adapter sync flows
222
+ - 📁 **Docs-First Examples** — 4 new example workflows with commands and expected output
163
223
 
164
- ## Cost & Context Optimization
224
+ </div>
165
225
 
166
- Minimize prompt overhead and API billing by mapping key context-reduction techniques to MultiModel Dev OS features:
226
+ ---
167
227
 
168
- <p align="center">
169
- <img src="/assets/cost-optimization.svg" alt="Cost Optimization Funnel" width="100%">
170
- </p>
228
+ ## Safety & Trust
229
+
230
+ <div class="safety-grid">
231
+ <div class="safety-item">
232
+ <div class="safety-icon">🛡️</div>
233
+ <div class="safety-label">214+ Quality Gates</div>
234
+ <div class="safety-desc">Strict structural verification on every release</div>
235
+ </div>
236
+ <div class="safety-item">
237
+ <div class="safety-icon">👤</div>
238
+ <div class="safety-label">Human-in-the-Loop</div>
239
+ <div class="safety-desc">All writes require explicit --approved flag</div>
240
+ </div>
241
+ <div class="safety-item">
242
+ <div class="safety-icon">🔒</div>
243
+ <div class="safety-label">12 Safety Gates</div>
244
+ <div class="safety-desc">Proposal validation with path boundary checks</div>
245
+ </div>
246
+ <div class="safety-item">
247
+ <div class="safety-icon">📝</div>
248
+ <div class="safety-label">Full Audit Trail</div>
249
+ <div class="safety-desc">SHA-256 hashed apply log for every change</div>
250
+ </div>
251
+ </div>
171
252
 
172
253
  ---
173
254
 
174
- ## 5-Day Adoption Roadmap
255
+ ## Explore
256
+
257
+ <div class="grid-container">
258
+ <a href="/quickstart" class="card-item">
259
+ <div class="card-title">🚀 Quickstart Guide</div>
260
+ <div class="card-desc">Deploy adapters and root contracts in under 30 seconds.</div>
261
+ </a>
262
+ <a href="/CLI" class="card-item">
263
+ <div class="card-title">⌨️ CLI Reference</div>
264
+ <div class="card-desc">Full command reference for init, scan, status, memory, workflow, and more.</div>
265
+ </a>
266
+ <a href="/templates/" class="card-item">
267
+ <div class="card-title">📦 Template Gallery</div>
268
+ <div class="card-desc">6 production-ready stack configurations for Next.js, WordPress, e-commerce, and more.</div>
269
+ </a>
270
+ <a href="/architecture" class="card-item">
271
+ <div class="card-title">🏗️ Architecture</div>
272
+ <div class="card-desc">4-layer protocol from root contracts through intelligence engine.</div>
273
+ </a>
274
+ <a href="/cost-optimization" class="card-item">
275
+ <div class="card-title">⚡ Cost Optimization</div>
276
+ <div class="card-desc">Cut your prompting token bills by up to 79% using Caveman shortcuts.</div>
277
+ </a>
278
+ <a href="/distribution" class="card-item">
279
+ <div class="card-title">📦 Distribution Guide</div>
280
+ <div class="card-desc">Release checklists, npm publishing, and package hygiene.</div>
281
+ </a>
282
+ </div>
283
+
284
+ ---
175
285
 
176
- Deploying MultiModel Dev OS across your team is straightforward and tool-neutral:
286
+ ## For AI Assistants and Coding Agents
177
287
 
178
- <p align="center">
179
- <img src="/assets/ai-dev-os-roadmap.svg" alt="5-Day Adoption Roadmap" width="100%">
180
- </p>
288
+ To support modern AI search, GEO discovery, and developer agents:
289
+ - We provide [llms.txt](/llms.txt) and [llms-full.txt](/llms-full.txt) at the root of the hosted documentation to allow Large Language Models and AEO utilities to read full workspace specs in single, token-optimized files.
290
+ - The officially frozen protocol guarantees that agents can read and write workspace rules without manual supervision or instruction drift.
181
291
 
182
292
  ---
183
293
 
184
- ## Why MultiModel Dev OS?
294
+ ## Contributing & Community
185
295
 
186
- AI coding tools are incredibly fast, but switching between them introduces context fragmentation:
187
- 1. **Context Loss:** You use **Cursor** for quick code completions, **Claude Code** for command-line implementations, and **Gemini/Antigravity** for auditing large code volumes. Every context switch drops your operational parameters.
188
- 2. **Instruction Drift:** Different tools look for different files (`.cursorrules`, `CLAUDE.md`, `.vscode/settings.json`, `.gemini/settings.json`). If you modify build scripts or styling rules in one place, they quickly drift across others, causing confusing compile failures.
296
+ **[Star us on GitHub](https://github.com/rizvee/multimodel-dev-os)** it helps developers discover this project
189
297
 
190
- `multimodel-dev-os` establishes a single source of truth inside your repository using a standardized root structure (`AGENTS.md`, `MEMORY.md`, `TASKS.md`, `RUNBOOK.md`) and a `.ai/` context configuration directory.
298
+ - 📖 **[Contributing Guidelines](https://github.com/rizvee/multimodel-dev-os/blob/main/CONTRIBUTING.md)**
299
+ - 🐛 **[Report a Bug](https://github.com/rizvee/multimodel-dev-os/issues/new)**
300
+ - 💡 **[Request a Feature](https://github.com/rizvee/multimodel-dev-os/issues/new)**
301
+ - 📦 **[NPM Package](https://www.npmjs.com/package/multimodel-dev-os)**
@@ -1,10 +1,24 @@
1
- # Installers
1
+ # Installers & NPX Setup
2
2
 
3
- ## Overview
3
+ ## NPX (Recommended Primary Method)
4
4
 
5
- While `npx multimodel-dev-os@latest init` is the primary and recommended route to bootstrap your project, we provide cross-platform automated shell script installers as robust, dependency-free fallbacks for environments without Node.js. These are located in `scripts/`.
5
+ For environments with Node.js 18+ installed, use our zero-install scaffolding runner. This is the fastest, most reliable, and standard way to initialize and manage workspaces:
6
6
 
7
- ## Usage
7
+ ```bash
8
+ # Initialize a new workspace in the current directory
9
+ npx multimodel-dev-os@latest init
10
+
11
+ # Or onboard an existing repository safely
12
+ npx multimodel-dev-os@latest onboard analyze
13
+ ```
14
+
15
+ For more details, see the **[Quickstart Guide](/quickstart)**.
16
+
17
+ ---
18
+
19
+ ## Offline & Dependency-Free Installers
20
+
21
+ While `npx` is the primary route, we provide cross-platform automated shell script installers as robust, dependency-free fallbacks for environments without Node.js. These are located in `scripts/`.
8
22
 
9
23
  ### macOS / Linux / WSL (`install.sh`)
10
24
 
@@ -1,81 +1,129 @@
1
1
  # Public Launch & Social Sharing Kit
2
2
 
3
- A curated collection of ready-to-use sharing outlines focused on LLM cost savings, multi-agent context synchronization, and configuration reuse inside development teams.
3
+ Ready-to-use promotional copy for sharing MultiModel Dev OS on social platforms, forums, and communities.
4
4
 
5
5
  ---
6
6
 
7
- ## 1. Product Hunt Launch (Milestone v0.8.0)
8
- - **Product Tagline:** Portable workspace configuration layer and playbooks to sync AI coding agents.
9
- - **Pitch Focus:** Slash LLM API billing and context overhead by up to **~79%** with our native Caveman Mode. Enforce strict coding styles and boundaries across Cursor, Claude, Antigravity, and VS Code automatically using a singular root contract.
7
+ ## 1. Product Hunt / Show HN Pitch
8
+
9
+ **Tagline:** One workspace config for every AI coding tool zero lock-in, zero dependencies.
10
+
11
+ **Pitch:**
12
+ > If you use 2+ AI coding tools (Cursor, Claude Code, Gemini, Codex, VS Code Copilot), you know the pain: rules drift between tools, every switch drops context, and tokens waste on duplicate instructions.
13
+ >
14
+ > MultiModel Dev OS solves this with a single `AGENTS.md` that auto-syncs to every tool. One command sets it up: `npx multimodel-dev-os@latest init`
15
+ >
16
+ > v2.7 includes guided demo workflows, safe repo onboarding for existing projects, adapter sync across 10+ tools, a self-improvement engine with 12 safety gates, and 214+ quality assertions.
17
+ >
18
+ > Free, MIT licensed, zero dependencies. Works on Windows, macOS, and Linux.
19
+ >
20
+ > 👉 https://github.com/rizvee/multimodel-dev-os
10
21
 
11
22
  ---
12
23
 
13
- ## 2. X / Twitter Campaign (The Focus: Token Cost Savings)
24
+ ## 2. X / Twitter Campaign
14
25
 
15
26
  ```text
16
- AI coding is fast, but prompt token bills scale faster. 💸
27
+ I use Cursor for autocomplete, Claude for terminal ops, and Gemini for audits.
17
28
 
18
- Duplicating instructions in .cursorrules, CLAUDE.md, and system prompts drains your API token budget on every message turn.
29
+ The problem? Every tool switch drops context. Rules drift. Tokens waste.
19
30
 
20
- Say hello to MultiModel Dev OS v0.8.0! 🧠
31
+ MultiModel Dev OS fixes this:
21
32
 
22
33
  npx multimodel-dev-os@latest init
23
34
 
24
- 👉 Decoupled adapters sync Cursor, Claude, VS Code, and Gemini instantly
25
- 👉 Slash rule overhead by up to ~79% with Caveman Mode
26
- 👉 12 Cost Optimization plays mapped to Dev OS features
27
- 👉 5-Day tool-neutral Adoption Roadmap for teams
35
+ One config syncs to .cursorrules, CLAUDE.md, .vscode/, .gemini/
36
+ Onboard existing repos safely
37
+ Self-improvement engine with safety gates
38
+ Slash token overhead by ~79%
28
39
 
29
- Stop wasting context. Sync and reuse your workspace memory! 🚀
40
+ Free, MIT, zero dependencies.
30
41
  👉 https://github.com/rizvee/multimodel-dev-os
31
- #AIDev #OpenSource #SoftwareEngineering #AItools
32
42
  ```
33
43
 
34
44
  ---
35
45
 
36
- ## 3. LinkedIn Campaign (The Focus: Enterprise Adoption)
46
+ ## 3. LinkedIn Campaign
37
47
 
38
48
  ```text
39
- The hidden tax of scaling AI inside development teams: Context Fragmentation. 💸
49
+ The hidden cost of using multiple AI coding tools: Context Fragmentation.
40
50
 
41
- When switching between tools:
42
- - Claude Code scaffolds terminal builds
43
- - Cursor suggests local autocompletions
44
- - Gemini/Antigravity performs codebase audits
51
+ When your team switches between Cursor, Claude Code, and Gemini:
52
+ Rules in .cursorrules go stale when you update CLAUDE.md
53
+ Every model switch loses your operational context
54
+ Token bills spike from duplicate instructions
45
55
 
46
- If each developer maintains distinct, custom configurations, your rules drift immediately. Models break, and you waste thousands of tokens repeating basic instructions.
56
+ MultiModel Dev OS creates a single source of truth that auto-syncs to every tool:
47
57
 
48
- To solve this, we are releasing MultiModel Dev OS v0.8.0:
49
- 1. One central brain (AGENTS.md and .ai/) routes instructions dynamically.
50
- 2. Slashes API prompt overhead by ~79% via Caveman Mode.
51
- 3. Maps 12 context optimization techniques ( RAG scoping, prompt caching, batching).
52
- 4. Includes a 5-Day tool-neutral Adoption Roadmap to align your team in a business week.
58
+ 1. npx multimodel-dev-os@latest init
59
+ 2. Edit AGENTS.md with your project rules
60
+ 3. Run adapter sync to push to all your tools
53
61
 
54
- Fully open-source, MIT licensed, and zero-dependency.
62
+ v2.7 includes 5 guided demo workflows, safe repo onboarding, a self-improvement engine with 12 safety gates, and 214+ quality assertions.
55
63
 
56
- Read the Case Studies Gallery & Playbook:
57
- 👉 https://github.com/rizvee/multimodel-dev-os
58
- Let me know how your team manages prompt consistency in the comments! 👇
64
+ Zero dependencies. MIT licensed. Works everywhere.
65
+
66
+ Demo workflows: https://rizvee.github.io/multimodel-dev-os/demos/
67
+ GitHub: https://github.com/rizvee/multimodel-dev-os
59
68
  ```
60
69
 
61
70
  ---
62
71
 
63
- ## 4. Reddit-Style Pitch (/r/LocalLLaMA, /r/webdev)
64
-
65
- - **Title:** Show HN / Show Reddit: MultiModel Dev OS v0.8.0Prevent AI instruction drift and save ~79% token budget.
66
- - **Content:**
67
- Hey everyone,
68
-
69
- If your team pair programs with multiple LLM agents, you know how fast rules drift. You edit a command in your terminal prompts, but Cursor's autocompletes are still reading outdated caching guidelines, causing compile crashes.
70
-
71
- I built **multimodel-dev-os** to solve this. It's a lightweight, zero-dependency Node.js CLI that scaffolds a single repository brain and uses automated adapters to route a single source of truth to all your tools.
72
-
73
- ### v0.8.0 Feature Highlights:
74
- * **Cost Optimization Playbook:** Maps 12 techniques (prompt caching, RAG scoping, batching) directly to Dev OS directory modules.
75
- * **Caveman Mode:** Strips out descriptions and examples to save **~79% of tokens** per prompt turn.
76
- * **5-Day Adoption Timeline:** A tool-neutral business week adoption playbook.
77
- * **Real-World Case Studies:** 5 generic but realistic guides covering full-stack SaaS schema synchronization, WordPress directory boundaries, and Claude/Gemini hand-off session logs.
78
-
79
- Open-source and MIT licensed. I'd love to hear your feedback on the layout structure!
80
-
81
- GitHub: https://github.com/rizvee/multimodel-dev-os
72
+ ## 4. Reddit / Hacker News
73
+
74
+ **Title:** MultiModel Dev OS v2.7One config for Cursor, Claude, Gemini, Codex, and VS Code
75
+
76
+ **Content:**
77
+ ```text
78
+ Hey everyone,
79
+
80
+ If you use more than one AI coding tool, you've probably hit these problems:
81
+ - Update .cursorrules → forget to update CLAUDE.md → Claude generates wrong code
82
+ - Switch from Claude to Gemini → lose all session context
83
+ - Every prompt resends your full ruleset token bills spike
84
+
85
+ I built multimodel-dev-os to fix this. It's a lightweight CLI that creates a single
86
+ AGENTS.md and auto-syncs it to every tool via adapters.
87
+
88
+ v2.7 adds:
89
+ • 5 copy-paste demo workflows (onboarding, adapter sync, improvement loops, handoffs, release checks)
90
+ Safe repo onboarding — analyze, recommend, plan, apply with auto-backups
91
+ • Distribution guide with release checklists and package hygiene
92
+ • Visual SVG flow diagrams
93
+
94
+ It's zero-dependency, MIT licensed, and works on Windows/macOS/Linux.
95
+
96
+ Try it: npx multimodel-dev-os@latest init
97
+ Demos: https://rizvee.github.io/multimodel-dev-os/demos/
98
+ GitHub: https://github.com/rizvee/multimodel-dev-os
99
+
100
+ Happy to answer questions about the architecture or safety model.
101
+ ```
102
+
103
+ ---
104
+
105
+ ## 5. Key Talking Points
106
+
107
+ Use these when writing about MultiModel Dev OS:
108
+
109
+ | Point | Detail |
110
+ |-------|--------|
111
+ | **Problem** | Switching between AI coding tools causes rule drift, context loss, and token waste |
112
+ | **Solution** | Single `AGENTS.md` → auto-syncs to `.cursorrules`, `CLAUDE.md`, `.vscode/`, `.gemini/`, and more |
113
+ | **Onboarding** | Safely onboard existing repos: `onboard analyze → recommend → plan → apply` |
114
+ | **Safety** | 12 proposal safety gates, `--approved` flags, auto-backups, SHA-256 audit trails |
115
+ | **Token Savings** | Caveman Mode cuts ~79% token overhead |
116
+ | **Quality** | 214+ verification assertions, `doctor --release` alignment checks |
117
+ | **Trust** | Zero dependencies, MIT license, no runtime, no network calls |
118
+ | **Tools** | Codex, Antigravity, Cursor, Claude Code, Gemini, VS Code, Cline, Aider, Windsurf |
119
+
120
+ ---
121
+
122
+ ## 6. Links
123
+
124
+ - **GitHub**: https://github.com/rizvee/multimodel-dev-os
125
+ - **NPM**: https://www.npmjs.com/package/multimodel-dev-os
126
+ - **Docs**: https://rizvee.github.io/multimodel-dev-os/
127
+ - **Demos**: https://rizvee.github.io/multimodel-dev-os/demos/
128
+ - **Quickstart**: https://rizvee.github.io/multimodel-dev-os/quickstart
129
+ - **Comparison**: https://rizvee.github.io/multimodel-dev-os/comparison
@@ -0,0 +1,36 @@
1
+ # Learning Rules and Feedback Loop
2
+
3
+ MultiModel Dev OS captures developer corrections and instruction overrides to compile reusable system rules that refine subsequent agent proposal generations.
4
+
5
+ ---
6
+
7
+ ## 1. Feedback Loop Commands
8
+
9
+ ### 1. Log Feedback
10
+ To log a design preference or instruction override, run:
11
+ ```bash
12
+ npx multimodel-dev-os feedback add "Prefer vanilla CSS or CSS Modules in legacy components" --type preference --tags styling --files "src/components/legacy/*"
13
+ ```
14
+ This logs a structured JSON entry to `.ai/intelligence/feedback-log.jsonl`.
15
+
16
+ ### 2. List Logged Feedback
17
+ To view all feedback entries in a formatted list:
18
+ ```bash
19
+ npx multimodel-dev-os feedback list
20
+ ```
21
+
22
+ ### 3. Summarize Feedback
23
+ To compile the raw feedback log into instructions that agents read:
24
+ ```bash
25
+ npx multimodel-dev-os feedback summarize
26
+ ```
27
+ This aggregates the logs by type and writes `.ai/intelligence/learning-rules.md`.
28
+
29
+ ---
30
+
31
+ ## 2. Context Ingestion by Agents
32
+
33
+ Prior to generating proposals or refactoring components:
34
+ 1. Model agents read `.ai/intelligence/learning-rules.md` as context.
35
+ 2. The rules act as prompt constraints matching specific file target patterns.
36
+ 3. This prevents agents from repeating previously corrected mistakes.