multimodel-dev-os 0.6.1 → 0.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/README.md +51 -156
- package/assets/ai-dev-os-roadmap.svg +66 -0
- package/assets/architecture-preview.svg +94 -0
- package/assets/cost-optimization.svg +155 -0
- package/assets/social-preview.svg +72 -0
- package/assets/terminal-demo.svg +72 -0
- package/docs/.vitepress/config.js +22 -0
- package/docs/5-day-roadmap.md +72 -0
- package/docs/case-studies/ecommerce-store.md +46 -0
- package/docs/case-studies/index.md +24 -0
- package/docs/case-studies/multimodel-handoff.md +46 -0
- package/docs/case-studies/nextjs-saas.md +48 -0
- package/docs/case-studies/seo-landing-page.md +46 -0
- package/docs/case-studies/wordpress-site.md +47 -0
- package/docs/comparison.md +7 -6
- package/docs/cost-optimization.md +61 -0
- package/docs/demo.md +79 -0
- package/docs/index.md +27 -9
- package/docs/launch-checklist.md +47 -0
- package/docs/launch-kit.md +42 -60
- package/docs/public/assets/ai-dev-os-roadmap.svg +66 -0
- package/docs/public/assets/architecture-preview.svg +94 -0
- package/docs/public/assets/cost-optimization.svg +155 -0
- package/docs/public/assets/social-preview.svg +72 -0
- package/docs/public/assets/terminal-demo.svg +72 -0
- package/docs/quickstart.md +21 -30
- package/docs/release-template.md +74 -0
- package/docs/workflow-examples.md +74 -0
- package/package.json +3 -2
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1280 640" width="100%" height="100%" style="font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">
|
|
2
|
+
<defs>
|
|
3
|
+
<!-- Dark Background -->
|
|
4
|
+
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
5
|
+
<stop offset="0%" stop-color="#070a13" />
|
|
6
|
+
<stop offset="50%" stop-color="#0d111d" />
|
|
7
|
+
<stop offset="100%" stop-color="#04060b" />
|
|
8
|
+
</linearGradient>
|
|
9
|
+
|
|
10
|
+
<!-- Indigo/Purple Accent -->
|
|
11
|
+
<linearGradient id="brandGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
12
|
+
<stop offset="0%" stop-color="#6366f1" />
|
|
13
|
+
<stop offset="50%" stop-color="#8b5cf6" />
|
|
14
|
+
<stop offset="100%" stop-color="#10b981" />
|
|
15
|
+
</linearGradient>
|
|
16
|
+
|
|
17
|
+
<!-- Glassmorphic Card -->
|
|
18
|
+
<linearGradient id="cardGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
19
|
+
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.06" />
|
|
20
|
+
<stop offset="100%" stop-color="#ffffff" stop-opacity="0.01" />
|
|
21
|
+
</linearGradient>
|
|
22
|
+
|
|
23
|
+
<!-- Glow Effect -->
|
|
24
|
+
<filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
|
|
25
|
+
<feGaussianBlur stdDeviation="45" result="blur" />
|
|
26
|
+
<feComposite in="SourceGraphic" in2="blur" operator="over" />
|
|
27
|
+
</filter>
|
|
28
|
+
</defs>
|
|
29
|
+
|
|
30
|
+
<!-- Background -->
|
|
31
|
+
<rect width="1280" height="640" fill="url(#bgGrad)" />
|
|
32
|
+
|
|
33
|
+
<!-- Backlight Glows -->
|
|
34
|
+
<circle cx="1100" cy="150" r="220" fill="#8b5cf6" opacity="0.15" filter="url(#glow)" />
|
|
35
|
+
<circle cx="180" cy="480" r="250" fill="#10b981" opacity="0.1" filter="url(#glow)" />
|
|
36
|
+
|
|
37
|
+
<!-- Outer Frames -->
|
|
38
|
+
<rect x="25" y="25" width="1230" height="590" rx="20" fill="none" stroke="#1e293b" stroke-width="2" />
|
|
39
|
+
<rect x="35" y="35" width="1210" height="570" rx="16" fill="none" stroke="url(#brandGrad)" stroke-width="1.5" opacity="0.2" />
|
|
40
|
+
|
|
41
|
+
<!-- Glassmorphic Card Container -->
|
|
42
|
+
<rect x="80" y="80" width="1120" height="480" rx="24" fill="url(#cardGrad)" stroke="#334155" stroke-width="1" stroke-opacity="0.4" style="backdrop-filter: blur(12px);" />
|
|
43
|
+
|
|
44
|
+
<!-- Brand Mark -->
|
|
45
|
+
<g transform="translate(130, 140)">
|
|
46
|
+
<rect width="100" height="100" rx="22" fill="url(#brandGrad)" />
|
|
47
|
+
<path d="M 32,50 L 50,32 L 68,50 L 50,68 Z" fill="#ffffff" />
|
|
48
|
+
<circle cx="50" cy="50" r="8" fill="#070a13" />
|
|
49
|
+
</g>
|
|
50
|
+
|
|
51
|
+
<!-- Titles -->
|
|
52
|
+
<text x="260" y="205" font-size="68" font-weight="900" fill="#ffffff" letter-spacing="-1.5">MultiModel Dev OS</text>
|
|
53
|
+
<text x="260" y="252" font-size="28" font-weight="700" fill="#a78bfa" letter-spacing="-0.5">One project brain for every AI coding agent</text>
|
|
54
|
+
|
|
55
|
+
<!-- Scaffolding Highlight Commands -->
|
|
56
|
+
<g transform="translate(130, 320)">
|
|
57
|
+
<!-- Command box -->
|
|
58
|
+
<rect width="520" height="75" rx="16" fill="#090d16" stroke="#4f46e5" stroke-width="2" />
|
|
59
|
+
<text x="30" y="47" font-family="'Fira Code', 'JetBrains Mono', monospace" font-size="22" font-weight="bold" fill="#34d399">$ <tspan fill="#e2e8f0">npx multimodel-dev-os@latest init</tspan></text>
|
|
60
|
+
</g>
|
|
61
|
+
|
|
62
|
+
<!-- Tools Covered Footer Matrix -->
|
|
63
|
+
<g transform="translate(130, 435)">
|
|
64
|
+
<!-- Divider -->
|
|
65
|
+
<line x1="0" y1="0" x2="1020" y2="0" stroke="#334155" stroke-width="1.5" stroke-opacity="0.6" />
|
|
66
|
+
|
|
67
|
+
<!-- Tools text -->
|
|
68
|
+
<text x="0" y="45" font-size="22" font-weight="600" fill="#94a3b8" letter-spacing="1">
|
|
69
|
+
SUPPORTED WORKFLOWS: <tspan fill="#f8fafc">Codex</tspan> • <tspan fill="#f8fafc">Antigravity</tspan> • <tspan fill="#f8fafc">Cursor</tspan> • <tspan fill="#f8fafc">Claude</tspan> • <tspan fill="#f8fafc">Gemini</tspan> • <tspan fill="#f8fafc">VS Code</tspan>
|
|
70
|
+
</text>
|
|
71
|
+
</g>
|
|
72
|
+
</svg>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 500" width="100%" height="100%" style="border-radius: 12px; font-family: 'Fira Code', 'JetBrains Mono', Consolas, Monaco, monospace; box-shadow: 0 20px 50px rgba(0,0,0,0.45);">
|
|
2
|
+
<defs>
|
|
3
|
+
<!-- Dark Terminal Background Gradient -->
|
|
4
|
+
<linearGradient id="termBg" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
5
|
+
<stop offset="0%" stop-color="#0a0e17" />
|
|
6
|
+
<stop offset="100%" stop-color="#0f1626" />
|
|
7
|
+
</linearGradient>
|
|
8
|
+
|
|
9
|
+
<!-- Decorative Title Accent -->
|
|
10
|
+
<linearGradient id="titleAccent" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
11
|
+
<stop offset="0%" stop-color="#6366f1" />
|
|
12
|
+
<stop offset="50%" stop-color="#a855f7" />
|
|
13
|
+
<stop offset="100%" stop-color="#10b981" />
|
|
14
|
+
</linearGradient>
|
|
15
|
+
</defs>
|
|
16
|
+
|
|
17
|
+
<!-- Shell Frame and Background -->
|
|
18
|
+
<rect width="800" height="500" rx="12" fill="url(#termBg)" stroke="#1e293b" stroke-width="1.5"/>
|
|
19
|
+
<rect x="0" y="0" width="800" height="2" fill="url(#titleAccent)"/>
|
|
20
|
+
|
|
21
|
+
<!-- Title Bar -->
|
|
22
|
+
<path d="M 1 12 A 11 11 0 0 1 12 2 h 776 a 11 11 0 0 1 11 11 v 28 H 1 Z" fill="#0f172a"/>
|
|
23
|
+
|
|
24
|
+
<!-- Window Controls -->
|
|
25
|
+
<circle cx="25" cy="22" r="6" fill="#ff5f56"/>
|
|
26
|
+
<circle cx="45" cy="22" r="6" fill="#ffbd2e"/>
|
|
27
|
+
<circle cx="65" cy="22" r="6" fill="#27c93f"/>
|
|
28
|
+
|
|
29
|
+
<!-- Window Title -->
|
|
30
|
+
<text x="400" y="26" fill="#94a3b8" font-size="13" font-weight="600" text-anchor="middle" letter-spacing="0.5">bash - MultiModel Dev OS CLI</text>
|
|
31
|
+
|
|
32
|
+
<!-- Terminal Content Console -->
|
|
33
|
+
<g font-size="13.5" fill="#e2e8f0" xml:space="preserve">
|
|
34
|
+
<!-- COMMAND 1: init -->
|
|
35
|
+
<text x="30" y="70" font-weight="bold">
|
|
36
|
+
<tspan fill="#38bdf8">~</tspan> <tspan fill="#f43f5e">❯</tspan> <tspan fill="#818cf8">npx</tspan> <tspan fill="#f472b6">multimodel-dev-os@latest</tspan> <tspan fill="#34d399">init</tspan> <tspan fill="#94a3b8">--template nextjs-saas --adapter codex</tspan>
|
|
37
|
+
</text>
|
|
38
|
+
|
|
39
|
+
<!-- Scaffolding Output -->
|
|
40
|
+
<text x="30" y="95" fill="#a78bfa" font-weight="600">🧠 Scaffolding MultiModel Dev OS environment...</text>
|
|
41
|
+
<text x="50" y="115" fill="#34d399">✓ <tspan fill="#e2e8f0">Scaffolded root files</tspan> <tspan fill="#64748b">(AGENTS.md, MEMORY.md, TASKS.md, RUNBOOK.md)</tspan></text>
|
|
42
|
+
<text x="50" y="132" fill="#34d399">✓ <tspan fill="#e2e8f0">Enabled adapter</tspan> <tspan fill="#fb7185">codex</tspan> <tspan fill="#64748b">(.ai/config.yaml status = true)</tspan></text>
|
|
43
|
+
|
|
44
|
+
<!-- COMMAND 2: validate -->
|
|
45
|
+
<text x="30" y="175" font-weight="bold">
|
|
46
|
+
<tspan fill="#38bdf8">~</tspan> <tspan fill="#f43f5e">❯</tspan> <tspan fill="#818cf8">npx</tspan> <tspan fill="#f472b6">multimodel-dev-os@latest</tspan> <tspan fill="#34d399">validate</tspan> <tspan fill="#94a3b8">--target ./my-app</tspan>
|
|
47
|
+
</text>
|
|
48
|
+
|
|
49
|
+
<!-- Validate Output -->
|
|
50
|
+
<text x="30" y="200" fill="#a78bfa" font-weight="600">🛡️ Validating workspace structure compliance...</text>
|
|
51
|
+
<text x="50" y="220" fill="#34d399">✓ <tspan fill="#e2e8f0">Checked primary contract documents: 4/4 exist</tspan></text>
|
|
52
|
+
<text x="50" y="237" fill="#34d399">✓ <tspan fill="#e2e8f0">Validated .ai/config.yaml adapter constraints</tspan></text>
|
|
53
|
+
<text x="50" y="254" fill="#34d399">✓ <tspan fill="#34d399">Success:</tspan> <tspan fill="#e2e8f0">Workspace structure conforms to specifications</tspan></text>
|
|
54
|
+
|
|
55
|
+
<!-- COMMAND 3: doctor -->
|
|
56
|
+
<text x="30" y="295" font-weight="bold">
|
|
57
|
+
<tspan fill="#38bdf8">~</tspan> <tspan fill="#f43f5e">❯</tspan> <tspan fill="#818cf8">npx</tspan> <tspan fill="#f472b6">multimodel-dev-os@latest</tspan> <tspan fill="#34d399">doctor</tspan> <tspan fill="#94a3b8">--target ./my-app</tspan>
|
|
58
|
+
</text>
|
|
59
|
+
|
|
60
|
+
<!-- Doctor Output -->
|
|
61
|
+
<text x="30" y="320" fill="#a78bfa" font-weight="600">🩺 Executing advisory checkups...</text>
|
|
62
|
+
<text x="50" y="340" fill="#34d399">✓ <tspan fill="#e2e8f0">Gitignore audit: Ignored cache folders (.vitepress/dist)</tspan></text>
|
|
63
|
+
<text x="50" y="357" fill="#34d399">✓ <tspan fill="#e2e8f0">Active adapters verify: Physical rule files mapped</tspan></text>
|
|
64
|
+
<text x="50" y="374" fill="#38bdf8">ℹ <tspan fill="#e2e8f0">Advisory: 0 warnings, workspace is operating at 100% efficiency</tspan></text>
|
|
65
|
+
|
|
66
|
+
<!-- Success banner -->
|
|
67
|
+
<text x="30" y="415" fill="#34d399" font-weight="bold">🚀 All Dev OS pipeline checkups completed successfully!</text>
|
|
68
|
+
|
|
69
|
+
<!-- Next Active Prompt Cursor -->
|
|
70
|
+
<text x="30" y="455" fill="#f43f5e">❯ <tspan fill="#e2e8f0">█</tspan></text>
|
|
71
|
+
</g>
|
|
72
|
+
</svg>
|
|
@@ -16,10 +16,29 @@ export default {
|
|
|
16
16
|
text: 'Getting Started',
|
|
17
17
|
items: [
|
|
18
18
|
{ text: 'Introduction', link: '/' },
|
|
19
|
+
{ text: 'Interactive CLI Demo', link: '/demo' },
|
|
19
20
|
{ text: 'Quickstart', link: '/quickstart' },
|
|
20
21
|
{ text: 'FAQ', link: '/faq' }
|
|
21
22
|
]
|
|
22
23
|
},
|
|
24
|
+
{
|
|
25
|
+
text: 'Case Studies & Playbooks',
|
|
26
|
+
items: [
|
|
27
|
+
{ text: 'Case Studies Gallery', link: '/case-studies/' },
|
|
28
|
+
{ text: 'Next.js SaaS Full-Stack', link: '/case-studies/nextjs-saas' },
|
|
29
|
+
{ text: 'WordPress Theme & Plugins', link: '/case-studies/wordpress-site' },
|
|
30
|
+
{ text: 'E-Commerce State webhooks', link: '/case-studies/ecommerce-store' },
|
|
31
|
+
{ text: 'SEO Landing Page Performance', link: '/case-studies/seo-landing-page' },
|
|
32
|
+
{ text: 'Multi-Model Handoff Protocols', link: '/case-studies/multimodel-handoff' }
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
text: 'Adoption & Optimization',
|
|
37
|
+
items: [
|
|
38
|
+
{ text: 'Cost Optimization Playbook', link: '/cost-optimization' },
|
|
39
|
+
{ text: '5-Day Adoption Roadmap', link: '/5-day-roadmap' }
|
|
40
|
+
]
|
|
41
|
+
},
|
|
23
42
|
{
|
|
24
43
|
text: 'Core Features',
|
|
25
44
|
items: [
|
|
@@ -33,6 +52,7 @@ export default {
|
|
|
33
52
|
text: 'Templates & Use Cases',
|
|
34
53
|
items: [
|
|
35
54
|
{ text: 'Template Gallery', link: '/templates/' },
|
|
55
|
+
{ text: 'Before/After Workflows', link: '/workflow-examples' },
|
|
36
56
|
{ text: 'Use Cases Guide', link: '/use-cases' },
|
|
37
57
|
{ text: 'Templates Architecture', link: '/templates-guide' }
|
|
38
58
|
]
|
|
@@ -40,6 +60,8 @@ export default {
|
|
|
40
60
|
{
|
|
41
61
|
text: 'Operations & Publishing',
|
|
42
62
|
items: [
|
|
63
|
+
{ text: 'Public Launch Checklist', link: '/launch-checklist' },
|
|
64
|
+
{ text: 'Release Playbook Template', link: '/release-template' },
|
|
43
65
|
{ text: 'CLI Roadmap', link: '/cli-roadmap' },
|
|
44
66
|
{ text: 'NPM Publishing Runbook', link: '/npm-publishing' },
|
|
45
67
|
{ text: 'Pre-flight Release Testing', link: '/testing-v0.2' }
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# 5-Day AI Dev OS Adoption Roadmap
|
|
2
|
+
|
|
3
|
+
Getting engineering teams aligned under a shared, zero-drift AI configuration doesn't require sweeping repository changes. This tool-neutral, step-by-step roadmap outlines how to fully integrate `multimodel-dev-os` within a business week.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Horizontal Milestones
|
|
8
|
+
|
|
9
|
+
The timeline maps the progress from a fresh install to automated pull request verifications:
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
### Day 1: Install & Scaffold (Scaffold the CLI)
|
|
16
|
+
- **Objective:** Deploy the zero-dependency CLI scaffolding pipeline.
|
|
17
|
+
- **Tasks:**
|
|
18
|
+
1. Initialize the shared directories and central core files:
|
|
19
|
+
```bash
|
|
20
|
+
npx multimodel-dev-os@latest init
|
|
21
|
+
```
|
|
22
|
+
2. Confirm that target folders (`.ai/context`, `.ai/skills`, `.ai/session-logs`) exist.
|
|
23
|
+
3. Run a dry-run check to verify setup constraints:
|
|
24
|
+
```bash
|
|
25
|
+
npx multimodel-dev-os@latest init --dry-run
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
### Day 2: Fill Project Memory (Core Workspace Contracts)
|
|
31
|
+
- **Objective:** Author the central single source of truth files.
|
|
32
|
+
- **Tasks:**
|
|
33
|
+
1. Edit [AGENTS.md](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/AGENTS.md) — detail your project overview, technology stack, build commands, and strict directory boundaries (`no-touch` blocks).
|
|
34
|
+
2. Edit [MEMORY.md](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/MEMORY.md) — log architectural decisions, third-party credentials rules, and project milestones.
|
|
35
|
+
3. Verify file placement is correct inside the root folder.
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
### Day 3: Configure Skills & Checks (Custom Prompt Packs)
|
|
40
|
+
- **Objective:** Assemble reusable instructions for common development routines.
|
|
41
|
+
- **Tasks:**
|
|
42
|
+
1. Author specific command workflows inside [.ai/skills/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/skills/) (e.g. database setup scripts, feature-specific build guidelines).
|
|
43
|
+
2. Define validation constraints in [.ai/checks/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/checks/) (e.g. regression checks, test coverage parameters).
|
|
44
|
+
3. Edit [.ai/prompts/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/prompts/) to establish output formatting expectations.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
### Day 4: Mount Adapters & Handoff Logs (Sync Environments)
|
|
49
|
+
- **Objective:** Synchronize the central rules with IDE settings and terminal agents.
|
|
50
|
+
- **Tasks:**
|
|
51
|
+
1. Map adapters using the CLI command:
|
|
52
|
+
```bash
|
|
53
|
+
npx multimodel-dev-os@latest init --adapter cursor --adapter claude --adapter vscode
|
|
54
|
+
```
|
|
55
|
+
2. Confirm that `.cursorrules`, `CLAUDE.md`, and `.vscode/settings.json` mirror the central instructions properly.
|
|
56
|
+
3. Execute a local hand-off by creating a session log template inside `.ai/session-logs/` to pass context between agents.
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
### Day 5: Run Audits & Foster Team Reuse (Compliance & CI/CD)
|
|
61
|
+
- **Objective:** Guard workspace structure health and enforce linter checkups.
|
|
62
|
+
- **Tasks:**
|
|
63
|
+
1. Run the local structure verification:
|
|
64
|
+
```bash
|
|
65
|
+
npx multimodel-dev-os validate
|
|
66
|
+
```
|
|
67
|
+
2. Add validation gates to pre-commit hooks or CI workflows (e.g. `.github/workflows/verify.yml`).
|
|
68
|
+
3. Run diagnostic checkups using the `doctor` command:
|
|
69
|
+
```bash
|
|
70
|
+
npx multimodel-dev-os doctor
|
|
71
|
+
```
|
|
72
|
+
4. Educate the engineering team on executing validations before pushing code blocks.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Case Study: E-Commerce Webhook State Synchronization
|
|
2
|
+
|
|
3
|
+
An educational case study detailing how a developers team aligned payment routes and webhook verification logic.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. The Problem
|
|
8
|
+
When building checkout systems, coding assistants frequently drift on webhook logic, suggesting outdated payload validation parameters or configuring incorrect endpoints. The team needed to keep payment verification states aligned between their command-line assistants and local editors.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## 2. Old Workflow
|
|
13
|
+
1. The developer modified checkout status logic inside database models.
|
|
14
|
+
2. Autocomplete and terminal models suggested mismatched verification functions because they were reading from conflicting local cache guides.
|
|
15
|
+
3. Webhook calls failed with signature errors, requiring tedious manual logging and debugging.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 3. MultiModel Dev OS Setup
|
|
20
|
+
- The team configured checkout specifications inside [.ai/context/architecture.md](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/context/architecture.md).
|
|
21
|
+
- Reusable webhook verifications were detailed inside `.ai/skills/webhook-handler.md`.
|
|
22
|
+
- Strict pre-implementation checks were enforced using standard pre-commit scripts.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## 4. Files & Subcommands Used
|
|
27
|
+
- **Core Files:** `AGENTS.md`, `.ai/context/architecture.md`, `.ai/skills/webhook-handler.md`, `.ai/checks/pre-commit.md`
|
|
28
|
+
- **CLI Commands:**
|
|
29
|
+
```bash
|
|
30
|
+
# Initialize standard e-commerce configuration rules
|
|
31
|
+
npx multimodel-dev-os init --template ecommerce-store
|
|
32
|
+
|
|
33
|
+
# Audit structure health
|
|
34
|
+
npx multimodel-dev-os validate
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## 5. Outcome & Results
|
|
40
|
+
- **Pragmatic State Alignment:** Both CLI models and local autocompletes utilized matching validation schemas, preventing webhook signature bugs.
|
|
41
|
+
- **Improved Code Quality:** Pre-commit assertions prevented broken status variables from being checked into staging environments.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 6. Reusable Design Pattern
|
|
46
|
+
**Modular Architecture Briefing:** Segregate checkout flows and webhook architectures into isolated, read-only context files to provide agents with a pristine state definition without overloading the token window.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Real-World Case Studies
|
|
2
|
+
|
|
3
|
+
Explore how engineering teams and developers leverage `multimodel-dev-os` to prevent instruction drift, secure workspace boundaries, and save significant LLM token context budgets.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## The Case Studies Gallery
|
|
8
|
+
|
|
9
|
+
Select a case study to see specific problems, setups, commands, outcomes, and reusable design patterns:
|
|
10
|
+
|
|
11
|
+
### 1. [Full-Stack Next.js SaaS](nextjs-saas.md)
|
|
12
|
+
*Solving schema sync and inline autocompletion shifts across full-stack applications.*
|
|
13
|
+
|
|
14
|
+
### 2. [WordPress Theme & Plugin Development](wordpress-site.md)
|
|
15
|
+
*Securing PHP coding style conventions and folder overrides during local scaffolding.*
|
|
16
|
+
|
|
17
|
+
### 3. [E-Commerce Webhooks & State Tracking](ecommerce-store.md)
|
|
18
|
+
*Keeping payment routes and database event states strictly aligned between terminal-based models and editors.*
|
|
19
|
+
|
|
20
|
+
### 4. [SEO Landing Page Audits](seo-landing-page.md)
|
|
21
|
+
*Managing multiple automated performance linter audits and SEO checkups.*
|
|
22
|
+
|
|
23
|
+
### 5. [Multi-Model Handoff Protocols](multimodel-handoff.md)
|
|
24
|
+
*Structuring sequential session logs to pass context between Claude Code and Gemini with zero token drops.*
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Case Study: Multi-Model Handoff Protocols
|
|
2
|
+
|
|
3
|
+
An educational case study detailing how a developers team executed sequential session logs to hand off tasks between Claude Code and Gemini with zero token drops.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. The Problem
|
|
8
|
+
Developers frequently switch between terminal assistants (Claude Code) to run builds and large-scale auditors (Gemini / Antigravity) to perform security audits. When switching tools, the next assistant lacks the historical context of what has already been attempted, leading to redundant commands, wasted API cycles, and lost time.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## 2. Old Workflow
|
|
13
|
+
1. The developer ran several build scripts with Claude Code.
|
|
14
|
+
2. The developer launched Gemini to audit the results.
|
|
15
|
+
3. Gemini, unaware of Claude's execution logs, recommended repeating the exact same steps, leading to wasted token spending and frustration.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 3. MultiModel Dev OS Setup
|
|
20
|
+
- The team deployed standard session logs under [.ai/session-logs/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/session-logs/).
|
|
21
|
+
- Handoff checklists were configured inside `.ai/prompts/handoff-to-next-model.md`.
|
|
22
|
+
- Structured summaries mapped exact code diffs and validation logs.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## 4. Files & Subcommands Used
|
|
27
|
+
- **Core Files:** `AGENTS.md`, `.ai/prompts/handoff-to-next-model.md`, `.ai/session-logs/README.md`, `.ai/templates/session-log-template.md`
|
|
28
|
+
- **CLI Commands:**
|
|
29
|
+
```bash
|
|
30
|
+
# Initialize general template configuration
|
|
31
|
+
npx multimodel-dev-os init --template general-app
|
|
32
|
+
|
|
33
|
+
# Audit structure health
|
|
34
|
+
npx multimodel-dev-os validate
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## 5. Outcome & Results
|
|
40
|
+
- **Pragmatic Handoffs:** Claude Code automatically generated a session log summary before shutdown. Gemini parsed this log instantly on startup, executing audits without asking redundant setup questions.
|
|
41
|
+
- **Improved developer speed:** Reduced developer setup re-explanations completely, saving significant token overhead.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 6. Reusable Design Pattern
|
|
46
|
+
**Sequential Session Logging:** Always establish a standardized hand-off protocol where terminal-based models log their progress using unified templates, enabling follow-up agents to pick up work instantly with zero context loss.
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Case Study: Next.js SaaS Full-Stack Autocomplete
|
|
2
|
+
|
|
3
|
+
An educational case study detailing how a SaaS engineering team synchronized database schemas and UI autocompletions across Cursor and Claude Code.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. The Problem
|
|
8
|
+
The team switched frequently between a command-line assistant (Claude Code) to perform database migrations and local editors (Cursor) to write UI forms. When a database model schema was updated inside Prisma, Cursor's inline autocompletions remained unaware of the changes. The model suggested legacy fields, generating syntax errors and broken API queries that required constant copy-pasting to sync.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## 2. Old Workflow
|
|
13
|
+
1. The developer updated `schema.prisma`.
|
|
14
|
+
2. Claude Code executed migration commands and was aware of the new fields.
|
|
15
|
+
3. Cursor (.cursorrules) remained completely unmodified.
|
|
16
|
+
4. Inline completion generated compiler errors. The developer copy-pasted compile errors back to the model to resolve the discrepancies, losing significant token budget.
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## 3. MultiModel Dev OS Setup
|
|
21
|
+
The team decoupled rules from tool-specific prompt configurations by defining a single centralized root contract:
|
|
22
|
+
- Root contract [AGENTS.md](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/AGENTS.md) tracked database frameworks and style guides.
|
|
23
|
+
- Adapters for Claude and Cursor mapped these specifications instantly.
|
|
24
|
+
- Caveman Mode was toggled on during UI-focused sprints to save context token footprints.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## 4. Files & Subcommands Used
|
|
29
|
+
- **Core Files:** `AGENTS.md`, `MEMORY.md`, `.ai/config.yaml`, `/adapters/cursor/.cursorrules`, `/adapters/claude/CLAUDE.md`
|
|
30
|
+
- **CLI Commands:**
|
|
31
|
+
```bash
|
|
32
|
+
# Initialize nextjs-saas stack config and enabled adapters
|
|
33
|
+
npx multimodel-dev-os init --template nextjs-saas --adapter cursor --adapter claude
|
|
34
|
+
|
|
35
|
+
# Audit structure health
|
|
36
|
+
npx multimodel-dev-os validate
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 5. Outcome & Results
|
|
42
|
+
- **Zero Instruction Drift:** Any change committed to the root `AGENTS.md` was instantly mirrored in both `.cursorrules` and `CLAUDE.md`.
|
|
43
|
+
- **Token Optimization:** Slashed input rules footprint from `~1,600 tokens` down to `~340 tokens` during UI completions under Caveman Mode, representing **~79% savings in context API billing**.
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 6. Reusable Design Pattern
|
|
48
|
+
**Decoupled Schema Mapping:** Always store database and framework constraints in a singular root contract, and deploy lightweight automated adapters to translate those rules dynamically to terminal assistants and autocomplete editors.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Case Study: SEO Landing Page Audit Quality Gates
|
|
2
|
+
|
|
3
|
+
An educational case study detailing how a marketing agency managed automated performance linter audits and SEO compliance checks.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. The Problem
|
|
8
|
+
When developing marketing landing pages, developers switched frequently between editors to write CSS and assistants to optimize metadata. Assistants often recommended bulky third-party tracking scripts or ignored Core Web Vitals targets, causing page load speeds to drop below acceptable criteria.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## 2. Old Workflow
|
|
13
|
+
1. The developer prompted the model to add promotional sections.
|
|
14
|
+
2. The assistant, unaware of style guides or speed budgets, suggested large image assets and unoptimized JS scripts.
|
|
15
|
+
3. Page performance dropped, requiring manual optimization and auditing cycles.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 3. MultiModel Dev OS Setup
|
|
20
|
+
- The team configured speed budgets inside [.ai/context/seo-rules.md](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/context/seo-rules.md).
|
|
21
|
+
- Reusable audit routines were defined inside `.ai/skills/seo-audit.md`.
|
|
22
|
+
- Strict pre-deploy compliance verifications were configured in the checks folder.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## 4. Files & Subcommands Used
|
|
27
|
+
- **Core Files:** `AGENTS.md`, `.ai/context/seo-rules.md`, `.ai/skills/seo-audit.md`, `.ai/checks/pre-deploy.md`
|
|
28
|
+
- **CLI Commands:**
|
|
29
|
+
```bash
|
|
30
|
+
# Scaffold SEO template configurations
|
|
31
|
+
npx multimodel-dev-os init --template seo-landing-page
|
|
32
|
+
|
|
33
|
+
# Audit structure health
|
|
34
|
+
npx multimodel-dev-os validate
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## 5. Outcome & Results
|
|
40
|
+
- **Pragmatic Speed Compliance:** Assistants strictly followed Core Web Vitals rules, suggesting optimized images and inline styling instead of bulky scripts.
|
|
41
|
+
- **Improved Performance:** Initial page load speed remained high with zero manual auditing overhead.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 6. Reusable Design Pattern
|
|
46
|
+
**Metadata Quality Budgets:** Always store performance budgets and SEO criteria in a modular rules file to force coding models to optimize assets dynamically before writing scripts.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Case Study: WordPress Theme & Plugin Scaffolding
|
|
2
|
+
|
|
3
|
+
An educational case study detailing how a development agency maintained strict PHP coding style conventions and folder boundaries.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. The Problem
|
|
8
|
+
When developing themes and plugins inside a WordPress directory, coding assistants frequently poll the wrong directories, write test functions inside root assets, or suggest incorrect hooks. The agency needed to enforce strict directory limits so that models wouldn't touch core WordPress configurations (`wp-admin`, `wp-includes`, `wp-config.php`).
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## 2. Old Workflow
|
|
13
|
+
1. The developer prompted the model to generate a custom plugin.
|
|
14
|
+
2. The assistant, unaware of workspace limits, edited files directly in the root directory.
|
|
15
|
+
3. Git status got polluted, and the developer had to manually revert the changes and re-explain theme folder hierarchies.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 3. MultiModel Dev OS Setup
|
|
20
|
+
The agency defined boundaries inside [AGENTS.md](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/AGENTS.md):
|
|
21
|
+
- Explicit `no-touch` paths listed `/wp-admin/`, `/wp-includes/`, and `wp-config.php`.
|
|
22
|
+
- Centralized custom routines inside `.ai/skills/plugin-boilerplate.md` to guide quick plugin scaffolds.
|
|
23
|
+
- The advisory checkup `doctor` warned developers if local build caches compiled inside theme assets.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## 4. Files & Subcommands Used
|
|
28
|
+
- **Core Files:** `AGENTS.md`, `MEMORY.md`, `.ai/skills/plugin-boilerplate.md`, `.ai/config.yaml`
|
|
29
|
+
- **CLI Commands:**
|
|
30
|
+
```bash
|
|
31
|
+
# Scaffold standard WordPress development configuration
|
|
32
|
+
npx multimodel-dev-os init --template wordpress-site
|
|
33
|
+
|
|
34
|
+
# Audit environment boundaries and check gitignore ignores
|
|
35
|
+
npx multimodel-dev-os doctor
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## 5. Outcome & Results
|
|
41
|
+
- **Pristine Workspace Boundaries:** AI assistants strictly followed the defined `no-touch` patterns and generated code blocks only within `/wp-content/themes/` and `/wp-content/plugins/` subfolders.
|
|
42
|
+
- **Improved Scaffolding Speed:** Zero false starts or directory pollution, cutting local manual revisions completely.
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## 6. Reusable Design Pattern
|
|
47
|
+
**Strict Context Bounds:** Always define directory boundaries explicitly at the root level so that coding agents do not index or modify core engine files.
|
package/docs/comparison.md
CHANGED
|
@@ -12,6 +12,7 @@ Selecting how to manage AI instructions inside a codebase significantly impacts
|
|
|
12
12
|
| **Structural Segregation** | Flat single-file instructions (easily cluttered) | Disorganized configs | **Concise modular directories** (Context, Skills, Prompts, Checks) |
|
|
13
13
|
| **CI/CD Quality Gates** | None (no structural safety checks) | None | **Verify subcommand** (`npm run verify` protects standard formats) |
|
|
14
14
|
| **Standardized Hand-offs** | Manual human explanations | Manual human explanations | **Sequential hand-off protocol** with structured session logs |
|
|
15
|
+
| **Cost Playbook Alignment** | None | None | **12 Playbook mappings** (RAG scoping, batching, caching) |
|
|
15
16
|
|
|
16
17
|
---
|
|
17
18
|
|
|
@@ -19,15 +20,15 @@ Selecting how to manage AI instructions inside a codebase significantly impacts
|
|
|
19
20
|
|
|
20
21
|
### 1. The DIY Approach (AGENTS.md Only)
|
|
21
22
|
Many developers start by dropping a single `AGENTS.md` file in their root. While better than nothing, this approach quickly breaks down:
|
|
22
|
-
|
|
23
|
-
|
|
23
|
+
- **Drift:** You modify a build command in `AGENTS.md`, but forget to update Cursor's `.cursorrules`. Cursor continues running the old build script, causing confusing errors.
|
|
24
|
+
- **Clutter:** A single markdown file gets bloated with styling guidelines, deployment procedures, and troubleshooting steps. Soon, the AI spends 10,000 tokens just reading instructions on every turn.
|
|
24
25
|
|
|
25
26
|
### 2. Tool-Specific Prompt Packs
|
|
26
27
|
Using tools like `Cursorrules` websites or Claude Code presets locks your project configuration into one vendor's ecosystem:
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
- **Vendor Lock:** If your team uses Cursor for coding and Claude Code for debugging, you must duplicate and manually translate the syntax for both tools.
|
|
29
|
+
- **No Collaboration:** Co-workers using different IDEs or terminal utilities cannot benefit from the unified context.
|
|
29
30
|
|
|
30
31
|
### 3. MultiModel Dev OS
|
|
31
32
|
`multimodel-dev-os` establishes a lightweight, vendor-neutral layer that decouples your project's rules from specific tools:
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
- **Translate once, read everywhere:** You write build parameters once in the root. The CLI and adapters expose these configurations cleanly to Cursor, Claude, Antigravity, VS Code, and Codex.
|
|
34
|
+
- **Continuous Integration:** You can add `multimodel-dev-os verify` to your CI pipeline or pre-commit hooks to guarantee that all developers share healthy, correctly-formatted AI configurations.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# LLM Cost & Context Optimization Playbook
|
|
2
|
+
|
|
3
|
+
Maximizing developer velocity while minimizing LLM prompt overhead and API billing budgets is a critical priority for engineering teams. This playbook maps 12 industry cost-reduction techniques directly to native `multimodel-dev-os` features.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Cost Optimization Matrix
|
|
8
|
+
|
|
9
|
+
Below is how the 12 core context optimization strategies are implemented inside the workspace configuration layer:
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
### 1. Choose the Right Model
|
|
16
|
+
- **The Strategy:** Deploying premium large models (e.g. Claude 3.5 Sonnet, GPT-4o) only for high-reasoning tasks and lightweight models for simple code syntax editing.
|
|
17
|
+
- **Dev OS Implementation:** [model-map.md](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/context/model-map.md) stores clear instructions routing Planner, Auditor, and Scaffolder tasks to their ideal cost-efficient models.
|
|
18
|
+
|
|
19
|
+
### 2. Reduce Input Tokens
|
|
20
|
+
- **The Strategy:** Avoid feeding massive developer rule guides, legacy wikis, or detailed style manuals on simple prompt turns.
|
|
21
|
+
- **Dev OS Implementation:** Toggling **Caveman Mode** (`--caveman`) strips descriptive descriptions and examples to slash prompt rules down to **~340 tokens (saving ~79% of input token context)**. The central [context-budget.md](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/context/context-budget.md) details guidelines on context sizes.
|
|
22
|
+
|
|
23
|
+
### 3. Limit Output Tokens
|
|
24
|
+
- **The Strategy:** Prevent models from generating verbose paragraphs, chatty conversational explanations, or redundant code structures.
|
|
25
|
+
- **Dev OS Implementation:** Decoupled prompt guidelines inside [.ai/prompts/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/prompts/) enforce strict prompt output contracts (e.g. "Only output the code diff, no chat").
|
|
26
|
+
|
|
27
|
+
### 4. Leverage Prompt Caching
|
|
28
|
+
- **The Strategy:** Structure system prompts and context buffers to match the exact patterns that cloud providers (like Anthropic, OpenAI) require for prompt caching.
|
|
29
|
+
- **Dev OS Implementation:** Shared workspace session logs under [.ai/session-logs/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/session-logs/) provide reusable, static summaries at the bottom of the prompt buffer to maximize caching hits.
|
|
30
|
+
|
|
31
|
+
### 5. RAG Done Right (Directory Scoping)
|
|
32
|
+
- **The Strategy:** Never feed an entire codebase to the prompt turn; instead, scope read inputs precisely.
|
|
33
|
+
- **Dev OS Implementation:** Modular files within [.ai/context/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/context/) break repository information into isolated briefs (project-brief, architecture, business-rules), allowing agents to load only required profiles.
|
|
34
|
+
|
|
35
|
+
### 6. Batch Requests
|
|
36
|
+
- **The Strategy:** Group simple micro-features into single comprehensive execution runs instead of engaging in iterative 3-word conversations.
|
|
37
|
+
- **Dev OS Implementation:** Centralized backlog tracking in [TASKS.md](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/TASKS.md) structures todo steps so agents can batch scaffold logical units in one message turn.
|
|
38
|
+
|
|
39
|
+
### 7. Enforce Structured Outputs
|
|
40
|
+
- **The Strategy:** Enforce strict parameters to avoid wasting model cycles guessing standard format definitions.
|
|
41
|
+
- **Dev OS Implementation:** Structured template outlines in [.ai/templates/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/templates/) and strict check contracts inside [.ai/checks/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/checks/) guarantee predictable code blocks on the first attempt.
|
|
42
|
+
|
|
43
|
+
### 8. Prompt and Skill Reuse
|
|
44
|
+
- **The Strategy:** Standardize system prompts and tool commands so developers aren't authoring customized instructions from scratch.
|
|
45
|
+
- **Dev OS Implementation:** Reusable routines under [.ai/prompts/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/prompts/) and custom agent scripts under [.ai/skills/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/skills/) form a shared, plug-and-play prompt library.
|
|
46
|
+
|
|
47
|
+
### 9. Multi-Step Pipelines (Planner/Coder/Reviewer)
|
|
48
|
+
- **The Strategy:** Split high-reasoning tasks from execution runs to avoid loading massive rules files during iterative code writes.
|
|
49
|
+
- **Dev OS Implementation:** Isolated agent specs inside [.ai/agents/](file:///c:/Users/ADMIN/OneDrive/Desktop/multimodel-dev-os/.ai/agents/) deploy a two-step approach where a Planner agent outlines changes, and a Coder agent writes the diff.
|
|
50
|
+
|
|
51
|
+
### 10. Monitor Usage & Auditing
|
|
52
|
+
- **The Strategy:** Continuously verify that developers' rules aren't getting cluttered or exceeding token limits.
|
|
53
|
+
- **Dev OS Implementation:** Compliance assertions using `npx multimodel-dev-os validate` and advisory checkups using `doctor` warn teams when context files grow too bloated.
|
|
54
|
+
|
|
55
|
+
### 11. Multi-Provider Strategy
|
|
56
|
+
- **The Strategy:** Prevent vendor-lock by designing adapters to translate instructions dynamically across different LLMs.
|
|
57
|
+
- **Dev OS Implementation:** Neutral mappings configured inside `model-map.md` allow switching model endpoints instantly without refactoring the central repository contracts.
|
|
58
|
+
|
|
59
|
+
### 12. Embedding Hygiene
|
|
60
|
+
- **The Strategy:** Ensure semantic search indexes only relevant source files instead of temporary distributions.
|
|
61
|
+
- **Dev OS Implementation:** Strict routing specifications mapped inside `context-routing.md` and pre-configured `.gitignore` definitions protect search databases from index pollution.
|