multimodel-dev-os 0.3.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 (105) hide show
  1. package/.ai/agents/README.md +23 -0
  2. package/.ai/agents/coder.md +11 -0
  3. package/.ai/agents/devops.md +8 -0
  4. package/.ai/agents/multimodel-orchestrator.md +105 -0
  5. package/.ai/agents/planner.md +11 -0
  6. package/.ai/agents/qa-tester.md +8 -0
  7. package/.ai/agents/reviewer.md +11 -0
  8. package/.ai/agents/security-auditor.md +8 -0
  9. package/.ai/agents/seo-auditor.md +8 -0
  10. package/.ai/checks/README.md +38 -0
  11. package/.ai/checks/context-budget.md +7 -0
  12. package/.ai/checks/pre-commit.md +8 -0
  13. package/.ai/checks/pre-deploy.md +8 -0
  14. package/.ai/checks/pre-implementation.md +7 -0
  15. package/.ai/checks/regression-checklist.md +8 -0
  16. package/.ai/config.yaml +60 -0
  17. package/.ai/context/README.md +18 -0
  18. package/.ai/context/architecture.md +15 -0
  19. package/.ai/context/business-rules.md +12 -0
  20. package/.ai/context/context-budget.md +12 -0
  21. package/.ai/context/deployment-rules.md +15 -0
  22. package/.ai/context/model-map.md +11 -0
  23. package/.ai/context/project-brief.md +17 -0
  24. package/.ai/context/seo-rules.md +15 -0
  25. package/.ai/prompts/README.md +37 -0
  26. package/.ai/prompts/generate-tests.md +5 -0
  27. package/.ai/prompts/handoff-to-next-model.md +5 -0
  28. package/.ai/prompts/implement-safely.md +5 -0
  29. package/.ai/prompts/plan-first.md +5 -0
  30. package/.ai/prompts/review-diff.md +5 -0
  31. package/.ai/prompts/summarize-session.md +5 -0
  32. package/.ai/session-logs/.gitkeep +1 -0
  33. package/.ai/session-logs/README.md +49 -0
  34. package/.ai/skills/README.md +34 -0
  35. package/.ai/skills/bug-fix.md +9 -0
  36. package/.ai/skills/caveman-bug-fix.md +2 -0
  37. package/.ai/skills/caveman-context-handoff.md +2 -0
  38. package/.ai/skills/caveman-feature-build.md +2 -0
  39. package/.ai/skills/context-routing.md +8 -0
  40. package/.ai/skills/cpanel-deploy.md +9 -0
  41. package/.ai/skills/example-skill.md +38 -0
  42. package/.ai/skills/landing-page-optimization.md +8 -0
  43. package/.ai/skills/model-routing.md +7 -0
  44. package/.ai/skills/nextjs-feature-build.md +9 -0
  45. package/.ai/skills/refactor.md +9 -0
  46. package/.ai/skills/seo-implementation.md +8 -0
  47. package/.ai/templates/AGENTS.caveman.md +12 -0
  48. package/.ai/templates/MEMORY.caveman.md +14 -0
  49. package/.ai/templates/RUNBOOK.caveman.md +22 -0
  50. package/.ai/templates/TASKS.caveman.md +7 -0
  51. package/.ai/templates/bug-report-template.md +14 -0
  52. package/.ai/templates/feature-spec-template.md +14 -0
  53. package/.ai/templates/project-memory-template.md +12 -0
  54. package/.ai/templates/session-log-template.md +16 -0
  55. package/.ai/templates/task-template.md +16 -0
  56. package/AGENTS.md +79 -0
  57. package/LICENSE +21 -0
  58. package/MEMORY.md +42 -0
  59. package/README.md +197 -0
  60. package/RUNBOOK.md +73 -0
  61. package/TASKS.md +28 -0
  62. package/adapters/antigravity/.gemini/settings.json +13 -0
  63. package/adapters/antigravity/AGENTS.md +29 -0
  64. package/adapters/antigravity/setup.md +36 -0
  65. package/adapters/claude/CLAUDE.md +31 -0
  66. package/adapters/claude/setup.md +35 -0
  67. package/adapters/codex/AGENTS.md +27 -0
  68. package/adapters/codex/setup.md +25 -0
  69. package/adapters/cursor/.cursorrules +30 -0
  70. package/adapters/cursor/setup.md +35 -0
  71. package/adapters/gemini/GEMINI.md +31 -0
  72. package/adapters/gemini/setup.md +34 -0
  73. package/adapters/vscode/.vscode/settings.json +21 -0
  74. package/adapters/vscode/setup.md +40 -0
  75. package/bin/multimodel-dev-os.js +267 -0
  76. package/docs/adapters.md +79 -0
  77. package/docs/architecture.md +64 -0
  78. package/docs/caveman-mode.md +74 -0
  79. package/docs/cli-roadmap.md +44 -0
  80. package/docs/faq.md +66 -0
  81. package/docs/installers.md +58 -0
  82. package/docs/multimodel-workflow.md +121 -0
  83. package/docs/npm-publishing.md +74 -0
  84. package/docs/quickstart.md +85 -0
  85. package/docs/testing-v0.2.md +73 -0
  86. package/examples/ecommerce-store/.ai/config.yaml +4 -0
  87. package/examples/ecommerce-store/AGENTS.md +5 -0
  88. package/examples/ecommerce-store/MEMORY.md +4 -0
  89. package/examples/general-app/.ai/config.yaml +4 -0
  90. package/examples/general-app/AGENTS.md +5 -0
  91. package/examples/general-app/MEMORY.md +4 -0
  92. package/examples/nextjs-saas/.ai/config.yaml +4 -0
  93. package/examples/nextjs-saas/AGENTS.md +13 -0
  94. package/examples/nextjs-saas/MEMORY.md +5 -0
  95. package/examples/seo-landing-page/.ai/config.yaml +4 -0
  96. package/examples/seo-landing-page/AGENTS.md +5 -0
  97. package/examples/seo-landing-page/MEMORY.md +5 -0
  98. package/examples/wordpress-site/.ai/config.yaml +4 -0
  99. package/examples/wordpress-site/AGENTS.md +5 -0
  100. package/examples/wordpress-site/MEMORY.md +4 -0
  101. package/package.json +43 -0
  102. package/scripts/install.ps1 +230 -0
  103. package/scripts/install.sh +237 -0
  104. package/scripts/pack-template.sh +39 -0
  105. package/scripts/verify.sh +271 -0
@@ -0,0 +1,121 @@
1
+ # Orchestrator Guide
2
+
3
+ > How to coordinate multiple AI coding agents on a single project.
4
+
5
+ ## Overview
6
+
7
+ The Multimodel Orchestrator defines how different AI agents share work, avoid conflicts, and hand off context. In v0.1, it's a **protocol specification** — a set of conventions your team follows manually.
8
+
9
+ ## Quick Start
10
+
11
+ ### 1. Define Roles
12
+
13
+ Edit `.ai/config.yaml`:
14
+
15
+ ```yaml
16
+ orchestrator:
17
+ mode: "sequential"
18
+ agents:
19
+ - name: "planner"
20
+ tool: "claude"
21
+ role: "Architecture and planning"
22
+ files: ["docs/**", "AGENTS.md", "MEMORY.md"]
23
+ permissions: "read+write"
24
+
25
+ - name: "builder"
26
+ tool: "cursor"
27
+ role: "Implementation"
28
+ files: ["src/**", "lib/**", "tests/**"]
29
+ permissions: "read+write"
30
+
31
+ - name: "checker"
32
+ tool: "codex"
33
+ role: "Code review and testing"
34
+ files: ["**"]
35
+ permissions: "read-only"
36
+ ```
37
+
38
+ ### 2. Choose a Mode
39
+
40
+ | Mode | How It Works | Best For |
41
+ |------|-------------|----------|
42
+ | `sequential` | One agent at a time, session log between each | Solo devs switching tools |
43
+ | `parallel` | Multiple agents on different file scopes | Teams with clear boundaries |
44
+ | `supervised` | Human reviews between each agent | Critical/production code |
45
+
46
+ ### 3. Use Handoff Logs
47
+
48
+ When switching from one agent to another, the outgoing agent writes a session log:
49
+
50
+ ```markdown
51
+ # Handoff: planner → builder
52
+
53
+ **Timestamp:** 2026-05-30T12:00:00Z
54
+ **Agent:** Claude (planner)
55
+
56
+ ## Action Summary
57
+ Designed the auth module with JWT tokens and refresh token rotation.
58
+
59
+ ## Files Changed
60
+ - docs/auth-design.md (created)
61
+ - TASKS.md (updated)
62
+
63
+ ## Next Steps
64
+ 1. Implement /auth/login endpoint
65
+ 2. Implement /auth/refresh endpoint
66
+
67
+ ## Blockers
68
+ - Need to decide: Redis vs PostgreSQL for refresh token storage
69
+ ```
70
+
71
+ Save to: `.ai/session-logs/2026-05-30-planner-auth-design.md`
72
+
73
+ ## Common Workflows
74
+
75
+ ### Solo Dev, Multiple Tools
76
+
77
+ ```
78
+ Morning: Claude (architecture) → session log
79
+ Afternoon: Cursor (implementation) → session log
80
+ Evening: Codex (review) → session log
81
+ ```
82
+
83
+ ### Pair: Human + AI
84
+
85
+ ```
86
+ Human: writes TASKS.md with requirements
87
+ Agent: reads TASKS.md, implements, updates MEMORY.md
88
+ Human: reviews, provides feedback
89
+ Agent: iterates, writes session log
90
+ ```
91
+
92
+ ### Team: Multiple Humans + Multiple AIs
93
+
94
+ ```
95
+ Dev A + Claude: works on auth module (src/auth/**)
96
+ Dev B + Cursor: works on dashboard (src/dashboard/**)
97
+ Both: read shared MEMORY.md, coordinate via TASKS.md
98
+ ```
99
+
100
+ ## Conflict Prevention
101
+
102
+ 1. **Define file scopes** — each agent role specifies which files it can touch
103
+ 2. **Check before writing** — agents should read `TASKS.md` and recent session logs first
104
+ 3. **Atomic tasks** — each agent completes a coherent unit before handing off
105
+ 4. **Single writer** — only one agent should modify a given file at a time
106
+
107
+ ## Limitations (v0.1)
108
+
109
+ - Manual enforcement only — no runtime checks
110
+ - No automatic conflict detection
111
+ - No real-time agent-to-agent messaging
112
+ - Handoff logs must be written manually by the agent
113
+
114
+ ## Roadmap
115
+
116
+ | Version | Feature |
117
+ |---------|---------|
118
+ | v0.2 | CLI reads config and routes tasks |
119
+ | v0.3 | Automatic session log generation |
120
+ | v0.4 | Conflict detection |
121
+ | v0.5 | Real-time coordination |
@@ -0,0 +1,74 @@
1
+ # npm & npx Publishing Guide
2
+
3
+ > Operational runbook for packaging, testing, publishing, and maintaining the `multimodel-dev-os` package on the public npm registry.
4
+
5
+ ---
6
+
7
+ ## 1. Local Packaging Integrity Test
8
+
9
+ Before publishing, always test the built package locally by compiling a compressed tarball:
10
+
11
+ 1. **Build the local tarball archive:**
12
+ ```bash
13
+ npm pack
14
+ ```
15
+ This creates a file named like `multimodel-dev-os-0.1.0.tgz` in your directory root.
16
+
17
+ 2. **Verify bundle contents:**
18
+ Create an empty temporary workspace, extract the tarball, and confirm that only required scaffold folders are included (no `.github/`, test configurations, or local system files):
19
+ ```bash
20
+ mkdir -p /tmp/package-test && cd /tmp/package-test
21
+ tar -xzf /path/to/multimodel-dev-os-0.1.0.tgz
22
+ ls -la package/
23
+ ```
24
+
25
+ 3. **Verify CLI execution from the package:**
26
+ ```bash
27
+ node package/bin/multimodel-dev-os.js --help
28
+ ```
29
+
30
+ ---
31
+
32
+ ## 2. Pre-Flight Publishing Checklist
33
+
34
+ Execute these validation actions strictly in sequence before triggering a release:
35
+
36
+ 1. **Verify structural health:**
37
+ Ensure all 96 file assertions in our verification script pass successfully:
38
+ ```bash
39
+ npm run verify
40
+ ```
41
+
42
+ 2. **Login to npm secure registry:**
43
+ ```bash
44
+ npm login
45
+ ```
46
+
47
+ 3. **Dry-run packaging audit:**
48
+ Inspect final bundle metrics and check for unexpected files:
49
+ ```bash
50
+ npm publish --dry-run
51
+ ```
52
+
53
+ 4. **Trigger publication:**
54
+ Once metadata and file exclusions are verified:
55
+ ```bash
56
+ npm publish --access public
57
+ ```
58
+
59
+ ---
60
+
61
+ ## 3. Versioning & Rollback Strategy
62
+
63
+ * **Semantic Versioning (SemVer) Discipline:**
64
+ * **Patch Release (e.g. 0.3.1):** Backward-compatible bug fixes or documentation updates.
65
+ * **Minor Release (e.g. 0.4.0):** Backward-compatible new features (like new adapter sync mechanisms).
66
+ * **Major Release (e.g. 1.0.0):** Breaking changes to core specification files.
67
+
68
+ * **Rollback & Deprecation Guidelines:**
69
+ * Since published versions cannot be republished or overwritten, **never unpublish** unless absolutely necessary.
70
+ * If a critical bug is discovered, immediately publish a new patch version (e.g. `v0.3.1`).
71
+ * If a version is broken, flag it as deprecated to inform downstream installers:
72
+ ```bash
73
+ npm deprecate multimodel-dev-os@0.3.0 "Critical bug found, please use v0.3.1 instead."
74
+ ```
@@ -0,0 +1,85 @@
1
+ # Quickstart
2
+
3
+ Get multimodel-dev-os into your project in under 2 minutes.
4
+
5
+ ## Option A: One-Line Install
6
+
7
+ **macOS / Linux / WSL (bash):**
8
+ ```bash
9
+ curl -fsSL https://raw.githubusercontent.com/rizvee/multimodel-dev-os/main/scripts/install.sh | bash
10
+ ```
11
+
12
+ **Windows (PowerShell):**
13
+ ```powershell
14
+ irm https://raw.githubusercontent.com/rizvee/multimodel-dev-os/main/scripts/install.ps1 | iex
15
+ ```
16
+
17
+ ## Option B: Manual Scaffolding
18
+
19
+ ```bash
20
+ git clone https://github.com/rizvee/multimodel-dev-os.git /tmp/mmdos
21
+ cp /tmp/mmdos/AGENTS.md your-project/
22
+ cp /tmp/mmdos/MEMORY.md your-project/
23
+ cp /tmp/mmdos/TASKS.md your-project/
24
+ cp /tmp/mmdos/RUNBOOK.md your-project/
25
+ cp /tmp/mmdos/.gitattributes your-project/
26
+ cp -r /tmp/mmdos/.ai your-project/
27
+ ```
28
+
29
+ ## Option C: Caveman Mode (Minimal Tokens)
30
+
31
+ ```bash
32
+ curl -fsSL https://raw.githubusercontent.com/rizvee/multimodel-dev-os/main/scripts/install.sh | bash -s -- --caveman
33
+ ```
34
+
35
+ ## Option D: Node.js CLI Scaffolding (v0.2.0+)
36
+
37
+ For a direct, highly customized local setup using our zero-dependency CLI utility:
38
+ 1. Clone this repository locally:
39
+ ```bash
40
+ git clone https://github.com/rizvee/multimodel-dev-os.git
41
+ ```
42
+ 2. Run the CLI to scaffold into your target project:
43
+ ```bash
44
+ node bin/multimodel-dev-os.js init --target /path/to/your-project --template nextjs-saas --adapter cursor
45
+ ```
46
+
47
+ ## Option E: npx Scaffolding (Planned v0.3.0+)
48
+
49
+ Once published to the public npm registry, you can initialize any project globally without local clones using:
50
+ ```bash
51
+ # General setup
52
+ npx multimodel-dev-os init
53
+
54
+ # Target specific layouts and templates
55
+ npx multimodel-dev-os init --template nextjs-saas --adapter cursor
56
+ ```
57
+
58
+ ## After Install
59
+
60
+ 1. **Edit `AGENTS.md`** — fill in your project name, stack, and build commands
61
+ 2. **Edit `.ai/config.yaml`** — enable adapters for your tools
62
+ 3. **Copy adapter files** to your project root:
63
+ - Cursor: `cp adapters/cursor/.cursorrules .cursorrules`
64
+ - Claude: `cp adapters/claude/CLAUDE.md CLAUDE.md`
65
+ - VS Code: `cp -r adapters/vscode/.vscode/ .vscode/`
66
+ 4. **Start coding** — your AI tools will read the shared config
67
+
68
+ ## Verify
69
+
70
+ You can run our strict verification script to validate structural health:
71
+ ```bash
72
+ # Via CLI
73
+ node bin/multimodel-dev-os.js verify --target /path/to/your-project
74
+
75
+ # Via verification shell script
76
+ bash scripts/verify.sh
77
+ ```
78
+
79
+ ## Next Steps
80
+
81
+ - [Architecture overview](architecture.md)
82
+ - [Adapter setup](adapters.md)
83
+ - [Multi-agent workflows](multimodel-workflow.md)
84
+ - [Caveman Mode](caveman-mode.md)
85
+ - [NPM Publishing Runbook](npm-publishing.md)
@@ -0,0 +1,73 @@
1
+ # multimodel-dev-os v0.2.0 Testing Documentation
2
+
3
+ This document describes how to execute local test cases to verify the `bin/multimodel-dev-os.js` CLI tool and installer scripts.
4
+
5
+ ---
6
+
7
+ ## 1. Platform Requirements
8
+ * **Node.js:** v18.0.0 or higher.
9
+ * **Unix-like Shell (Git Bash, macOS Terminal, Linux Bash):** Required for executing `.sh` scripts.
10
+ * **Windows PowerShell:** Required for executing `.ps1` scripts.
11
+
12
+ ---
13
+
14
+ ## 2. CLI Validation Tests
15
+
16
+ ### Test Case A: Help Command
17
+ Ensures the argument parser and help outputs render correctly.
18
+ ```bash
19
+ # Git Bash / macOS / Linux / PowerShell
20
+ node bin/multimodel-dev-os.js --help
21
+ ```
22
+ * **Expected Output:** Displays correct option flags, commands (`init`, `verify`), and versions.
23
+
24
+ ### Test Case B: Structural Verification Check
25
+ Verifies structural presence of 20 critical files inside the repository.
26
+ ```bash
27
+ # Git Bash / macOS / Linux / PowerShell
28
+ node bin/multimodel-dev-os.js verify
29
+ ```
30
+ * **Expected Output:** Outputs `✓` indicators for each file and returns a `PASSED` status with exit code `0`.
31
+
32
+ ### Test Case C: Dry-Run Scaffolding Check
33
+ Validates loading of custom templates (e.g. `nextjs-saas`) and adapter boundaries without actual writes.
34
+ ```bash
35
+ # Git Bash / macOS / Linux / PowerShell
36
+ node bin/multimodel-dev-os.js init --target ./test-project --template nextjs-saas --adapter cursor --dry-run
37
+ ```
38
+ * **Expected Output:** Outputs 61 `[DRY-RUN] WOULD CREATE` operation logs and a final `Project initialized successfully!` success message.
39
+
40
+ ### Test Case D: Conflict Prevention Check
41
+ Verifies that the CLI protects existing files from overwrites.
42
+ ```bash
43
+ # 1. Create a dummy file
44
+ mkdir -p test-conflict && touch test-conflict/AGENTS.md
45
+
46
+ # 2. Run init without force
47
+ node bin/multimodel-dev-os.js init --target ./test-conflict
48
+ ```
49
+ * **Expected Output:** Safely aborts, prints a red `CONFLICT` warning, and exits with code `1`.
50
+
51
+ ### Test Case E: Overwrite Override Check
52
+ Verifies that `--force` successfully bypasses conflict protection.
53
+ ```bash
54
+ # Run init with force
55
+ node bin/multimodel-dev-os.js init --target ./test-conflict --force
56
+ ```
57
+ * **Expected Output:** Overwrites conflicting files and completes successfully.
58
+
59
+ ---
60
+
61
+ ## 3. Script Installer Validation Tests
62
+
63
+ ### macOS / Linux / WSL (bash):
64
+ ```bash
65
+ # Run dry-run installation
66
+ bash scripts/install.sh --dry-run
67
+ ```
68
+
69
+ ### Windows (PowerShell):
70
+ ```powershell
71
+ # Run dry-run installation
72
+ .\scripts\install.ps1 -DryRun
73
+ ```
@@ -0,0 +1,4 @@
1
+ version: "0.1"
2
+ project:
3
+ name: "ecommerce-headless-store"
4
+ mode: "standard"
@@ -0,0 +1,5 @@
1
+ # E-commerce Store — Agent Instructions
2
+
3
+ project: ecommerce-headless-store
4
+ stack: React, Next.js, Shopify Storefront API, Tailwind CSS
5
+ description: High-performance headless e-commerce store implementation
@@ -0,0 +1,4 @@
1
+ # E-commerce Store — Memory
2
+
3
+ ## Architecture Decisions
4
+ - Integrated static generation ISR for product details pages.
@@ -0,0 +1,4 @@
1
+ version: "0.1"
2
+ project:
3
+ name: "general-project-template"
4
+ mode: "standard"
@@ -0,0 +1,5 @@
1
+ # General App — Agent Instructions
2
+
3
+ project: general-project-template
4
+ stack: Multi-stack
5
+ description: Generic scaffolding for general software projects
@@ -0,0 +1,4 @@
1
+ # General App — Memory
2
+
3
+ ## Architecture Decisions
4
+ - Configured modular abstraction layers for generic project support.
@@ -0,0 +1,4 @@
1
+ version: "0.1"
2
+ project:
3
+ name: "nextjs-saas-starter"
4
+ mode: "standard"
@@ -0,0 +1,13 @@
1
+ # Next.js SaaS — Agent Instructions
2
+
3
+ project: nextjs-saas-starter
4
+ stack: Next.js 14 (App Router), TypeScript, Tailwind CSS, Prisma, PostgreSQL, Stripe
5
+ description: Subscription-based software-as-a-service application template
6
+
7
+ ## Build Commands
8
+ ```
9
+ dev: npm run dev
10
+ build: npm run build
11
+ test: npm run test
12
+ lint: npm run lint
13
+ ```
@@ -0,0 +1,5 @@
1
+ # Next.js SaaS — Memory
2
+
3
+ ## Architecture Decisions
4
+ - Decided to use Next-Auth with JWT session strategy.
5
+ - Stripe Webhook events are processed asynchronously in route handlers.
@@ -0,0 +1,4 @@
1
+ version: "0.1"
2
+ project:
3
+ name: "marketing-landing-page"
4
+ mode: "caveman"
@@ -0,0 +1,5 @@
1
+ # SEO Landing Page — Agent Instructions
2
+
3
+ project: marketing-landing-page
4
+ stack: HTML5, CSS3, Vanilla JS
5
+ description: Fast, high-conversion static landing page optimized for Core Web Vitals
@@ -0,0 +1,5 @@
1
+ # SEO Landing Page — Memory
2
+
3
+ ## key-patterns
4
+ - Strictly matching exactly one main header rules.
5
+ - Fast interactive element parameters.
@@ -0,0 +1,4 @@
1
+ version: "0.1"
2
+ project:
3
+ name: "custom-wordpress-theme"
4
+ mode: "standard"
@@ -0,0 +1,5 @@
1
+ # WordPress Site — Agent Instructions
2
+
3
+ project: custom-wordpress-theme
4
+ stack: PHP, WordPress Core, MySQL, Sass, Webpack
5
+ description: Custom theme design and plugin configuration for enterprise website
@@ -0,0 +1,4 @@
1
+ # WordPress Site — Memory
2
+
3
+ ## Key Decisions
4
+ - Standardized custom post types for "Events" and "News" services.
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "multimodel-dev-os",
3
+ "version": "0.3.0",
4
+ "bin": {
5
+ "multimodel-dev-os": "bin/multimodel-dev-os.js"
6
+ },
7
+ "description": "Portable, vendor-neutral AI Dev OS for multi-agent coding workflows",
8
+ "keywords": [
9
+ "ai",
10
+ "agents",
11
+ "coding",
12
+ "multi-agent",
13
+ "developer-tools",
14
+ "agents-md",
15
+ "ai-dev-os"
16
+ ],
17
+ "homepage": "https://github.com/rizvee/multimodel-dev-os",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/rizvee/multimodel-dev-os.git"
21
+ },
22
+ "license": "MIT",
23
+ "author": "rizvee",
24
+ "type": "module",
25
+ "files": [
26
+ "AGENTS.md",
27
+ "MEMORY.md",
28
+ "TASKS.md",
29
+ "RUNBOOK.md",
30
+ ".ai/",
31
+ "adapters/",
32
+ "scripts/",
33
+ "docs/",
34
+ "examples/",
35
+ "bin/"
36
+ ],
37
+ "scripts": {
38
+ "verify": "bash scripts/verify.sh",
39
+ "test:cli": "node bin/multimodel-dev-os.js verify",
40
+ "pack:template": "bash scripts/pack-template.sh",
41
+ "pack": "bash scripts/pack-template.sh"
42
+ }
43
+ }