multimodel-dev-os 1.1.0 → 2.0.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.
Files changed (63) hide show
  1. package/.ai/adapters/custom-adapter.example.yaml +9 -0
  2. package/.ai/adapters/registry.yaml +56 -0
  3. package/.ai/models/README.md +14 -0
  4. package/.ai/models/local-models.yaml +20 -0
  5. package/.ai/models/providers.yaml +29 -0
  6. package/.ai/models/registry.yaml +73 -0
  7. package/.ai/models/routing-presets.yaml +23 -0
  8. package/.ai/skills/custom-skill.example.md +15 -0
  9. package/.ai/templates/custom-template.example.yaml +19 -0
  10. package/.ai/templates/registry.yaml +522 -0
  11. package/README.md +30 -18
  12. package/bin/multimodel-dev-os.js +835 -92
  13. package/docs/.vitepress/config.js +36 -1
  14. package/docs/adapter-authoring.md +46 -0
  15. package/docs/agent-compatibility.md +51 -0
  16. package/docs/cli-roadmap.md +12 -23
  17. package/docs/faq.md +1 -1
  18. package/docs/final-launch.md +5 -4
  19. package/docs/index.md +5 -5
  20. package/docs/local-models.md +48 -0
  21. package/docs/mobile-android.md +75 -0
  22. package/docs/model-compatibility.md +65 -0
  23. package/docs/model-routing.md +45 -0
  24. package/docs/npm-publishing.md +38 -11
  25. package/docs/package-safety.md +29 -0
  26. package/docs/provider-strategy.md +44 -0
  27. package/docs/public/llms-full.txt +82 -73
  28. package/docs/public/llms.txt +36 -34
  29. package/docs/public/sitemap.xml +51 -1
  30. package/docs/quickstart.md +11 -18
  31. package/docs/registry-contribution.md +20 -0
  32. package/docs/release-policy.md +9 -0
  33. package/docs/skill-authoring.md +56 -0
  34. package/docs/template-authoring.md +65 -0
  35. package/docs/templates-guide.md +3 -3
  36. package/docs/token-optimization.md +27 -0
  37. package/docs/v2-migration.md +31 -0
  38. package/docs/v2-release-checklist.md +30 -0
  39. package/docs/v2-roadmap.md +95 -0
  40. package/examples/expo-react-native-android/.ai/config.yaml +22 -0
  41. package/examples/expo-react-native-android/.ai/context/architecture.md +18 -0
  42. package/examples/expo-react-native-android/.ai/context/context-budget.md +4 -0
  43. package/examples/expo-react-native-android/.ai/context/model-map.md +6 -0
  44. package/examples/expo-react-native-android/.ai/context/project-brief.md +9 -0
  45. package/examples/expo-react-native-android/.ai/session-logs/.gitkeep +1 -0
  46. package/examples/expo-react-native-android/.ai/skills/expo-android-build.md +11 -0
  47. package/examples/expo-react-native-android/AGENTS.md +20 -0
  48. package/examples/expo-react-native-android/MEMORY.md +13 -0
  49. package/examples/expo-react-native-android/README.md +101 -0
  50. package/examples/expo-react-native-android/RUNBOOK.md +36 -0
  51. package/examples/expo-react-native-android/TASKS.md +14 -0
  52. package/examples/expo-react-native-android/app.config.ts +40 -0
  53. package/examples/expo-react-native-android/app.json +34 -0
  54. package/examples/expo-react-native-android/eas.json +26 -0
  55. package/examples/expo-react-native-android/jest.config.js +11 -0
  56. package/examples/expo-react-native-android/src/app/_layout.tsx +89 -0
  57. package/examples/expo-react-native-android/src/lib/secure-storage.ts +63 -0
  58. package/examples/expo-react-native-android/src/services/api-client.ts +106 -0
  59. package/package.json +3 -2
  60. package/scripts/install.ps1 +230 -230
  61. package/scripts/install.sh +1 -1
  62. package/scripts/prepublish-guard.js +43 -0
  63. package/scripts/verify.js +178 -1
@@ -0,0 +1,522 @@
1
+ # MultiModel Dev OS Template Registry
2
+ # Maps built-in stack specifications, highlighted skills, categories, required files, and maturity levels.
3
+
4
+ templates:
5
+ # --- A. Web / Frontend ---
6
+ nextjs-saas:
7
+ name: nextjs-saas
8
+ description: Next.js App Router starter with TypeScript, Prisma database, Tailwind CSS, and Stripe subscription setup.
9
+ stack: Next.js 14, React 18, TypeScript, Tailwind CSS, Prisma ORM, Stripe payments
10
+ skill: nextjs-action-build.md
11
+ skillDesc: React Server Actions secure implementation conventions.
12
+ category: Web
13
+ status: stable
14
+ maturity: production-ready
15
+ required_files:
16
+ - AGENTS.md
17
+ - MEMORY.md
18
+ - TASKS.md
19
+ - RUNBOOK.md
20
+ - .ai/config.yaml
21
+ - .ai/context/project-brief.md
22
+ - .ai/context/architecture.md
23
+ - .ai/context/model-map.md
24
+ - .ai/context/context-budget.md
25
+ - .ai/skills/nextjs-action-build.md
26
+ nextjs-dashboard:
27
+ name: nextjs-dashboard
28
+ description: Production-ready dashboard with chart widgets, tables, search, and dynamic routing components.
29
+ stack: Next.js 14, Tailwind CSS, Recharts, TypeScript
30
+ skill: dashboard-chart.md
31
+ skillDesc: Dynamic client-side chart hydration and loading states.
32
+ category: Web
33
+ status: planned
34
+ maturity: concept
35
+ nextjs-ecommerce:
36
+ name: nextjs-ecommerce
37
+ description: Headless storefront with local state basket management and Stripe Checkout integration.
38
+ stack: Next.js, Tailwind, Stripe API
39
+ skill: checkout-session.md
40
+ skillDesc: Centralized storefront checkout redirect routines.
41
+ category: Web
42
+ status: planned
43
+ maturity: concept
44
+ react-spa:
45
+ name: react-spa
46
+ description: Standard single-page React app bundled with Vite and React Router.
47
+ stack: React, React Router, Vite, CSS Modules
48
+ skill: spa-router.md
49
+ skillDesc: Client-side fallback routing and lazy-loading components.
50
+ category: Web
51
+ status: planned
52
+ maturity: concept
53
+ vite-react:
54
+ name: vite-react
55
+ description: Clean React + TypeScript skeleton with asset optimization scripts.
56
+ stack: Vite, React 18, TypeScript, Tailwind CSS
57
+ skill: vite-asset.md
58
+ skillDesc: Dynamic asset preloading and static chunking.
59
+ category: Web
60
+ status: planned
61
+ maturity: concept
62
+ astro-content-site:
63
+ name: astro-content-site
64
+ description: Astro content site optimized for 100/100 Lighthouse performance and Core Web Vitals.
65
+ stack: Astro, HTML5, structured JSON-LD SEO markup
66
+ skill: astro-seo.md
67
+ skillDesc: Structured schema injection and responsive image generation.
68
+ category: Web
69
+ status: planned
70
+ maturity: concept
71
+ vue-nuxt-app:
72
+ name: vue-nuxt-app
73
+ description: Nuxt.js SSR application with pinia state management.
74
+ stack: Nuxt 3, Vue 3, Pinia, Tailwind CSS
75
+ skill: nuxt-ssr.md
76
+ skillDesc: Server-side state hydration and API integration.
77
+ category: Web
78
+ status: planned
79
+ maturity: concept
80
+ sveltekit-app:
81
+ name: sveltekit-app
82
+ description: SvelteKit application skeleton with built-in routing.
83
+ stack: SvelteKit, Svelte, Vite
84
+ skill: svelte-routing.md
85
+ skillDesc: Directory-based routing and load function integration.
86
+ category: Web
87
+ status: planned
88
+ maturity: concept
89
+
90
+ # --- B. Backend / API ---
91
+ node-express-api:
92
+ name: node-express-api
93
+ description: Express.js backend with JSON Web Tokens, Joi schema validation, and SQL logger hooks.
94
+ stack: Node.js, Express, JWT, Joi, Winston logger
95
+ skill: express-auth.md
96
+ skillDesc: Secure middleware filters and authorization token parsing.
97
+ category: Backend
98
+ status: planned
99
+ maturity: concept
100
+ nestjs-api:
101
+ name: nestjs-api
102
+ description: Modular NestJS backend with Swagger documentation and PostgreSQL repository.
103
+ stack: NestJS, TypeORM, PostgreSQL, Swagger
104
+ skill: nestjs-controller.md
105
+ skillDesc: DTO validations and guard decorators.
106
+ category: Backend
107
+ status: planned
108
+ maturity: concept
109
+ fastapi-python:
110
+ name: fastapi-python
111
+ description: FastAPI application with Pydantic validation, SQLite hooks, and automatic OpenAPI generation.
112
+ stack: FastAPI, Python, Pydantic, SQLAlchemy
113
+ skill: fastapi-route.md
114
+ skillDesc: Async route handlers and query dependency injection.
115
+ category: Backend
116
+ status: planned
117
+ maturity: concept
118
+ django-api:
119
+ name: django-api
120
+ description: Django REST Framework starter with model serializing and standard authentication.
121
+ stack: Django, Python, DRF, SQLite
122
+ skill: django-serialize.md
123
+ skillDesc: Model serializer mappings and security filters.
124
+ category: Backend
125
+ status: planned
126
+ maturity: concept
127
+ laravel-api:
128
+ name: laravel-api
129
+ description: Laravel API backend with Eloquent models and Sanctum auth token management.
130
+ stack: Laravel, PHP, Eloquent, Sanctum
131
+ skill: laravel-route.md
132
+ skillDesc: Controller resource routes and validation requests.
133
+ category: Backend
134
+ status: planned
135
+ maturity: concept
136
+ go-api:
137
+ name: go-api
138
+ description: Go REST API boilerplate with gorilla/mux routing and sqlx connections.
139
+ stack: Go, Gorilla Mux, sqlx, PostgreSQL
140
+ skill: go-handler.md
141
+ skillDesc: JSON body decoding and DB transactions.
142
+ category: Backend
143
+ status: planned
144
+ maturity: concept
145
+ dotnet-api:
146
+ name: dotnet-api
147
+ description: .NET Core Web API template with Entity Framework Core.
148
+ stack: C#, .NET Core, Entity Framework, SQL Server
149
+ skill: dotnet-controller.md
150
+ skillDesc: API controller mapping and dependency injection.
151
+ category: Backend
152
+ status: planned
153
+ maturity: concept
154
+ java-spring-api:
155
+ name: java-spring-api
156
+ description: Spring Boot REST API with JPA hibernate repositories and security controls.
157
+ stack: Java, Spring Boot, Spring Security, Hibernate
158
+ skill: spring-repository.md
159
+ skillDesc: JPA entity mapping and transaction boundaries.
160
+ category: Backend
161
+ status: planned
162
+ maturity: concept
163
+
164
+ # --- C. Mobile ---
165
+ expo-react-native-android:
166
+ name: expo-react-native-android
167
+ description: Production-ready Expo React Native Android application boilerplate with EAS Build, env profiles, secure store, and API clients.
168
+ stack: Expo, React Native, TypeScript, EAS Build CLI, expo-secure-store
169
+ skill: expo-android-build.md
170
+ skillDesc: Expo EAS Build configurations and environment validation checklists.
171
+ category: Mobile
172
+ status: stable
173
+ maturity: production-ready
174
+ required_files:
175
+ - AGENTS.md
176
+ - MEMORY.md
177
+ - TASKS.md
178
+ - RUNBOOK.md
179
+ - .ai/config.yaml
180
+ - .ai/context/project-brief.md
181
+ - .ai/context/architecture.md
182
+ - .ai/context/model-map.md
183
+ - .ai/context/context-budget.md
184
+ - .ai/skills/expo-android-build.md
185
+ - app.json
186
+ - eas.json
187
+ - app.config.ts
188
+ - jest.config.js
189
+ - src/app/_layout.tsx
190
+ - src/lib/secure-storage.ts
191
+ - src/services/api-client.ts
192
+ expo-react-native-cross-platform:
193
+ name: expo-react-native-cross-platform
194
+ description: Expo starter with Android, iOS, and Web deployment configurations.
195
+ stack: Expo, React Native, React Native Web, TypeScript
196
+ skill: expo-platform.md
197
+ skillDesc: Cross-platform component splitting and styles.
198
+ category: Mobile
199
+ status: planned
200
+ maturity: concept
201
+ react-native-production-app:
202
+ name: react-native-production-app
203
+ description: Bare React Native workspace setup with native Android folders.
204
+ stack: React Native CLI, TypeScript, Native Modules
205
+ skill: rn-native.md
206
+ skillDesc: Native module bridge configuration.
207
+ category: Mobile
208
+ status: planned
209
+ maturity: concept
210
+ flutter-app:
211
+ name: flutter-app
212
+ description: Flutter project skeleton with Bloc state management.
213
+ stack: Flutter, Dart, Bloc, Provider
214
+ skill: flutter-bloc.md
215
+ skillDesc: Bloc event mapping and state transitions.
216
+ category: Mobile
217
+ status: planned
218
+ maturity: concept
219
+
220
+ # --- D. AI / Agentic Apps ---
221
+ ai-chat-app:
222
+ name: ai-chat-app
223
+ description: Chat interface with server-sent event (SSE) streaming capabilities.
224
+ stack: Vite, React, EventSource API, Node.js
225
+ skill: chat-stream.md
226
+ skillDesc: SSE chunk decoder and chat history managers.
227
+ category: AI/Agentic
228
+ status: planned
229
+ maturity: concept
230
+ rag-knowledge-base:
231
+ name: rag-knowledge-base
232
+ description: Document ingestion pipelines, text chunking hooks, and vector DB search scripts.
233
+ stack: Python, LlamaIndex, Qdrant, FastAPI
234
+ skill: rag-embed.md
235
+ skillDesc: Vector embedding generation and semantic retrieval.
236
+ category: AI/Agentic
237
+ status: planned
238
+ maturity: concept
239
+ ai-agent-workflow:
240
+ name: ai-agent-workflow
241
+ description: Multi-agent state machine orchestration layout with workflow memory.
242
+ stack: LangGraph, Python, SQLite state saver
243
+ skill: agent-state.md
244
+ skillDesc: State machine node definitions and reducer logic.
245
+ category: AI/Agentic
246
+ status: planned
247
+ maturity: concept
248
+ mcp-server-project:
249
+ name: mcp-server-project
250
+ description: Model Context Protocol server template to register custom tools.
251
+ stack: Node.js, TypeScript, MCP SDK
252
+ skill: mcp-tool.md
253
+ skillDesc: MCP tool schema mapping and request routing.
254
+ category: AI/Agentic
255
+ status: planned
256
+ maturity: concept
257
+ local-llm-app:
258
+ name: local-llm-app
259
+ description: Local inference app leveraging Ollama or Llama.cpp endpoints.
260
+ stack: HTML, JS, Ollama API, Llama.cpp
261
+ skill: local-inference.md
262
+ skillDesc: Local fetch routing and fallback model mapping.
263
+ category: AI/Agentic
264
+ status: planned
265
+ maturity: concept
266
+ multimodel-router-app:
267
+ name: multimodel-router-app
268
+ description: Dynamic routing middleware selecting models based on cost and reasoning tiers.
269
+ stack: Node.js, TypeScript, providers YAML registry
270
+ skill: model-route.md
271
+ skillDesc: Dynamic payload forwarding and token counter.
272
+ category: AI/Agentic
273
+ status: planned
274
+ maturity: concept
275
+ browser-agent-automation:
276
+ name: browser-agent-automation
277
+ description: Puppeteer and Playwright automation scripts for agent interaction testing.
278
+ stack: Node.js, Playwright, Chromium API
279
+ skill: browser-automation.md
280
+ skillDesc: DOM locator verification and screen recording loops.
281
+ category: AI/Agentic
282
+ status: planned
283
+ maturity: concept
284
+ voice-agent-app:
285
+ name: voice-agent-app
286
+ description: Real-time audio streaming and speech-to-text integration widgets.
287
+ stack: WebSocket, Web Audio API, Gemini Live API
288
+ skill: voice-stream.md
289
+ skillDesc: Audio PCM buffer conversion and WebSocket listeners.
290
+ category: AI/Agentic
291
+ status: planned
292
+ maturity: concept
293
+
294
+ # --- E. Business / Growth ---
295
+ ecommerce-store:
296
+ name: ecommerce-store
297
+ description: PCI-compliant headless e-commerce store with secure checkout loops, card state validations, and Stripe webhooks.
298
+ stack: Headless Store API, cart states, secure payment webhooks, order database triggers
299
+ skill: webhook-handler.md
300
+ skillDesc: Stripe order checkout webhook secure listener verification rules.
301
+ category: Business
302
+ status: stable
303
+ maturity: production-ready
304
+ required_files:
305
+ - AGENTS.md
306
+ - MEMORY.md
307
+ - TASKS.md
308
+ - RUNBOOK.md
309
+ - .ai/config.yaml
310
+ - .ai/context/project-brief.md
311
+ - .ai/context/architecture.md
312
+ - .ai/context/model-map.md
313
+ - .ai/context/context-budget.md
314
+ - .ai/skills/webhook-handler.md
315
+ wordpress-site:
316
+ name: wordpress-site
317
+ description: WordPress custom block theme and plugin development profile with secure PHP database query rules.
318
+ stack: WordPress Core, PHP, Gutenberg Block APIs, theme customization hooks
319
+ skill: plugin-boilerplate.md
320
+ skillDesc: PHP hook registrations and sanitization gates boilerplate.
321
+ category: Business
322
+ status: stable
323
+ maturity: production-ready
324
+ required_files:
325
+ - AGENTS.md
326
+ - MEMORY.md
327
+ - TASKS.md
328
+ - RUNBOOK.md
329
+ - .ai/config.yaml
330
+ - .ai/context/project-brief.md
331
+ - .ai/context/architecture.md
332
+ - .ai/context/model-map.md
333
+ - .ai/context/context-budget.md
334
+ - .ai/skills/plugin-boilerplate.md
335
+ seo-landing-page:
336
+ name: seo-landing-page
337
+ description: Ultra-fast static landing page layout optimized for Astro, high Core Web Vitals scores, and JSON-LD schema markup.
338
+ stack: Astro, HTML5, structured JSON-LD SEO markup, asset minification frameworks
339
+ skill: seo-audit.md
340
+ skillDesc: Lighthouse audits optimization guidelines and Core Web Vitals targets.
341
+ category: Business
342
+ status: stable
343
+ maturity: production-ready
344
+ required_files:
345
+ - AGENTS.md
346
+ - MEMORY.md
347
+ - TASKS.md
348
+ - RUNBOOK.md
349
+ - .ai/config.yaml
350
+ - .ai/context/project-brief.md
351
+ - .ai/context/architecture.md
352
+ - .ai/context/model-map.md
353
+ - .ai/context/context-budget.md
354
+ - .ai/skills/seo-audit.md
355
+ content-marketing-engine:
356
+ name: content-marketing-engine
357
+ description: Markdown-based blog engine optimized for search visibility.
358
+ stack: Astro, Markdown, Tailwind CSS
359
+ skill: blog-seo.md
360
+ skillDesc: Sitemap dynamic compiler and canonical tag validation.
361
+ category: Business
362
+ status: planned
363
+ maturity: concept
364
+ analytics-dashboard:
365
+ name: analytics-dashboard
366
+ description: Customer analytics tracker interface with visual charts.
367
+ stack: React, Vite, Chart.js
368
+ skill: chart-render.md
369
+ skillDesc: Dynamic data mapping and tooltip events.
370
+ category: Business
371
+ status: planned
372
+ maturity: concept
373
+ crm-lightweight:
374
+ name: crm-lightweight
375
+ description: Sales pipeline tracker interface.
376
+ stack: Next.js, SQLite, Tailwind CSS
377
+ skill: crm-pipeline.md
378
+ skillDesc: Deal stage drag-and-drop state modifications.
379
+ category: Business
380
+ status: planned
381
+ maturity: concept
382
+ customer-support-agent:
383
+ name: customer-support-agent
384
+ description: AI-driven customer support chat widget.
385
+ stack: HTML, Vanilla JS, OpenAI Assistants API
386
+ skill: support-widget.md
387
+ skillDesc: Assistants thread handling and message polling.
388
+ category: Business
389
+ status: planned
390
+ maturity: concept
391
+
392
+ # --- F. DevOps / Automation ---
393
+ github-actions-ci:
394
+ name: github-actions-ci
395
+ description: CI/CD workflows for building and testing multi-model applications.
396
+ stack: GitHub Actions, Docker, Node.js environment
397
+ skill: ci-workflow.md
398
+ skillDesc: Workflow triggers and test reporting steps.
399
+ category: DevOps
400
+ status: planned
401
+ maturity: concept
402
+ dockerized-app:
403
+ name: dockerized-app
404
+ description: Docker Compose setups for multi-container web apps.
405
+ stack: Docker, Docker Compose, Nginx, PostgreSQL
406
+ skill: docker-compose.md
407
+ skillDesc: Environment variables injection and network bridges.
408
+ category: DevOps
409
+ status: planned
410
+ maturity: concept
411
+ cpanel-deploy-app:
412
+ name: cpanel-deploy-app
413
+ description: FTP/SFTP deployment automation and server checklists.
414
+ stack: Node.js, SFTP Client, FTP Deploy
415
+ skill: cpanel-deploy.md
416
+ skillDesc: Secure file transfer protocols and remote permission audits.
417
+ category: DevOps
418
+ status: planned
419
+ maturity: concept
420
+ cloudflare-worker:
421
+ name: cloudflare-worker
422
+ description: Cloudflare Worker template for edge API routing.
423
+ stack: Wrangler, Cloudflare Workers, Hono framework
424
+ skill: worker-route.md
425
+ skillDesc: Edge routing handlers and KV storage bindings.
426
+ category: DevOps
427
+ status: planned
428
+ maturity: concept
429
+ vercel-app:
430
+ name: vercel-app
431
+ description: Serverless deployment config file with serverless functions settings.
432
+ stack: Vercel CLI, vercel.json configuration
433
+ skill: vercel-deploy.md
434
+ skillDesc: Redirect mappings and custom headers.
435
+ category: DevOps
436
+ status: planned
437
+ maturity: concept
438
+ railway-app:
439
+ name: railway-app
440
+ description: Railway cloud platform deployment configuration template.
441
+ stack: Railway CLI, Railway Config
442
+ skill: railway-deploy.md
443
+ skillDesc: Database binding linkages and start commands.
444
+ category: DevOps
445
+ status: planned
446
+ maturity: concept
447
+ supabase-app:
448
+ name: supabase-app
449
+ description: Supabase database migrations and edge functions setups.
450
+ stack: Supabase CLI, PostgreSQL, Deno edge functions
451
+ skill: supabase-edge.md
452
+ skillDesc: JWT verification and edge route handlers.
453
+ category: DevOps
454
+ status: planned
455
+ maturity: concept
456
+ firebase-app:
457
+ name: firebase-app
458
+ description: Firebase hosting configurations and cloud functions.
459
+ stack: Firebase CLI, TypeScript, Cloud Functions
460
+ skill: firebase-function.md
461
+ skillDesc: HTTPS cloud functions triggered routes.
462
+ category: DevOps
463
+ status: planned
464
+ maturity: concept
465
+
466
+ # --- G. Data / Analytics ---
467
+ python-data-pipeline:
468
+ name: python-data-pipeline
469
+ description: Pandas and Polars data ingestion and sanitization pipeline.
470
+ stack: Python, Pandas, Polars, DuckDB
471
+ skill: data-pipeline.md
472
+ skillDesc: CSV parsing and database bulk copy loops.
473
+ category: Data
474
+ status: planned
475
+ maturity: concept
476
+ postgres-app:
477
+ name: postgres-app
478
+ description: Database schema migration scripts and indexing strategies.
479
+ stack: PostgreSQL, SQL, Knex.js migrations
480
+ skill: db-migration.md
481
+ skillDesc: Table definitions and composite index optimization.
482
+ category: Data
483
+ status: planned
484
+ maturity: concept
485
+ vector-db-rag:
486
+ name: vector-db-rag
487
+ description: Vector DB schemas, collections, and custom index settings.
488
+ stack: Pinecone, Qdrant, Milvus SDK
489
+ skill: vector-index.md
490
+ skillDesc: Distance metrics configuration and payload filtering.
491
+ category: Data
492
+ status: planned
493
+ maturity: concept
494
+ warehouse-reporting:
495
+ name: warehouse-reporting
496
+ description: Data warehouse analytical queries and report compilers.
497
+ stack: ClickHouse, SQL, Node.js charts
498
+ skill: db-reporting.md
499
+ skillDesc: Analytical aggregation queries and dashboard bindings.
500
+ category: Data
501
+ status: planned
502
+ maturity: concept
503
+ general-app:
504
+ name: general-app
505
+ description: Baseline generic fallback profile for standard backend systems (Python, Go, Node, Rust) and universal git workflows.
506
+ stack: Universal backends baseline structure, default git flow parameters
507
+ skill: example-skill.md
508
+ skillDesc: Generic baseline instructions and coding standards.
509
+ category: Data
510
+ status: stable
511
+ maturity: production-ready
512
+ required_files:
513
+ - AGENTS.md
514
+ - MEMORY.md
515
+ - TASKS.md
516
+ - RUNBOOK.md
517
+ - .ai/config.yaml
518
+ - .ai/context/project-brief.md
519
+ - .ai/context/architecture.md
520
+ - .ai/context/model-map.md
521
+ - .ai/context/context-budget.md
522
+ - .ai/skills/example-skill.md
package/README.md CHANGED
@@ -9,26 +9,24 @@
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- [![NPM Version](https://img.shields.io/npm/v/multimodel-dev-os.svg?color=blue&style=flat-square)](https://www.npmjs.com/package/multimodel-dev-os)
13
- [![NPM Package](https://img.shields.io/badge/npm-package-cb3837.svg?style=flat-square)](https://www.npmjs.com/package/multimodel-dev-os)
14
- [![License](https://img.shields.io/npm/l/multimodel-dev-os.svg?color=green&style=flat-square)](https://github.com/rizvee/multimodel-dev-os/blob/main/LICENSE)
15
- [![GitHub Release](https://img.shields.io/github/v/release/rizvee/multimodel-dev-os?color=indigo&style=flat-square)](https://github.com/rizvee/multimodel-dev-os/releases)
16
- [![Build Verification](https://img.shields.io/github/actions/workflow/status/rizvee/multimodel-dev-os/verify.yml?branch=main&style=flat-square&label=verification)](https://github.com/rizvee/multimodel-dev-os/actions)
17
- [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-emerald.svg?style=flat-square)](https://github.com/rizvee/multimodel-dev-os/blob/main/CONTRIBUTING.md)
12
+ <a href="https://www.npmjs.com/package/multimodel-dev-os"><img src="https://img.shields.io/npm/v/multimodel-dev-os.svg?color=blue&style=flat-square" alt="NPM Version"></a>
13
+ <a href="https://www.npmjs.com/package/multimodel-dev-os"><img src="https://img.shields.io/badge/npm-package-cb3837.svg?style=flat-square" alt="NPM Package"></a>
14
+ <a href="https://github.com/rizvee/multimodel-dev-os/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/multimodel-dev-os.svg?color=green&style=flat-square" alt="License"></a>
15
+ <a href="https://github.com/rizvee/multimodel-dev-os/releases"><img src="https://img.shields.io/github/v/release/rizvee/multimodel-dev-os?color=indigo&style=flat-square" alt="GitHub Release"></a>
16
+ <a href="https://github.com/rizvee/multimodel-dev-os/actions"><img src="https://img.shields.io/github/actions/workflow/status/rizvee/multimodel-dev-os/verify.yml?branch=main&style=flat-square&label=verification" alt="Build Verification"></a>
17
+ <a href="https://github.com/rizvee/multimodel-dev-os/blob/main/CONTRIBUTING.md"><img src="https://img.shields.io/badge/PRs-welcome-emerald.svg?style=flat-square" alt="PRs Welcome"></a>
18
18
  </p>
19
19
 
20
20
  ---
21
21
 
22
22
  ## One portable AI Dev OS for Codex, Antigravity, Cursor, Claude, Gemini, VS Code, and multimodel coding workflows.
23
23
 
24
- Initialize a unified, tool-neutral AI developer workspace instantly:
24
+ Initialize a stable workspace instantly:
25
25
 
26
26
  ```bash
27
27
  npx multimodel-dev-os@latest init
28
28
  ```
29
29
 
30
- > **Give Codex, Antigravity, Cursor, Claude, Gemini, VS Code, and other AI coding agents the same project brain.**
31
-
32
30
  ---
33
31
 
34
32
  <p align="center">
@@ -108,31 +106,44 @@ MultiModel Dev OS is powered by a pure Node.js CLI with **zero runtime external
108
106
  <img src="assets/terminal-demo.svg" alt="Terminal Demo Sequence" width="100%">
109
107
  </p>
110
108
 
111
- ### 1. Scaffolding Templates
112
- Initialize customized stack specifications:
109
+ ### 1. Scaffolding Templates (Stable npm @latest)
110
+ Initialize customized stack specifications for stable releases:
113
111
  - **Next.js SaaS:** `npx multimodel-dev-os@latest init --template nextjs-saas`
114
112
  - **WordPress Theme/Plugin:** `npx multimodel-dev-os@latest init --template wordpress-site`
115
113
  - **E-Commerce Store:** `npx multimodel-dev-os@latest init --template ecommerce-store`
116
114
  - **SEO Landing Page:** `npx multimodel-dev-os@latest init --template seo-landing-page`
117
115
  - **General Fallback:** `npx multimodel-dev-os@latest init --template general-app`
118
116
 
119
- ### 2. Adapter Linking
117
+ ### 2. Adapter Linking (Stable npm @latest)
120
118
  Inject rules specifically for a developer tool:
121
119
  ```bash
122
120
  npx multimodel-dev-os@latest init --adapter cursor
123
121
  npx multimodel-dev-os@latest init --adapter claude
124
122
  ```
125
123
 
126
- ### 3. Caveman Mode (Token Optimizer)
124
+ ### 3. Caveman Mode (Stable npm @latest)
127
125
  Cuts prompt rules overhead down by **~79%** using highly optimized short-hand declarations:
128
126
  ```bash
129
127
  npx multimodel-dev-os@latest init --caveman
130
128
  ```
131
129
 
132
- ### 4. Quality Gates
130
+ ### 4. Registry & Model Commands (v2.0.0 Stable Release)
131
+ Run model capabilities registries, adapter registers, and scaffold mobile templates directly:
132
+ ```bash
133
+ # List model or adapter registries
134
+ npx multimodel-dev-os@latest models
135
+ npx multimodel-dev-os@latest adapters
136
+
137
+ # Scaffold the Android Expo template
138
+ npx multimodel-dev-os@latest init --template expo-react-native-android
139
+ ```
140
+
141
+ For more details, see the [Model Capabilities Registry Guide](https://rizvee.github.io/multimodel-dev-os/model-compatibility).
142
+
143
+ ### 5. Quality Gates
133
144
  Run assertions and diagnostic checkups:
134
- - **`validate`** (Strict schema checkup): `npx multimodel-dev-os validate`
135
- - **`doctor`** (Advisory compatibility warning): `npx multimodel-dev-os doctor`
145
+ - **`validate`** (Strict schema checkup): `npx multimodel-dev-os@latest validate`
146
+ - **`doctor`** (Advisory compatibility warning): `npx multimodel-dev-os@latest doctor`
136
147
 
137
148
  ---
138
149
 
@@ -171,9 +182,10 @@ Discover how engineering teams deploy MultiModel Dev OS:
171
182
 
172
183
  ---
173
184
 
174
- ## Stable Protocol Specification
185
+ ## Stable Protocol Specification & Roadmap
175
186
 
176
- MultiModel Dev OS version `v1.1.0` officially freezes the Layer 1, Layer 2, and Layer 3 specifications:
187
+ MultiModel Dev OS v2.x packages the stable Layer 1, Layer 2, and Layer 3 specifications alongside the Model Compatibility and Template Galaxy registries.
188
+ - 🏁 [v2 Release Checklist](/docs/v2-release-checklist.md) (Release quality checklist)
177
189
  - 🛡️ [Stable Protocol Specification](https://rizvee.github.io/multimodel-dev-os/stable-protocol)
178
190
  - 🔌 [Multi-Agent Compatibility Guides](https://rizvee.github.io/multimodel-dev-os/compatibility)
179
191
  - 📈 [Upgrade & Migration Guide](https://rizvee.github.io/multimodel-dev-os/migration-guide)