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
package/docs/demo.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Interactive CLI & Terminal Demo
|
|
2
|
+
|
|
3
|
+
Experience the clean scaffolding pipeline and zero-dependency commands of `multimodel-dev-os` right from your terminal.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Visual Initialization Pipeline
|
|
8
|
+
|
|
9
|
+
Here is how the automatic bootstrapping pipeline looks when initializing a project with a template:
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Under the Hood: CLI Commands
|
|
16
|
+
|
|
17
|
+
`multimodel-dev-os` is built entirely on native Node.js libraries, keeping execution lightning-fast with **zero third-party runtime dependencies**.
|
|
18
|
+
|
|
19
|
+
### 1. The `init` Scaffolding Engine
|
|
20
|
+
|
|
21
|
+
Bootstraps the shared workspace contract files and target directory setups.
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
# Global zero-install setup
|
|
25
|
+
npx multimodel-dev-os@latest init
|
|
26
|
+
|
|
27
|
+
# Scaffold a specific technology stack template and set up adapter status automatically
|
|
28
|
+
npx multimodel-dev-os@latest init --template nextjs-saas --adapter cursor --adapter claude
|
|
29
|
+
|
|
30
|
+
# Run a dry-run preview to verify planned file actions without modifying the disk
|
|
31
|
+
npx multimodel-dev-os@latest init --dry-run
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
#### Core Scaffolding Activities:
|
|
35
|
+
- **Directory Guarantee:** Assures target paths (`.ai/context`, `.ai/skills`, `.ai/session-logs`) exist.
|
|
36
|
+
- **Contract Scaffold:** Creates the root source-of-truth instructions (`AGENTS.md`, `MEMORY.md`, `TASKS.md`, `RUNBOOK.md`).
|
|
37
|
+
- **Adapter Linking:** Translates and copies rule files (like `.cursorrules`, `CLAUDE.md`, or `.vscode/`) directly to your workspace root.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
### 2. The `templates` Gallery Inspector
|
|
42
|
+
|
|
43
|
+
Allows developers to view, inspect, and choose real-world configuration templates.
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
# List all pre-configured stack templates
|
|
47
|
+
npx multimodel-dev-os templates
|
|
48
|
+
|
|
49
|
+
# Display detailed configuration rules and files of a specific template
|
|
50
|
+
npx multimodel-dev-os show-template nextjs-saas
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
### 3. The `validate` Quality Gate
|
|
56
|
+
|
|
57
|
+
Enforce strict formatting conventions inside your repository before checking in code:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
# Strict directory schema and file validation checkup
|
|
61
|
+
npx multimodel-dev-os validate
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
If any core agent file (`AGENTS.md`, `MEMORY.md`) is missing or is structurally invalid, the CLI exits with non-zero exit codes to fail pull requests or pre-commit hooks, guarding workspace health.
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
### 4. The `doctor` Advisory Inspector
|
|
69
|
+
|
|
70
|
+
An advisory checkup to diagnose environment compatibility issues:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
# Diagnostic audit of gitignore rules and IDE adapter overrides
|
|
74
|
+
npx multimodel-dev-os doctor
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
The doctor warns you if:
|
|
78
|
+
- IDE cache directories (like `node_modules` or `.vitepress/dist`) are not listed in your `.gitignore` file.
|
|
79
|
+
- Enabled adapter configurations inside `.ai/config.yaml` lack corresponding physical rule files on the disk.
|
package/docs/index.md
CHANGED
|
@@ -13,8 +13,14 @@ hero:
|
|
|
13
13
|
text: Get Started Quick
|
|
14
14
|
link: /quickstart
|
|
15
15
|
- theme: alt
|
|
16
|
-
text: View
|
|
17
|
-
link: /
|
|
16
|
+
text: View Case Studies
|
|
17
|
+
link: /case-studies/
|
|
18
|
+
- theme: alt
|
|
19
|
+
text: Cost Playbook
|
|
20
|
+
link: /cost-optimization
|
|
21
|
+
- theme: alt
|
|
22
|
+
text: 5-Day Roadmap
|
|
23
|
+
link: /5-day-roadmap
|
|
18
24
|
- theme: alt
|
|
19
25
|
text: View on GitHub
|
|
20
26
|
link: https://github.com/rizvee/multimodel-dev-os
|
|
@@ -28,23 +34,35 @@ features:
|
|
|
28
34
|
details: Includes Caveman Mode to slash model context footprint by ~79%, saving massive API bill budgets.
|
|
29
35
|
- icon: 🛡️
|
|
30
36
|
title: Local Quality Gates
|
|
31
|
-
details:
|
|
37
|
+
details: Built-in zero-dependency validate and doctor checkups ensure pristine workspace rules layout.
|
|
32
38
|
---
|
|
33
39
|
|
|
34
40
|
<style>
|
|
35
41
|
:root {
|
|
36
42
|
--vp-home-hero-name-color: transparent;
|
|
37
|
-
--vp-home-hero-name-background: linear-gradient(135deg, #
|
|
43
|
+
--vp-home-hero-name-background: linear-gradient(135deg, #6366f1 0%, #10b981 100%);
|
|
38
44
|
}
|
|
39
45
|
</style>
|
|
40
46
|
|
|
41
|
-
##
|
|
47
|
+
## Cost & Context Optimization
|
|
48
|
+
|
|
49
|
+
Minimize prompt overhead and API billing by mapping key context-reduction techniques to MultiModel Dev OS features:
|
|
42
50
|
|
|
43
|
-
|
|
51
|
+
<p align="center">
|
|
52
|
+
<img src="/assets/cost-optimization.svg" alt="Cost Optimization Funnel" width="100%">
|
|
53
|
+
</p>
|
|
54
|
+
|
|
55
|
+
---
|
|
44
56
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
57
|
+
## 5-Day Adoption Roadmap
|
|
58
|
+
|
|
59
|
+
Deploying MultiModel Dev OS across your team is straightforward and tool-neutral:
|
|
60
|
+
|
|
61
|
+
<p align="center">
|
|
62
|
+
<img src="/assets/ai-dev-os-roadmap.svg" alt="5-Day Adoption Roadmap" width="100%">
|
|
63
|
+
</p>
|
|
64
|
+
|
|
65
|
+
---
|
|
48
66
|
|
|
49
67
|
## Why MultiModel Dev OS?
|
|
50
68
|
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Public Launch Checklist
|
|
2
|
+
|
|
3
|
+
A complete list of operational and promotional gates to successfully deploy and publicize `multimodel-dev-os` to the global developer ecosystem.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. GitHub Launch Checklist
|
|
8
|
+
|
|
9
|
+
Ensure the repository is clean, communicative, and ready for public forks/stars:
|
|
10
|
+
- [ ] **Community Standards Audit:** Confirm root files `LICENSE` (MIT), `CONTRIBUTING.md`, `CODE_OF_CONDUCT.md`, and `SECURITY.md` are present and correctly formatted.
|
|
11
|
+
- [ ] **GitHub Workflows Pass:** Validate that the `.github/workflows/verify.yml` actions run successfully on push events.
|
|
12
|
+
- [ ] **Community Engagement CTAs:** Confirm standard issue templates exist inside `.github/ISSUE_TEMPLATE/` to guide bug reporting and feature additions.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## 2. NPM Verification Checklist
|
|
17
|
+
|
|
18
|
+
Assure packaging hygiene before executing npm publishes:
|
|
19
|
+
- [ ] **Technical Structure Verify:** Run the cross-platform structural verifier:
|
|
20
|
+
```bash
|
|
21
|
+
npm run verify
|
|
22
|
+
```
|
|
23
|
+
Ensure all 102 target assertions return successful passes.
|
|
24
|
+
- [ ] **Dynamic Manifest Sync:** Assert that the dynamic version in `package.json` matches exactly across the CHANGELOG.md and installer scripts.
|
|
25
|
+
- [ ] **NPM Pack Audit:** Run the packaging dry-run:
|
|
26
|
+
```bash
|
|
27
|
+
npm pack --dry-run
|
|
28
|
+
```
|
|
29
|
+
Confirm that the output tarball size is under `~65kB`, the unpacked file size is under `~200kB`, and compiled docs caches (`docs/.vitepress/dist`, `docs/.vitepress/cache`) are completely ignored.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## 3. Docs Site Checklist
|
|
34
|
+
|
|
35
|
+
Verify documentation site integrity before public indexing:
|
|
36
|
+
- [ ] **VitePress Compile:** Run `npm run docs:build` and confirm that Rollup completes client and server bundle compilation successfully.
|
|
37
|
+
- [ ] **Asset Resolution:** Verify that all SVGs (terminal-demo, social-preview, architecture-preview) compile seamlessly and display correctly inside docs pages.
|
|
38
|
+
- [ ] **Pages Navigation:** Click all navigation sidebars, navbar tabs, and footer links under the hosted root `/multimodel-dev-os/` path to confirm zero broken links.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## 4. Social Launch Checklist
|
|
43
|
+
|
|
44
|
+
Prepare the phase-by-phase promotional campaigns to maximize engagement:
|
|
45
|
+
- [ ] **Product Hunt Staging:** Prepare high-end media cards (`social-preview.svg`) and draft the first-comment outline explaining our zero-dependency context layer.
|
|
46
|
+
- [ ] **Hacker News Submission:** Format the direct developer pitch under a clean Show HN title: `Show HN: MultiModel Dev OS — A portable .editorconfig for your AI coding agents`.
|
|
47
|
+
- [ ] **Reddit Outreach:** Select relevant communities (`/r/webdev`, `/r/node`, `/r/LocalLLaMA`) and schedule clear announcements addressing instruction drift.
|
package/docs/launch-kit.md
CHANGED
|
@@ -1,99 +1,81 @@
|
|
|
1
1
|
# Public Launch & Social Sharing Kit
|
|
2
2
|
|
|
3
|
-
|
|
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.
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
## 1. Product Hunt
|
|
8
|
-
|
|
9
|
-
|
|
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.
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
-
## 2.
|
|
14
|
-
* **Short Description:** Portable, vendor-neutral project configuration and CLI tool for AI coding agents. Think `.editorconfig` but optimized for LLMs, Cursor, Claude Code, and VS Code.
|
|
15
|
-
* **Topics/Keywords:** `ai-dev-os`, `multi-agent`, `ai-coding`, `developer-tools`, `cursorrules`, `claude-code`, `antigravity`
|
|
13
|
+
## 2. X / Twitter Campaign (The Focus: Token Cost Savings)
|
|
16
14
|
|
|
17
|
-
---
|
|
18
|
-
|
|
19
|
-
## 3. X / Twitter Post (The Hook)
|
|
20
15
|
```text
|
|
21
|
-
|
|
16
|
+
AI coding is fast, but prompt token bills scale faster. 💸
|
|
22
17
|
|
|
23
|
-
|
|
18
|
+
Duplicating instructions in .cursorrules, CLAUDE.md, and system prompts drains your API token budget on every message turn.
|
|
24
19
|
|
|
25
|
-
|
|
20
|
+
Say hello to MultiModel Dev OS v0.8.0! 🧠
|
|
26
21
|
|
|
27
22
|
npx multimodel-dev-os@latest init
|
|
28
23
|
|
|
29
|
-
👉
|
|
30
|
-
👉
|
|
31
|
-
👉
|
|
32
|
-
👉
|
|
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
|
|
33
28
|
|
|
34
|
-
|
|
29
|
+
Stop wasting context. Sync and reuse your workspace memory! 🚀
|
|
30
|
+
👉 https://github.com/rizvee/multimodel-dev-os
|
|
35
31
|
#AIDev #OpenSource #SoftwareEngineering #AItools
|
|
36
32
|
```
|
|
37
33
|
|
|
38
34
|
---
|
|
39
35
|
|
|
40
|
-
##
|
|
41
|
-
```text
|
|
42
|
-
The hidden developer tax when coding with AI: Context Drift. 💸
|
|
36
|
+
## 3. LinkedIn Campaign (The Focus: Enterprise Adoption)
|
|
43
37
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
- Cursor for local autocomplete and quick edits
|
|
47
|
-
- Gemini / Antigravity for large-scale security and performance audits
|
|
48
|
-
|
|
49
|
-
But there's a problem: every tool has its own custom settings, systems, and instructions files. You modify a build command in one place, forget to update it in another, and the agent breaks on compile.
|
|
38
|
+
```text
|
|
39
|
+
The hidden tax of scaling AI inside development teams: Context Fragmentation. 💸
|
|
50
40
|
|
|
51
|
-
|
|
41
|
+
When switching between tools:
|
|
42
|
+
- Claude Code scaffolds terminal builds
|
|
43
|
+
- Cursor suggests local autocompletions
|
|
44
|
+
- Gemini/Antigravity performs codebase audits
|
|
52
45
|
|
|
53
|
-
|
|
46
|
+
If each developer maintains distinct, custom configurations, your rules drift immediately. Models break, and you waste thousands of tokens repeating basic instructions.
|
|
54
47
|
|
|
55
|
-
|
|
56
|
-
1.
|
|
57
|
-
2.
|
|
58
|
-
3.
|
|
59
|
-
4.
|
|
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.
|
|
60
53
|
|
|
61
|
-
Fully open-source,
|
|
54
|
+
Fully open-source, MIT licensed, and zero-dependency.
|
|
62
55
|
|
|
63
|
-
|
|
64
|
-
|
|
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! 👇
|
|
65
59
|
```
|
|
66
60
|
|
|
67
61
|
---
|
|
68
62
|
|
|
69
|
-
##
|
|
70
|
-
|
|
71
|
-
|
|
63
|
+
## 4. Reddit-Style Pitch (/r/LocalLLaMA, /r/webdev)
|
|
64
|
+
|
|
65
|
+
- **Title:** Show HN / Show Reddit: MultiModel Dev OS v0.8.0 — Prevent AI instruction drift and save ~79% token budget.
|
|
66
|
+
- **Content:**
|
|
72
67
|
Hey everyone,
|
|
73
68
|
|
|
74
|
-
If
|
|
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.
|
|
75
70
|
|
|
76
|
-
I built **multimodel-dev-os** to solve this. It's a
|
|
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.
|
|
77
72
|
|
|
78
|
-
###
|
|
79
|
-
* **
|
|
80
|
-
* **
|
|
81
|
-
* **
|
|
82
|
-
* **
|
|
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.
|
|
83
78
|
|
|
84
79
|
Open-source and MIT licensed. I'd love to hear your feedback on the layout structure!
|
|
85
80
|
|
|
86
81
|
GitHub: https://github.com/rizvee/multimodel-dev-os
|
|
87
|
-
|
|
88
|
-
---
|
|
89
|
-
|
|
90
|
-
## 6. Dev.to Article Outline
|
|
91
|
-
* **Title:** Stop Copy-Pasting AI Prompts: How to Build a Portable Context Layer in Your Codebase
|
|
92
|
-
* **Outline:**
|
|
93
|
-
1. **Introduction:** The multi-model developer reality (switching Cursor, Claude, Gemini).
|
|
94
|
-
2. **The Problem:** The "context synchronization tax" and rules drift.
|
|
95
|
-
3. **The Concept:** Decoupling rules from specific IDE extension configurations.
|
|
96
|
-
4. **Introducing multimodel-dev-os:** Setup in seconds using `npx multimodel-dev-os@latest init`.
|
|
97
|
-
5. **Deep Dive on Token Budgeting:** How Caveman Mode preserves structural intent while cutting token usage by ~79%.
|
|
98
|
-
6. **CI/CD Integration:** Adding `verify` commands to enforce healthy setups across team repositories.
|
|
99
|
-
7. **Conclusion & CTA:** Join the open-source project and build custom adapters.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 250" width="100%" height="100%" style="border-radius: 12px; font-family: 'Outfit', 'Inter', -apple-system, sans-serif; box-shadow: 0 20px 50px rgba(0,0,0,0.4);">
|
|
2
|
+
<defs>
|
|
3
|
+
<!-- Background Gradient -->
|
|
4
|
+
<linearGradient id="roadmapBg" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
5
|
+
<stop offset="0%" stop-color="#070a13" />
|
|
6
|
+
<stop offset="100%" stop-color="#0c101b" />
|
|
7
|
+
</linearGradient>
|
|
8
|
+
|
|
9
|
+
<!-- Roadmap Accent Line -->
|
|
10
|
+
<linearGradient id="lineGrad" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
11
|
+
<stop offset="0%" stop-color="#6366f1" />
|
|
12
|
+
<stop offset="50%" stop-color="#8b5cf6" />
|
|
13
|
+
<stop offset="100%" stop-color="#10b981" />
|
|
14
|
+
</linearGradient>
|
|
15
|
+
</defs>
|
|
16
|
+
|
|
17
|
+
<!-- Frame Background -->
|
|
18
|
+
<rect width="800" height="250" rx="12" fill="url(#roadmapBg)" stroke="#1e293b" stroke-width="1.5"/>
|
|
19
|
+
|
|
20
|
+
<!-- Title -->
|
|
21
|
+
<text x="400" y="45" font-size="20" font-weight="800" fill="#ffffff" text-anchor="middle" letter-spacing="1">5-DAY AI DEV OS ADOPTION ROADMAP</text>
|
|
22
|
+
<text x="400" y="68" font-size="13" font-weight="500" fill="#94a3b8" text-anchor="middle">Milestones to achieve structured multi-agent workflow reuse inside teams</text>
|
|
23
|
+
|
|
24
|
+
<!-- Connection Line -->
|
|
25
|
+
<line x1="80" y1="140" x2="720" y2="140" stroke="url(#lineGrad)" stroke-width="4"/>
|
|
26
|
+
|
|
27
|
+
<!-- Day 1 Node -->
|
|
28
|
+
<g transform="translate(100, 140)">
|
|
29
|
+
<circle cx="0" cy="0" r="14" fill="#6366f1" stroke="#ffffff" stroke-width="2"/>
|
|
30
|
+
<text x="0" y="30" font-size="12" font-weight="800" fill="#a5b4fc" text-anchor="middle">DAY 1</text>
|
|
31
|
+
<text x="0" y="45" font-size="11" font-weight="700" fill="#ffffff" text-anchor="middle">Scaffold CLI</text>
|
|
32
|
+
<text x="0" y="58" font-size="9" fill="#94a3b8" text-anchor="middle">npx init</text>
|
|
33
|
+
</g>
|
|
34
|
+
|
|
35
|
+
<!-- Day 2 Node -->
|
|
36
|
+
<g transform="translate(250, 140)">
|
|
37
|
+
<circle cx="0" cy="0" r="14" fill="#4f46e5" stroke="#ffffff" stroke-width="2"/>
|
|
38
|
+
<text x="0" y="30" font-size="12" font-weight="800" fill="#a5b4fc" text-anchor="middle">DAY 2</text>
|
|
39
|
+
<text x="0" y="45" font-size="11" font-weight="700" fill="#ffffff" text-anchor="middle">Project Memory</text>
|
|
40
|
+
<text x="0" y="58" font-size="9" fill="#94a3b8" text-anchor="middle">AGENTS.md core</text>
|
|
41
|
+
</g>
|
|
42
|
+
|
|
43
|
+
<!-- Day 3 Node -->
|
|
44
|
+
<g transform="translate(400, 140)">
|
|
45
|
+
<circle cx="0" cy="0" r="14" fill="#8b5cf6" stroke="#ffffff" stroke-width="2"/>
|
|
46
|
+
<text x="0" y="30" font-size="12" font-weight="800" fill="#d8b4fe" text-anchor="middle">DAY 3</text>
|
|
47
|
+
<text x="0" y="45" font-size="11" font-weight="700" fill="#ffffff" text-anchor="middle">Skills & Checks</text>
|
|
48
|
+
<text x="0" y="58" font-size="9" fill="#94a3b8" text-anchor="middle">Custom prompt packs</text>
|
|
49
|
+
</g>
|
|
50
|
+
|
|
51
|
+
<!-- Day 4 Node -->
|
|
52
|
+
<g transform="translate(550, 140)">
|
|
53
|
+
<circle cx="0" cy="0" r="14" fill="#a855f7" stroke="#ffffff" stroke-width="2"/>
|
|
54
|
+
<text x="0" y="30" font-size="12" font-weight="800" fill="#d8b4fe" text-anchor="middle">DAY 4</text>
|
|
55
|
+
<text x="0" y="45" font-size="11" font-weight="700" fill="#ffffff" text-anchor="middle">Mount Adapters</text>
|
|
56
|
+
<text x="0" y="58" font-size="9" fill="#94a3b8" text-anchor="middle">Claude/Cursor sync</text>
|
|
57
|
+
</g>
|
|
58
|
+
|
|
59
|
+
<!-- Day 5 Node -->
|
|
60
|
+
<g transform="translate(700, 140)">
|
|
61
|
+
<circle cx="0" cy="0" r="14" fill="#10b981" stroke="#ffffff" stroke-width="2"/>
|
|
62
|
+
<text x="0" y="30" font-size="12" font-weight="800" fill="#34d399" text-anchor="middle">DAY 5</text>
|
|
63
|
+
<text x="0" y="45" font-size="11" font-weight="700" fill="#ffffff" text-anchor="middle">Audit & Verify</text>
|
|
64
|
+
<text x="0" y="58" font-size="9" fill="#94a3b8" text-anchor="middle">Linter in CI/CD</text>
|
|
65
|
+
</g>
|
|
66
|
+
</svg>
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 820 400" width="100%" height="100%" style="font-family: 'Outfit', 'Inter', -apple-system, sans-serif;">
|
|
2
|
+
<defs>
|
|
3
|
+
<!-- Card Gradients -->
|
|
4
|
+
<linearGradient id="rootCard" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
5
|
+
<stop offset="0%" stop-color="#1e1b4b" />
|
|
6
|
+
<stop offset="100%" stop-color="#0f172a" />
|
|
7
|
+
</linearGradient>
|
|
8
|
+
<linearGradient id="aiCard" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
9
|
+
<stop offset="0%" stop-color="#111827" />
|
|
10
|
+
<stop offset="100%" stop-color="#1f2937" />
|
|
11
|
+
</linearGradient>
|
|
12
|
+
|
|
13
|
+
<!-- Flow Connector -->
|
|
14
|
+
<linearGradient id="flowGrad" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
15
|
+
<stop offset="0%" stop-color="#8b5cf6" />
|
|
16
|
+
<stop offset="100%" stop-color="#10b981" />
|
|
17
|
+
</linearGradient>
|
|
18
|
+
</defs>
|
|
19
|
+
|
|
20
|
+
<!-- Canvas Container -->
|
|
21
|
+
<rect width="820" height="400" rx="12" fill="#090d16" stroke="#1e293b" stroke-width="1.5"/>
|
|
22
|
+
|
|
23
|
+
<!-- Layer 1: Root Files Single Source of Truth -->
|
|
24
|
+
<g transform="translate(110, 25)">
|
|
25
|
+
<rect width="600" height="85" rx="12" fill="url(#rootCard)" stroke="#4f46e5" stroke-width="2"/>
|
|
26
|
+
<text x="300" y="32" font-size="14" font-weight="800" fill="#a5b4fc" text-anchor="middle" letter-spacing="1">LAYER 1: CENTRAL ROOT CONTRACTS</text>
|
|
27
|
+
<text x="300" y="62" font-size="16" font-weight="700" fill="#f8fafc" text-anchor="middle">AGENTS.md • MEMORY.md • TASKS.md • RUNBOOK.md</text>
|
|
28
|
+
</g>
|
|
29
|
+
|
|
30
|
+
<!-- Flow Connector 1 -->
|
|
31
|
+
<path d="M 410,110 L 410,140" stroke="url(#flowGrad)" stroke-width="3" stroke-dasharray="4,4" fill="none"/>
|
|
32
|
+
|
|
33
|
+
<!-- Layer 2: The .ai/ Config Layer -->
|
|
34
|
+
<g transform="translate(110, 140)">
|
|
35
|
+
<rect width="600" height="85" rx="12" fill="url(#aiCard)" stroke="#8b5cf6" stroke-width="1.5"/>
|
|
36
|
+
<text x="300" y="30" font-size="13" font-weight="800" fill="#c084fc" text-anchor="middle" letter-spacing="1">LAYER 2: .AI/ CONFIGURATION DIRECTORY</text>
|
|
37
|
+
<text x="300" y="60" font-size="15" font-weight="700" fill="#e2e8f0" text-anchor="middle">context • agents • skills • prompts • checks • session logs</text>
|
|
38
|
+
</g>
|
|
39
|
+
|
|
40
|
+
<!-- Flow Connector 2 -->
|
|
41
|
+
<path d="M 410,225 L 410,255" stroke="url(#flowGrad)" stroke-width="3" fill="none"/>
|
|
42
|
+
<polygon points="410,260 405,250 415,250" fill="#10b981"/>
|
|
43
|
+
|
|
44
|
+
<!-- Layer 3: Adapters Connection Tree -->
|
|
45
|
+
<path d="M 100,265 L 720,265 L 720,280" stroke="#334155" stroke-width="2" fill="none"/>
|
|
46
|
+
<path d="M 100,265 L 100,280" stroke="#334155" stroke-width="2" fill="none"/>
|
|
47
|
+
<path d="M 224,265 L 224,280" stroke="#334155" stroke-width="2" fill="none"/>
|
|
48
|
+
<path d="M 348,265 L 348,280" stroke="#334155" stroke-width="2" fill="none"/>
|
|
49
|
+
<path d="M 472,265 L 472,280" stroke="#334155" stroke-width="2" fill="none"/>
|
|
50
|
+
<path d="M 596,265 L 596,280" stroke="#334155" stroke-width="2" fill="none"/>
|
|
51
|
+
|
|
52
|
+
<!-- Adapter Output Nodes -->
|
|
53
|
+
<!-- Node 1: Codex -->
|
|
54
|
+
<g transform="translate(40, 280)">
|
|
55
|
+
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
56
|
+
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Codex</text>
|
|
57
|
+
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">adapters/codex/</text>
|
|
58
|
+
</g>
|
|
59
|
+
|
|
60
|
+
<!-- Node 2: Antigravity -->
|
|
61
|
+
<g transform="translate(165, 280)">
|
|
62
|
+
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
63
|
+
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Antigravity</text>
|
|
64
|
+
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">.gemini/settings</text>
|
|
65
|
+
</g>
|
|
66
|
+
|
|
67
|
+
<!-- Node 3: Cursor -->
|
|
68
|
+
<g transform="translate(290, 280)">
|
|
69
|
+
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
70
|
+
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Cursor</text>
|
|
71
|
+
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">.cursorrules</text>
|
|
72
|
+
</g>
|
|
73
|
+
|
|
74
|
+
<!-- Node 4: Claude -->
|
|
75
|
+
<g transform="translate(415, 280)">
|
|
76
|
+
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
77
|
+
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Claude</text>
|
|
78
|
+
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">CLAUDE.md</text>
|
|
79
|
+
</g>
|
|
80
|
+
|
|
81
|
+
<!-- Node 5: Gemini -->
|
|
82
|
+
<g transform="translate(540, 280)">
|
|
83
|
+
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
84
|
+
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">Gemini</text>
|
|
85
|
+
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">GEMINI.md</text>
|
|
86
|
+
</g>
|
|
87
|
+
|
|
88
|
+
<!-- Node 6: VS Code -->
|
|
89
|
+
<g transform="translate(665, 280)">
|
|
90
|
+
<rect width="120" height="50" rx="8" fill="#0f172a" stroke="#334155" stroke-width="1"/>
|
|
91
|
+
<text x="60" y="24" font-size="12" font-weight="700" fill="#f8fafc" text-anchor="middle">VS Code</text>
|
|
92
|
+
<text x="60" y="40" font-size="10" fill="#94a3b8" text-anchor="middle">.vscode/settings</text>
|
|
93
|
+
</g>
|
|
94
|
+
</svg>
|