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.
- package/.ai/adapters/custom-adapter.example.yaml +9 -0
- package/.ai/adapters/registry.yaml +56 -0
- package/.ai/models/README.md +14 -0
- package/.ai/models/local-models.yaml +20 -0
- package/.ai/models/providers.yaml +29 -0
- package/.ai/models/registry.yaml +73 -0
- package/.ai/models/routing-presets.yaml +23 -0
- package/.ai/skills/custom-skill.example.md +15 -0
- package/.ai/templates/custom-template.example.yaml +19 -0
- package/.ai/templates/registry.yaml +522 -0
- package/README.md +30 -18
- package/bin/multimodel-dev-os.js +835 -92
- package/docs/.vitepress/config.js +36 -1
- package/docs/adapter-authoring.md +46 -0
- package/docs/agent-compatibility.md +51 -0
- package/docs/cli-roadmap.md +12 -23
- package/docs/faq.md +1 -1
- package/docs/final-launch.md +5 -4
- package/docs/index.md +5 -5
- package/docs/local-models.md +48 -0
- package/docs/mobile-android.md +75 -0
- package/docs/model-compatibility.md +65 -0
- package/docs/model-routing.md +45 -0
- package/docs/npm-publishing.md +38 -11
- package/docs/package-safety.md +29 -0
- package/docs/provider-strategy.md +44 -0
- package/docs/public/llms-full.txt +82 -73
- package/docs/public/llms.txt +36 -34
- package/docs/public/sitemap.xml +51 -1
- package/docs/quickstart.md +11 -18
- package/docs/registry-contribution.md +20 -0
- package/docs/release-policy.md +9 -0
- package/docs/skill-authoring.md +56 -0
- package/docs/template-authoring.md +65 -0
- package/docs/templates-guide.md +3 -3
- package/docs/token-optimization.md +27 -0
- package/docs/v2-migration.md +31 -0
- package/docs/v2-release-checklist.md +30 -0
- package/docs/v2-roadmap.md +95 -0
- package/examples/expo-react-native-android/.ai/config.yaml +22 -0
- package/examples/expo-react-native-android/.ai/context/architecture.md +18 -0
- package/examples/expo-react-native-android/.ai/context/context-budget.md +4 -0
- package/examples/expo-react-native-android/.ai/context/model-map.md +6 -0
- package/examples/expo-react-native-android/.ai/context/project-brief.md +9 -0
- package/examples/expo-react-native-android/.ai/session-logs/.gitkeep +1 -0
- package/examples/expo-react-native-android/.ai/skills/expo-android-build.md +11 -0
- package/examples/expo-react-native-android/AGENTS.md +20 -0
- package/examples/expo-react-native-android/MEMORY.md +13 -0
- package/examples/expo-react-native-android/README.md +101 -0
- package/examples/expo-react-native-android/RUNBOOK.md +36 -0
- package/examples/expo-react-native-android/TASKS.md +14 -0
- package/examples/expo-react-native-android/app.config.ts +40 -0
- package/examples/expo-react-native-android/app.json +34 -0
- package/examples/expo-react-native-android/eas.json +26 -0
- package/examples/expo-react-native-android/jest.config.js +11 -0
- package/examples/expo-react-native-android/src/app/_layout.tsx +89 -0
- package/examples/expo-react-native-android/src/lib/secure-storage.ts +63 -0
- package/examples/expo-react-native-android/src/services/api-client.ts +106 -0
- package/package.json +3 -2
- package/scripts/install.ps1 +230 -230
- package/scripts/install.sh +1 -1
- package/scripts/prepublish-guard.js +43 -0
- package/scripts/verify.js +178 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# MultiModel Dev OS - Coding Agents & IDE Adapters Registry
|
|
2
|
+
|
|
3
|
+
adapters:
|
|
4
|
+
cursor:
|
|
5
|
+
name: "Cursor"
|
|
6
|
+
rules_file: ".cursorrules"
|
|
7
|
+
format: "markdown"
|
|
8
|
+
type: "editor"
|
|
9
|
+
|
|
10
|
+
claude:
|
|
11
|
+
name: "Claude Code"
|
|
12
|
+
rules_file: "CLAUDE.md"
|
|
13
|
+
format: "markdown"
|
|
14
|
+
type: "terminal"
|
|
15
|
+
|
|
16
|
+
gemini:
|
|
17
|
+
name: "Gemini / Antigravity"
|
|
18
|
+
rules_file: "GEMINI.md"
|
|
19
|
+
format: "markdown"
|
|
20
|
+
type: "assistant"
|
|
21
|
+
|
|
22
|
+
vscode:
|
|
23
|
+
name: "VS Code settings"
|
|
24
|
+
rules_file: ".vscode/settings.json"
|
|
25
|
+
format: "json"
|
|
26
|
+
type: "editor"
|
|
27
|
+
|
|
28
|
+
antigravity:
|
|
29
|
+
name: "Antigravity settings"
|
|
30
|
+
rules_file: ".gemini/settings.json"
|
|
31
|
+
format: "json"
|
|
32
|
+
type: "assistant"
|
|
33
|
+
|
|
34
|
+
continue:
|
|
35
|
+
name: "Continue"
|
|
36
|
+
rules_file: ".continue/config.json"
|
|
37
|
+
format: "json"
|
|
38
|
+
type: "editor"
|
|
39
|
+
|
|
40
|
+
cline:
|
|
41
|
+
name: "Cline / Roo Code"
|
|
42
|
+
rules_file: ".clinerules"
|
|
43
|
+
format: "markdown"
|
|
44
|
+
type: "editor"
|
|
45
|
+
|
|
46
|
+
aider:
|
|
47
|
+
name: "Aider"
|
|
48
|
+
rules_file: ".aider.conf.yml"
|
|
49
|
+
format: "yaml"
|
|
50
|
+
type: "terminal"
|
|
51
|
+
|
|
52
|
+
windsurf:
|
|
53
|
+
name: "Windsurf"
|
|
54
|
+
rules_file: ".windsurfrules"
|
|
55
|
+
format: "markdown"
|
|
56
|
+
type: "editor"
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Model Compatibility Registry
|
|
2
|
+
|
|
3
|
+
This directory contains the machine-readable configuration files for defining, mapping, and routing AI models inside MultiModel Dev OS.
|
|
4
|
+
|
|
5
|
+
## Registry Contents
|
|
6
|
+
|
|
7
|
+
- **`registry.yaml`**: Lists supported model definitions, capabilities (vision, tool use), cost and coding tiers.
|
|
8
|
+
- **`providers.yaml`**: Defines base API endpoints, headers, and required environment key variables.
|
|
9
|
+
- **`routing-presets.yaml`**: Standard presets for mapping specific workflow tasks (e.g. Planning, Auditing, Coding) to ideal model classes.
|
|
10
|
+
- **`local-models.yaml`**: Configures local offline engines (Ollama, Llama.cpp) and open-weight models.
|
|
11
|
+
|
|
12
|
+
## Usage in Workspaces
|
|
13
|
+
|
|
14
|
+
These files can be parsed by local CLI utilities or IDE assistants to dynamically route queries to the most cost-effective and task-appropriate model.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# MultiModel Dev OS - Local Models Configuration
|
|
2
|
+
# Details offline configurations for Ollama, Llama.cpp, or vLLM
|
|
3
|
+
|
|
4
|
+
local_engines:
|
|
5
|
+
ollama:
|
|
6
|
+
host: "http://localhost:11434"
|
|
7
|
+
models:
|
|
8
|
+
- alias: "local-coder-model"
|
|
9
|
+
official_id: "qwen2.5-coder:7b"
|
|
10
|
+
context_window: 32000
|
|
11
|
+
- alias: "open-weight-reasoner"
|
|
12
|
+
official_id: "deepseek-r1:8b"
|
|
13
|
+
context_window: 16000
|
|
14
|
+
|
|
15
|
+
llama_cpp:
|
|
16
|
+
host: "http://localhost:8080"
|
|
17
|
+
models:
|
|
18
|
+
- alias: "local-coder-model"
|
|
19
|
+
official_id: "custom-qwen-coder"
|
|
20
|
+
context_window: 32000
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# MultiModel Dev OS - AI Providers Configuration
|
|
2
|
+
|
|
3
|
+
providers:
|
|
4
|
+
anthropic:
|
|
5
|
+
name: "Anthropic"
|
|
6
|
+
api_endpoint: "https://api.anthropic.com/v1"
|
|
7
|
+
env_key: "ANTHROPIC_API_KEY"
|
|
8
|
+
default_headers:
|
|
9
|
+
"anthropic-version": "2023-06-01"
|
|
10
|
+
|
|
11
|
+
google:
|
|
12
|
+
name: "Google Gemini"
|
|
13
|
+
api_endpoint: "https://generativelanguage.googleapis.com/v1beta"
|
|
14
|
+
env_key: "GEMINI_API_KEY"
|
|
15
|
+
|
|
16
|
+
openai:
|
|
17
|
+
name: "OpenAI"
|
|
18
|
+
api_endpoint: "https://api.openai.com/v1"
|
|
19
|
+
env_key: "OPENAI_API_KEY"
|
|
20
|
+
|
|
21
|
+
deepseek:
|
|
22
|
+
name: "DeepSeek"
|
|
23
|
+
api_endpoint: "https://api.deepseek.com/v1"
|
|
24
|
+
env_key: "DEEPSEEK_API_KEY"
|
|
25
|
+
|
|
26
|
+
local:
|
|
27
|
+
name: "Local Offline Models"
|
|
28
|
+
api_endpoint: "http://localhost:11434/v1"
|
|
29
|
+
env_key: null
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# MultiModel Dev OS - Model Compatibility Registry
|
|
2
|
+
# Standard mappings for AI coding models, cost tiers, and capabilities
|
|
3
|
+
|
|
4
|
+
models:
|
|
5
|
+
claude-sonnet-latest:
|
|
6
|
+
provider: anthropic
|
|
7
|
+
alias: claude-3-5-sonnet
|
|
8
|
+
official_id: claude-3-5-sonnet-20241022
|
|
9
|
+
context_window: 200000
|
|
10
|
+
tiers:
|
|
11
|
+
cost: high
|
|
12
|
+
speed: medium
|
|
13
|
+
reasoning: premium
|
|
14
|
+
coding: premium
|
|
15
|
+
capabilities:
|
|
16
|
+
vision: true
|
|
17
|
+
tool_use: true
|
|
18
|
+
|
|
19
|
+
gemini-flash-latest:
|
|
20
|
+
provider: google
|
|
21
|
+
alias: gemini-1.5-flash
|
|
22
|
+
official_id: gemini-1.5-flash-001
|
|
23
|
+
context_window: 1048576
|
|
24
|
+
tiers:
|
|
25
|
+
cost: low
|
|
26
|
+
speed: fast
|
|
27
|
+
reasoning: medium
|
|
28
|
+
coding: medium
|
|
29
|
+
capabilities:
|
|
30
|
+
vision: true
|
|
31
|
+
tool_use: true
|
|
32
|
+
|
|
33
|
+
gemini-pro-latest:
|
|
34
|
+
provider: google
|
|
35
|
+
alias: gemini-1.5-pro
|
|
36
|
+
official_id: gemini-1.5-pro-001
|
|
37
|
+
context_window: 2097152
|
|
38
|
+
tiers:
|
|
39
|
+
cost: medium
|
|
40
|
+
speed: medium
|
|
41
|
+
reasoning: premium
|
|
42
|
+
coding: premium
|
|
43
|
+
capabilities:
|
|
44
|
+
vision: true
|
|
45
|
+
tool_use: true
|
|
46
|
+
|
|
47
|
+
gpt-coding-latest:
|
|
48
|
+
provider: openai
|
|
49
|
+
alias: gpt-4o
|
|
50
|
+
official_id: gpt-4o-2024-05-13
|
|
51
|
+
context_window: 128000
|
|
52
|
+
tiers:
|
|
53
|
+
cost: high
|
|
54
|
+
speed: fast
|
|
55
|
+
reasoning: premium
|
|
56
|
+
coding: premium
|
|
57
|
+
capabilities:
|
|
58
|
+
vision: true
|
|
59
|
+
tool_use: true
|
|
60
|
+
|
|
61
|
+
deepseek-coder-latest:
|
|
62
|
+
provider: deepseek
|
|
63
|
+
alias: deepseek-coder
|
|
64
|
+
official_id: deepseek-coder-v2
|
|
65
|
+
context_window: 128000
|
|
66
|
+
tiers:
|
|
67
|
+
cost: low
|
|
68
|
+
speed: medium
|
|
69
|
+
reasoning: premium
|
|
70
|
+
coding: premium
|
|
71
|
+
capabilities:
|
|
72
|
+
vision: false
|
|
73
|
+
tool_use: true
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# MultiModel Dev OS - Routing Presets
|
|
2
|
+
# Maps task categories to default model tiers
|
|
3
|
+
|
|
4
|
+
presets:
|
|
5
|
+
planning:
|
|
6
|
+
primary: "claude-sonnet-latest"
|
|
7
|
+
fallback: "gemini-pro-latest"
|
|
8
|
+
cost_saving: "gemini-flash-latest"
|
|
9
|
+
|
|
10
|
+
scaffolding:
|
|
11
|
+
primary: "gpt-coding-latest"
|
|
12
|
+
fallback: "claude-sonnet-latest"
|
|
13
|
+
cost_saving: "deepseek-coder-latest"
|
|
14
|
+
|
|
15
|
+
coding:
|
|
16
|
+
primary: "claude-sonnet-latest"
|
|
17
|
+
fallback: "deepseek-coder-latest"
|
|
18
|
+
cost_saving: "gemini-flash-latest"
|
|
19
|
+
|
|
20
|
+
auditing:
|
|
21
|
+
primary: "gemini-pro-latest"
|
|
22
|
+
fallback: "claude-sonnet-latest"
|
|
23
|
+
cost_saving: "gemini-flash-latest"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Purpose
|
|
2
|
+
Example skill demonstrating the required structure for MultiModel Dev OS skill compliance.
|
|
3
|
+
|
|
4
|
+
# Activation Trigger
|
|
5
|
+
Trigger when creating a new custom skill file in the workspace.
|
|
6
|
+
|
|
7
|
+
# Input Context
|
|
8
|
+
* Target skill description
|
|
9
|
+
* User rules configuration
|
|
10
|
+
|
|
11
|
+
# Output Contract
|
|
12
|
+
Returns a fully valid markdown skill file containing all required compliance headers.
|
|
13
|
+
|
|
14
|
+
# Token Budget
|
|
15
|
+
~200 tokens
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Custom Template Metadata Entry Example
|
|
2
|
+
# Copy this block into .ai/templates/registry.yaml
|
|
3
|
+
|
|
4
|
+
templates:
|
|
5
|
+
custom-template-example:
|
|
6
|
+
name: "custom-template-example"
|
|
7
|
+
description: "A customized stack starter setup template description."
|
|
8
|
+
stack: "Custom Framework, TypeScript, Database"
|
|
9
|
+
skill: "custom-skill-example.md"
|
|
10
|
+
skillDesc: "Framework specific secure execution rules."
|
|
11
|
+
category: "Web"
|
|
12
|
+
status: "stable"
|
|
13
|
+
maturity: "production-ready"
|
|
14
|
+
required_files:
|
|
15
|
+
- AGENTS.md
|
|
16
|
+
- MEMORY.md
|
|
17
|
+
- TASKS.md
|
|
18
|
+
- RUNBOOK.md
|
|
19
|
+
- .ai/config.yaml
|