multimodel-dev-os 0.3.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +103 -98
- package/bin/multimodel-dev-os.js +420 -35
- package/docs/caveman-mode.md +7 -3
- package/docs/cli-roadmap.md +33 -21
- package/docs/comparison.md +33 -0
- package/docs/faq.md +21 -4
- package/docs/installers.md +1 -1
- package/docs/launch-kit.md +99 -0
- package/docs/multimodel-workflow.md +10 -11
- package/docs/npm-publishing.md +2 -2
- package/docs/quickstart.md +42 -29
- package/docs/templates-guide.md +65 -0
- package/docs/use-cases.md +39 -0
- package/examples/ecommerce-store/.ai/config.yaml +7 -4
- package/examples/ecommerce-store/.ai/context/architecture.md +6 -0
- package/examples/ecommerce-store/.ai/context/context-budget.md +4 -0
- package/examples/ecommerce-store/.ai/context/model-map.md +4 -0
- package/examples/ecommerce-store/.ai/context/project-brief.md +3 -0
- package/examples/ecommerce-store/.ai/skills/webhook-handler.md +15 -0
- package/examples/ecommerce-store/AGENTS.md +15 -2
- package/examples/ecommerce-store/MEMORY.md +4 -3
- package/examples/ecommerce-store/TASKS.md +10 -0
- package/examples/general-app/.ai/config.yaml +7 -4
- package/examples/general-app/.ai/context/architecture.md +12 -0
- package/examples/general-app/.ai/context/context-budget.md +5 -0
- package/examples/general-app/.ai/context/model-map.md +7 -0
- package/examples/general-app/.ai/context/project-brief.md +6 -0
- package/examples/general-app/.ai/skills/example-skill.md +8 -0
- package/examples/general-app/AGENTS.md +69 -4
- package/examples/general-app/MEMORY.md +32 -2
- package/examples/general-app/TASKS.md +9 -0
- package/examples/nextjs-saas/.ai/config.yaml +7 -4
- package/examples/nextjs-saas/.ai/context/architecture.md +8 -0
- package/examples/nextjs-saas/.ai/context/context-budget.md +4 -0
- package/examples/nextjs-saas/.ai/context/model-map.md +4 -0
- package/examples/nextjs-saas/.ai/context/project-brief.md +5 -0
- package/examples/nextjs-saas/.ai/skills/nextjs-action-build.md +16 -0
- package/examples/nextjs-saas/AGENTS.md +8 -2
- package/examples/nextjs-saas/MEMORY.md +7 -4
- package/examples/nextjs-saas/TASKS.md +12 -0
- package/examples/seo-landing-page/.ai/config.yaml +7 -4
- package/examples/seo-landing-page/.ai/context/architecture.md +12 -0
- package/examples/seo-landing-page/.ai/context/context-budget.md +5 -0
- package/examples/seo-landing-page/.ai/context/model-map.md +7 -0
- package/examples/seo-landing-page/.ai/context/project-brief.md +6 -0
- package/examples/seo-landing-page/.ai/skills/seo-audit.md +21 -0
- package/examples/seo-landing-page/AGENTS.md +69 -4
- package/examples/seo-landing-page/MEMORY.md +33 -4
- package/examples/seo-landing-page/TASKS.md +9 -0
- package/examples/wordpress-site/.ai/config.yaml +7 -4
- package/examples/wordpress-site/.ai/context/architecture.md +7 -0
- package/examples/wordpress-site/.ai/context/context-budget.md +4 -0
- package/examples/wordpress-site/.ai/context/model-map.md +4 -0
- package/examples/wordpress-site/.ai/context/project-brief.md +3 -0
- package/examples/wordpress-site/.ai/skills/plugin-boilerplate.md +21 -0
- package/examples/wordpress-site/AGENTS.md +16 -3
- package/examples/wordpress-site/MEMORY.md +4 -3
- package/examples/wordpress-site/TASKS.md +10 -0
- package/package.json +3 -2
- package/scripts/install.ps1 +1 -1
- package/scripts/install.sh +1 -1
- package/scripts/verify.js +274 -0
- package/scripts/verify.sh +12 -12
package/README.md
CHANGED
|
@@ -1,89 +1,98 @@
|
|
|
1
1
|
# multimodel-dev-os
|
|
2
2
|
|
|
3
|
-
> Portable, vendor-neutral project configuration for AI coding
|
|
3
|
+
> Portable, vendor-neutral project configuration and CLI tool for AI coding agents.
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/multimodel-dev-os)
|
|
5
6
|
[](LICENSE)
|
|
7
|
+
[](https://github.com/rizvee/multimodel-dev-os/releases)
|
|
8
|
+
[](https://github.com/rizvee/multimodel-dev-os/actions)
|
|
9
|
+
[](https://www.npmjs.com/package/multimodel-dev-os)
|
|
6
10
|
[](CONTRIBUTING.md)
|
|
7
|
-
[](CHANGELOG.md)
|
|
8
11
|
|
|
9
|
-
|
|
10
|
-
Antigravity, Cursor, Claude, Gemini, VS Code, or whatever comes next.
|
|
11
|
-
Think `.editorconfig` for AI tools.
|
|
12
|
+
---
|
|
12
13
|
|
|
13
|
-
|
|
14
|
-
> **v0.1 is a Markdown-first convention/specification layer.**
|
|
15
|
-
> It is a set of structured directory/file guidelines that AI models can natively parse, not a daemon process, autonomous runtime engine, or background executor. Command Line Interface (CLI) automation and runtime engine tools are scheduled for the **v0.2+** releases.
|
|
14
|
+
## 10-Second Quickstart
|
|
16
15
|
|
|
17
|
-
|
|
16
|
+
Bootstrap your project instantly via `npx`:
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
repo, they step on each other.
|
|
18
|
+
```bash
|
|
19
|
+
npx multimodel-dev-os@latest init
|
|
20
|
+
```
|
|
23
21
|
|
|
24
|
-
|
|
22
|
+
`multimodel-dev-os` is a lightweight, vendor-neutral configuration specification and local CLI utility that scaffolds a standardized operational context layout for your AI pair-programmers (such as Codex, Antigravity, Cursor, Claude Code, Gemini, or VS Code). It acts like `.editorconfig` but is optimized for multi-model AI coding agents.
|
|
25
23
|
|
|
26
|
-
|
|
24
|
+
---
|
|
27
25
|
|
|
28
|
-
|
|
29
|
-
AGENTS.md → What this project is and how to work on it
|
|
30
|
-
MEMORY.md → What we've learned and decided
|
|
31
|
-
TASKS.md → What needs to be done
|
|
32
|
-
RUNBOOK.md → How to deploy, rollback, and respond to incidents
|
|
33
|
-
.ai/ → Agent config, skills, checks, prompts, session logs
|
|
34
|
-
```
|
|
26
|
+
## Why This Exists
|
|
35
27
|
|
|
36
|
-
|
|
28
|
+
AI coding tools are incredibly fast, but switching between them introduces context fragmentation:
|
|
29
|
+
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.
|
|
30
|
+
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.
|
|
37
31
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
32
|
+
`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.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Why Not Just AGENTS.md?
|
|
37
|
+
|
|
38
|
+
While you can write a raw instruction file manually, `multimodel-dev-os` provides a robust, standardized context-management architecture:
|
|
39
|
+
|
|
40
|
+
| Feature | AGENTS.md Only | Tool-Specific Prompt Packs | MultiModel Dev OS |
|
|
41
|
+
| :--- | :--- | :--- | :--- |
|
|
42
|
+
| **Portability** | Hard to coordinate across different IDEs/CLIs | None (locked to one platform) | **Universal** (Single source of truth) |
|
|
43
|
+
| **Drift Prevention** | Manual copy-pasting of rules | None | **Automated** (Adapters sync root rules instantly) |
|
|
44
|
+
| **Token Optimization** | Read entire file every turn | Basic prompts | **Caveman Mode** (cuts token consumption by **~79%**) |
|
|
45
|
+
| **Tool Translation** | None (IDE files must be managed manually) | None | **Zero-Duplication** (Dynamic reference generation) |
|
|
46
|
+
| **Quality Gates** | None | None | **Verify checkup** (`npx multimodel-dev-os verify`) |
|
|
47
|
+
|
|
48
|
+
---
|
|
46
49
|
|
|
47
50
|
## Supported Tool Matrix
|
|
48
51
|
|
|
49
52
|
| Tool | Adapter File | Reads Source of Truth From | Status |
|
|
50
53
|
|------|--------------|----------------------------|--------|
|
|
51
|
-
| OpenAI Codex | `adapters/codex/AGENTS.md` | `/AGENTS.md` | ✅
|
|
52
|
-
| Google Antigravity | `adapters/antigravity/AGENTS.md` | `/AGENTS.md` | ✅
|
|
53
|
-
| Cursor | `adapters/cursor/.cursorrules` | `/AGENTS.md`, `/MEMORY.md`, `/TASKS.md` | ✅
|
|
54
|
-
| Claude Code | `adapters/claude/CLAUDE.md` | `/AGENTS.md`, `/MEMORY.md`, `/TASKS.md` | ✅
|
|
55
|
-
| Gemini | `adapters/gemini/GEMINI.md` | `/AGENTS.md` | ✅
|
|
56
|
-
| VS Code | `adapters/vscode/.vscode/settings.json` | `/AGENTS.md` (via exclusions) | ✅
|
|
54
|
+
| OpenAI Codex | `adapters/codex/AGENTS.md` | `/AGENTS.md` | ✅ Production-Ready |
|
|
55
|
+
| Google Antigravity | `adapters/antigravity/AGENTS.md` | `/AGENTS.md` | ✅ Production-Ready |
|
|
56
|
+
| Cursor | `adapters/cursor/.cursorrules` | `/AGENTS.md`, `/MEMORY.md`, `/TASKS.md` | ✅ Production-Ready |
|
|
57
|
+
| Claude Code | `adapters/claude/CLAUDE.md` | `/AGENTS.md`, `/MEMORY.md`, `/TASKS.md` | ✅ Production-Ready |
|
|
58
|
+
| Gemini | `adapters/gemini/GEMINI.md` | `/AGENTS.md` | ✅ Production-Ready |
|
|
59
|
+
| VS Code | `adapters/vscode/.vscode/settings.json` | `/AGENTS.md` (via exclusions) | ✅ Production-Ready |
|
|
60
|
+
|
|
61
|
+
---
|
|
57
62
|
|
|
58
|
-
##
|
|
63
|
+
## Extended Quickstart Options
|
|
59
64
|
|
|
60
|
-
|
|
65
|
+
Customize your scaffolding instantly via CLI argument flags:
|
|
61
66
|
|
|
62
|
-
**macOS / Linux / WSL (bash):**
|
|
63
67
|
```bash
|
|
64
|
-
|
|
65
|
-
|
|
68
|
+
# 1. Scaffolding with standard template profile
|
|
69
|
+
npx multimodel-dev-os@latest init
|
|
66
70
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
irm https://raw.githubusercontent.com/rizvee/multimodel-dev-os/main/scripts/install.ps1 | iex
|
|
70
|
-
```
|
|
71
|
+
# 2. Scaffolding for a specific tech stack (e.g. Next.js App Router)
|
|
72
|
+
npx multimodel-dev-os@latest init --template nextjs-saas
|
|
71
73
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
# 3. Injecting a specific tool adapter profile (e.g. OpenAI Codex)
|
|
75
|
+
npx multimodel-dev-os@latest init --adapter codex
|
|
76
|
+
|
|
77
|
+
# 4. Bootstrapping with Caveman Mode (slashes token footprints by ~79%)
|
|
78
|
+
npx multimodel-dev-os@latest init --caveman
|
|
76
79
|
|
|
77
|
-
|
|
80
|
+
# 5. Verifying the structural health of your workspace directories
|
|
81
|
+
npx multimodel-dev-os@latest verify
|
|
78
82
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
+
# 6. Strict validation check for structural compliance
|
|
84
|
+
npx multimodel-dev-os@latest validate
|
|
85
|
+
|
|
86
|
+
# 7. Run advisory doctor checkup on target workspace
|
|
87
|
+
npx multimodel-dev-os@latest doctor
|
|
88
|
+
|
|
89
|
+
# 8. List all built-in template profiles with details
|
|
90
|
+
npx multimodel-dev-os@latest templates
|
|
91
|
+
```
|
|
83
92
|
|
|
84
|
-
|
|
93
|
+
---
|
|
85
94
|
|
|
86
|
-
## Architecture
|
|
95
|
+
## Architecture Layout
|
|
87
96
|
|
|
88
97
|
```
|
|
89
98
|
┌─────────────────────────────────────────────┐
|
|
@@ -102,10 +111,11 @@ See [docs/quickstart.md](docs/quickstart.md) for all options.
|
|
|
102
111
|
Codex Antigrav Cursor Claude Gemini VS Code
|
|
103
112
|
```
|
|
104
113
|
|
|
105
|
-
Adapters are **readers, not writers.** The root markdown files are the
|
|
106
|
-
single source of truth. Adapters translate into tool-native formats.
|
|
114
|
+
Adapters are **readers, not writers.** The root markdown files are the single source of truth. Adapters translate these into tool-native formats without duplicating instructions.
|
|
107
115
|
|
|
108
|
-
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## Core Operational Files
|
|
109
119
|
|
|
110
120
|
| File | Purpose | Audience |
|
|
111
121
|
|------|---------|----------|
|
|
@@ -115,23 +125,11 @@ single source of truth. Adapters translate into tool-native formats.
|
|
|
115
125
|
| [`RUNBOOK.md`](RUNBOOK.md) | Deploy, rollback, incident response | AI + humans |
|
|
116
126
|
| [`.ai/config.yaml`](.ai/config.yaml) | Mode, orchestrator, adapter settings | System |
|
|
117
127
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
| Tool | Adapter | Native File | Status |
|
|
121
|
-
|------|---------|-------------|--------|
|
|
122
|
-
| OpenAI Codex | [`adapters/codex/`](adapters/codex/) | `AGENTS.md` | ✅ v0.1 |
|
|
123
|
-
| Google Antigravity | [`adapters/antigravity/`](adapters/antigravity/) | `.gemini/settings.json` | ✅ v0.1 |
|
|
124
|
-
| Cursor | [`adapters/cursor/`](adapters/cursor/) | `.cursorrules` | ✅ v0.1 |
|
|
125
|
-
| Claude Code | [`adapters/claude/`](adapters/claude/) | `CLAUDE.md` | ✅ v0.1 |
|
|
126
|
-
| Gemini | [`adapters/gemini/`](adapters/gemini/) | `GEMINI.md` | ✅ v0.1 |
|
|
127
|
-
| VS Code | [`adapters/vscode/`](adapters/vscode/) | `.vscode/settings.json` | ✅ v0.1 |
|
|
128
|
-
|
|
129
|
-
Want to add a tool? See [docs/adapters.md](docs/adapters.md).
|
|
128
|
+
---
|
|
130
129
|
|
|
131
130
|
## Multimodel Orchestrator
|
|
132
131
|
|
|
133
|
-
Coordinate multiple AI agents on one project. Define roles in
|
|
134
|
-
`.ai/config.yaml`, detail coordination in `.ai/agents/multimodel-orchestrator.md`.
|
|
132
|
+
Coordinate multiple AI agents on one project. Define roles in `.ai/config.yaml`, detail coordination in `.ai/agents/multimodel-orchestrator.md`.
|
|
135
133
|
|
|
136
134
|
```yaml
|
|
137
135
|
orchestrator:
|
|
@@ -147,6 +145,8 @@ orchestrator:
|
|
|
147
145
|
|
|
148
146
|
See [docs/multimodel-workflow.md](docs/multimodel-workflow.md).
|
|
149
147
|
|
|
148
|
+
---
|
|
149
|
+
|
|
150
150
|
## Caveman Mode
|
|
151
151
|
|
|
152
152
|
Minimal-token templates. Same structure, ~79% fewer tokens.
|
|
@@ -158,40 +158,45 @@ Minimal-token templates. Same structure, ~79% fewer tokens.
|
|
|
158
158
|
|
|
159
159
|
See [docs/caveman-mode.md](docs/caveman-mode.md).
|
|
160
160
|
|
|
161
|
-
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
## Scaffolding Templates
|
|
162
164
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
| [General AppScaffold](examples/general-app/) | AGENTS.md, MEMORY.md, config |
|
|
165
|
+
We provide target-specific layouts for common application architectures:
|
|
166
|
+
* [Next.js SaaS Stack](examples/nextjs-saas/) (TypeScript, Prisma, Tailwind)
|
|
167
|
+
* [WordPress Custom Plugin/Site](examples/wordpress-site/) (PHP, standard blocks)
|
|
168
|
+
* [Headless E-commerce Store](examples/ecommerce-store/) (Payment processing, Webhooks)
|
|
169
|
+
* [SEO Static Landing Page](examples/seo-landing-page/) (Astro, static optimizations)
|
|
170
|
+
* [General Application](examples/general-app/) (Default baseline configuration)
|
|
170
171
|
|
|
171
|
-
|
|
172
|
+
See [docs/use-cases.md](docs/use-cases.md) for full stack examples.
|
|
172
173
|
|
|
173
|
-
|
|
174
|
-
- **multimodal** = AI processing multiple input types (text, image, audio)
|
|
174
|
+
---
|
|
175
175
|
|
|
176
|
-
|
|
176
|
+
## Documentation
|
|
177
177
|
|
|
178
|
-
|
|
178
|
+
* [Quickstart Guide](docs/quickstart.md)
|
|
179
|
+
* [Templates Upgrade Guide](docs/templates-guide.md)
|
|
180
|
+
* [Comparison Matrix](docs/comparison.md)
|
|
181
|
+
* [Use Cases & Stack Templates](docs/use-cases.md)
|
|
182
|
+
* [Social Launch Kit](docs/launch-kit.md)
|
|
183
|
+
* [Architecture Overview](docs/architecture.md)
|
|
184
|
+
* [Adapters Guide](docs/adapters.md)
|
|
185
|
+
* [Multi-agent Workflows](docs/multimodel-workflow.md)
|
|
186
|
+
* [Caveman Mode](docs/caveman-mode.md)
|
|
187
|
+
* [Script Installers Guide](docs/installers.md)
|
|
188
|
+
* [CLI Development Roadmap](docs/cli-roadmap.md)
|
|
189
|
+
* [NPM Publishing Runbook](docs/npm-publishing.md)
|
|
190
|
+
* [Frequently Asked Questions (FAQ)](docs/faq.md)
|
|
179
191
|
|
|
180
|
-
|
|
181
|
-
- [Architecture](docs/architecture.md)
|
|
182
|
-
- [Adapters](docs/adapters.md)
|
|
183
|
-
- [Multi-agent Workflow](docs/multimodel-workflow.md)
|
|
184
|
-
- [Caveman Mode](docs/caveman-mode.md)
|
|
185
|
-
- [Installers](docs/installers.md)
|
|
186
|
-
- [CLI Roadmap](docs/cli-roadmap.md)
|
|
187
|
-
- [Testing Guide](docs/testing-v0.2.md)
|
|
188
|
-
- [NPM Publishing Runbook](docs/npm-publishing.md)
|
|
189
|
-
- [FAQ](docs/faq.md)
|
|
192
|
+
---
|
|
190
193
|
|
|
191
194
|
## Contributing
|
|
192
195
|
|
|
193
196
|
See [`CONTRIBUTING.md`](CONTRIBUTING.md) and [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md).
|
|
194
197
|
|
|
198
|
+
---
|
|
199
|
+
|
|
195
200
|
## License
|
|
196
201
|
|
|
197
|
-
[MIT](LICENSE)
|
|
202
|
+
This project is licensed under the [MIT License](LICENSE).
|