multimodel-dev-os 2.0.0 → 2.6.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 (52) hide show
  1. package/.ai/intelligence/README.md +14 -0
  2. package/.ai/intelligence/apply-log.schema.json +65 -0
  3. package/.ai/intelligence/feedback-log.example.jsonl +2 -0
  4. package/.ai/intelligence/feedback.schema.json +47 -0
  5. package/.ai/intelligence/improvement-proposal.schema.json +70 -0
  6. package/.ai/intelligence/learning-rules.example.md +18 -0
  7. package/.ai/intelligence/memory.schema.json +97 -0
  8. package/.ai/policies/approval-gates.md +35 -0
  9. package/.ai/policies/memory-policy.md +30 -0
  10. package/.ai/policies/self-improvement-policy.md +39 -0
  11. package/.ai/proposals/README.md +44 -0
  12. package/.ai/proposals/apply-operation.example.json +22 -0
  13. package/.ai/registries/capabilities.yaml +73 -0
  14. package/.ai/registries/tools.yaml +84 -0
  15. package/.ai/registries/workflows.yaml +217 -0
  16. package/README.md +218 -97
  17. package/bin/multimodel-dev-os.js +2899 -10
  18. package/docs/.vitepress/config.js +23 -1
  19. package/docs/CLI.md +89 -2
  20. package/docs/adapter-sync.md +27 -0
  21. package/docs/adapters.md +16 -0
  22. package/docs/agent-handoff.md +40 -0
  23. package/docs/approved-proposal-apply.md +156 -0
  24. package/docs/capability-registry.md +24 -0
  25. package/docs/cli-roadmap.md +14 -22
  26. package/docs/faq.md +1 -1
  27. package/docs/feedback-learning.md +33 -0
  28. package/docs/future-proof-architecture.md +22 -0
  29. package/docs/hash-compressed-memory.md +72 -0
  30. package/docs/improvement-proposals.md +70 -0
  31. package/docs/index.md +5 -5
  32. package/docs/learning-rules.md +36 -0
  33. package/docs/npm-publishing.md +16 -16
  34. package/docs/public/llms-full.txt +32 -2
  35. package/docs/public/llms.txt +43 -2
  36. package/docs/public/sitemap.xml +81 -1
  37. package/docs/quickstart.md +14 -16
  38. package/docs/real-repo-onboarding.md +27 -0
  39. package/docs/release-policy.md +5 -22
  40. package/docs/repository-command-center.md +52 -0
  41. package/docs/self-improving-codebase.md +46 -0
  42. package/docs/template-recommendation.md +22 -0
  43. package/docs/templates-guide.md +14 -3
  44. package/docs/tool-registry.md +21 -0
  45. package/docs/v2-release-checklist.md +1 -1
  46. package/docs/v2-roadmap.md +21 -1
  47. package/docs/workflow-orchestration.md +59 -0
  48. package/package.json +1 -1
  49. package/scripts/install.ps1 +1 -1
  50. package/scripts/install.sh +1 -1
  51. package/scripts/prepublish-guard.js +3 -3
  52. package/scripts/verify.js +107 -3
@@ -0,0 +1,14 @@
1
+ # Repository Intelligence Layer
2
+
3
+ This directory contains the schemas, structures, and indices that govern the repository intelligence and feedback systems for MultiModel Dev OS.
4
+
5
+ ## Directory Structure
6
+
7
+ * `memory.schema.json` — The JSON schema defining the token-efficient representation of codebase state (hashes, summaries, and dependencies).
8
+ * `feedback.schema.json` — The JSON schema mapping developer feedback logs and instruction overrides.
9
+
10
+ ## Indices & Learning Files (Workspace Specific)
11
+
12
+ When configured, developer agents will generate:
13
+ * `memory.json` — The compiled state index mapping files to fingerprints and semantic summaries.
14
+ * `learnings.yaml` — The database of rule modifications learned from developer feedback.
@@ -0,0 +1,65 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "Proposal Apply Log Record Schema",
4
+ "description": "Schema for capturing individual proposal application audit log records.",
5
+ "type": "object",
6
+ "properties": {
7
+ "id": {
8
+ "type": "string",
9
+ "description": "Unique execution run identifier (e.g. apply-YYYYMMDD-HHMMSS)."
10
+ },
11
+ "proposal_id": {
12
+ "type": "string",
13
+ "description": "The unique proposal identifier."
14
+ },
15
+ "applied_at": {
16
+ "type": "string",
17
+ "format": "date-time",
18
+ "description": "Timestamp when the operations were applied."
19
+ },
20
+ "target": {
21
+ "type": "string",
22
+ "description": "Absolute or relative path to the target workspace root."
23
+ },
24
+ "operations_count": {
25
+ "type": "integer",
26
+ "description": "Total number of operations executed."
27
+ },
28
+ "files_changed": {
29
+ "type": "array",
30
+ "items": { "type": "string" },
31
+ "description": "Files modified or created during this execution."
32
+ },
33
+ "before_hashes": {
34
+ "type": "object",
35
+ "additionalProperties": { "type": ["string", "null"] },
36
+ "description": "SHA-256 hashes of affected files before modifications."
37
+ },
38
+ "after_hashes": {
39
+ "type": "object",
40
+ "additionalProperties": { "type": "string" },
41
+ "description": "SHA-256 hashes of affected files after modifications."
42
+ },
43
+ "status": {
44
+ "type": "string",
45
+ "enum": ["success", "failed"],
46
+ "description": "Execution status of the applied proposal."
47
+ },
48
+ "notes": {
49
+ "type": "string",
50
+ "description": "Summary notes or error details."
51
+ }
52
+ },
53
+ "required": [
54
+ "id",
55
+ "proposal_id",
56
+ "applied_at",
57
+ "target",
58
+ "operations_count",
59
+ "files_changed",
60
+ "before_hashes",
61
+ "after_hashes",
62
+ "status",
63
+ "notes"
64
+ ]
65
+ }
@@ -0,0 +1,2 @@
1
+ {"id":"f10e42b2-6523-4c91-9e73-d8c36034e3fb","created_at":"2026-06-10T17:20:00Z","source":"user","type":"preference","text":"Prefer vanilla CSS or CSS Modules over Tailwind CSS in legacy components.","tags":["styling","legacy"],"related_files":["src/components/legacy/Button.js"],"hash":"b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c"}
2
+ {"id":"a23c56d1-8192-4d02-a19c-c9e83014e3fc","created_at":"2026-06-10T18:05:00Z","source":"user","type":"bug","text":"Ensure all utility scripts have executable permissions on POSIX systems.","tags":["scripts","permissions"],"related_files":["scripts/verify.sh"],"hash":"3d94d35ef6cf89f9212ad12a76a59dccff1352f23cd32812f4850b878ae4944d"}
@@ -0,0 +1,47 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "MultiModel Dev OS Feedback and Learnings Schema",
4
+ "description": "Schema for capturing developer corrections and instructions overrides to refine subsequent agent proposal generations.",
5
+ "type": "object",
6
+ "properties": {
7
+ "version": {
8
+ "type": "string",
9
+ "description": "Schema representation version (e.g. 1.0.0)."
10
+ },
11
+ "learnings": {
12
+ "type": "array",
13
+ "description": "List of compiled learning records.",
14
+ "items": {
15
+ "type": "object",
16
+ "properties": {
17
+ "id": {
18
+ "type": "string",
19
+ "description": "Unique UUID or tag for the learning item."
20
+ },
21
+ "timestamp": {
22
+ "type": "string",
23
+ "format": "date-time"
24
+ },
25
+ "context": {
26
+ "type": "string",
27
+ "description": "Topic or architectural tier (e.g. styling, db-migrations, testing)."
28
+ },
29
+ "pattern": {
30
+ "type": "string",
31
+ "description": "File path pattern or glob rules matching this learning directive."
32
+ },
33
+ "rule": {
34
+ "type": "string",
35
+ "description": "The exact instructional rule to append to the agent context."
36
+ },
37
+ "rejection_reason": {
38
+ "type": "string",
39
+ "description": "Developer comment or description of the rejected behavior."
40
+ }
41
+ },
42
+ "required": ["id", "timestamp", "context", "rule"]
43
+ }
44
+ }
45
+ },
46
+ "required": ["version", "learnings"]
47
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "Improvement Proposal Schema",
4
+ "description": "Validation schema for YAML frontmatter inside codebase improvement proposals.",
5
+ "type": "object",
6
+ "properties": {
7
+ "id": {
8
+ "type": "string",
9
+ "pattern": "^proposal-\\d{8}-\\d{6}$",
10
+ "description": "Unique proposal identifier with format YYYYMMDD-HHMMSS."
11
+ },
12
+ "created_at": {
13
+ "type": "string",
14
+ "format": "date-time",
15
+ "description": "Timestamp when the proposal was generated."
16
+ },
17
+ "title": {
18
+ "type": "string",
19
+ "description": "Short description of the proposed improvement."
20
+ },
21
+ "problem": {
22
+ "type": "string",
23
+ "description": "Detailed description of the issue or policy violation found."
24
+ },
25
+ "evidence": {
26
+ "type": "string",
27
+ "description": "Specific code lines, directory structure, or logs that prove the issue exists."
28
+ },
29
+ "risk_level": {
30
+ "type": "string",
31
+ "enum": ["low", "medium", "high"],
32
+ "description": "Classification of proposal impact risk."
33
+ },
34
+ "affected_files": {
35
+ "type": "array",
36
+ "items": { "type": "string" },
37
+ "description": "Explicit paths of files targeted for modifications."
38
+ },
39
+ "suggested_change": {
40
+ "type": "string",
41
+ "description": "Summary or code snippet of the proposed modifications."
42
+ },
43
+ "verify_command": {
44
+ "type": "string",
45
+ "description": "Command to run to verify changes (e.g. npm run verify)."
46
+ },
47
+ "rollback_plan": {
48
+ "type": "string",
49
+ "description": "Command to run to revert changes if verification fails."
50
+ },
51
+ "approval_status": {
52
+ "type": "string",
53
+ "enum": ["pending", "approved", "rejected"],
54
+ "description": "Human-in-the-loop approval gate status."
55
+ }
56
+ },
57
+ "required": [
58
+ "id",
59
+ "created_at",
60
+ "title",
61
+ "problem",
62
+ "evidence",
63
+ "risk_level",
64
+ "affected_files",
65
+ "suggested_change",
66
+ "verify_command",
67
+ "rollback_plan",
68
+ "approval_status"
69
+ ]
70
+ }
@@ -0,0 +1,18 @@
1
+ # Compiled Learning Rules (Example)
2
+
3
+ *Generated automatically by MultiModel Dev OS. Do not modify manually.*
4
+
5
+ Last compiled: 2026-06-10T18:10:00Z
6
+ Total source feedback items: 2
7
+
8
+ ## Active Instructions
9
+
10
+ ### Category: styling
11
+ * **Pattern:** `src/components/legacy/**/*`
12
+ * **Rule:** Prefer vanilla CSS or CSS Modules over Tailwind CSS in legacy components.
13
+ * **Source IDs:** [`f10e42b2-6523-4c91-9e73-d8c36034e3fb`]
14
+
15
+ ### Category: scripts
16
+ * **Pattern:** `scripts/**/*`
17
+ * **Rule:** Ensure all utility scripts have executable permissions on POSIX systems.
18
+ * **Source IDs:** [`a23c56d1-8192-4d02-a19c-c9e83014e3fc`]
@@ -0,0 +1,97 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "MultiModel Dev OS Repository Memory Schema",
4
+ "description": "Schema for token-efficient repository state representation, including fingerprints, dependencies, summaries, and architectural decisions.",
5
+ "type": "object",
6
+ "properties": {
7
+ "version": {
8
+ "type": "string",
9
+ "description": "Schema representation version (e.g. 1.0.0)."
10
+ },
11
+ "fingerprints": {
12
+ "type": "object",
13
+ "description": "File path content fingerprints.",
14
+ "additionalProperties": {
15
+ "type": "object",
16
+ "properties": {
17
+ "hash": {
18
+ "type": "string",
19
+ "description": "Cryptographic or content-hash fingerprint (e.g. sha256)."
20
+ },
21
+ "size": {
22
+ "type": "integer",
23
+ "description": "File size in bytes."
24
+ },
25
+ "last_modified": {
26
+ "type": "string",
27
+ "format": "date-time",
28
+ "description": "ISO timestamp of the last modification."
29
+ }
30
+ },
31
+ "required": ["hash", "size", "last_modified"]
32
+ }
33
+ },
34
+ "summaries": {
35
+ "type": "object",
36
+ "description": "Semantic high-density summaries of directories and files.",
37
+ "additionalProperties": {
38
+ "type": "string"
39
+ }
40
+ },
41
+ "dependency_map": {
42
+ "type": "object",
43
+ "description": "Imports, exports, and linkage mapping among codebase elements.",
44
+ "additionalProperties": {
45
+ "type": "array",
46
+ "items": {
47
+ "type": "string"
48
+ }
49
+ }
50
+ },
51
+ "decisions": {
52
+ "type": "array",
53
+ "description": "Historical log of resolved architectural refactor decisions.",
54
+ "items": {
55
+ "type": "object",
56
+ "properties": {
57
+ "date": {
58
+ "type": "string",
59
+ "format": "date-time"
60
+ },
61
+ "issue": {
62
+ "type": "string"
63
+ },
64
+ "resolution": {
65
+ "type": "string"
66
+ },
67
+ "context": {
68
+ "type": "string"
69
+ }
70
+ },
71
+ "required": ["date", "issue", "resolution"]
72
+ }
73
+ },
74
+ "risks": {
75
+ "type": "array",
76
+ "description": "Code patterns flagged as sensitive requiring higher security compliance constraints.",
77
+ "items": {
78
+ "type": "object",
79
+ "properties": {
80
+ "file_pattern": {
81
+ "type": "string",
82
+ "description": "Glob pattern of the target files."
83
+ },
84
+ "risk_description": {
85
+ "type": "string"
86
+ },
87
+ "severity": {
88
+ "type": "string",
89
+ "enum": ["low", "medium", "high"]
90
+ }
91
+ },
92
+ "required": ["file_pattern", "risk_description", "severity"]
93
+ }
94
+ }
95
+ },
96
+ "required": ["version", "fingerprints", "summaries", "dependency_map", "decisions", "risks"]
97
+ }
@@ -0,0 +1,35 @@
1
+ # MultiModel Dev OS Approval Gates Policy
2
+
3
+ This document defines the Human-in-the-Loop (HITL) gates, risk levels, and validation protocols required before any changes proposed by MultiModel Dev OS can be applied.
4
+
5
+ ---
6
+
7
+ ## 1. HITL Gate Framework
8
+
9
+ Automated developer agents must classify code modifications into one of three risk categories, each requiring a specific approval gate:
10
+
11
+ | Risk Category | Example Changes | Required Approval Gate |
12
+ |:---|:---|:---|
13
+ | **Low Risk** | Documentation updates, CSS style tweaks, comment insertions, minor typos. | **Gate 1**: Automated `verify` + passive developer sign-off. |
14
+ | **Medium Risk** | Refactoring internal functions, adding utility files, updating package dependencies, writing unit tests. | **Gate 2**: Pre-apply diff review + automated verification + manual commit approval. |
15
+ | **High Risk** | Database schema changes, security middleware, network config, payment webhooks. | **Gate 3**: Pre-implementation spec review + interactive dry-run + strict maintainer code audit. |
16
+
17
+ ---
18
+
19
+ ## 2. Gate Protocols
20
+
21
+ ### Gate 1 (Low Risk)
22
+ * The agent drafts modifications and executes the validator.
23
+ * The developer is notified of the changes via terminal logs. No blocking input is required unless errors occur.
24
+
25
+ ### Gate 2 (Medium Risk)
26
+ * The agent must compile a diff and present it to the developer.
27
+ * The developer must explicitly approve the proposal (e.g. typing `y` or confirming via IDE dialog).
28
+ * The agent applies modifications and runs automated tests.
29
+ * Developer reviews the post-test state before git staging.
30
+
31
+ ### Gate 3 (High Risk)
32
+ * Before writing any code, the agent must generate a technical design spec.
33
+ * The spec must be reviewed and signed off by the maintainer.
34
+ * The agent executes the changes under dry-run settings first.
35
+ * Once dry-run confirms zero side-effects, the changes are applied in a separate branch, tests are executed, and a manual pull request audit is completed.
@@ -0,0 +1,30 @@
1
+ # MultiModel Dev OS Memory & Privacy Policy
2
+
3
+ This policy governs the security, storage, token budget constraints, and privacy parameters for local repository memory indices and feedback loops compiled by MultiModel Dev OS.
4
+
5
+ ---
6
+
7
+ ## 1. Token Efficiency Constraints
8
+
9
+ To avoid saturating the context window of developer agents, the generated memory indices (`memory.json`) and feedback files (`learnings.yaml`) must be kept compact:
10
+ * **Summary Bounds**: Component/file summaries must not exceed **200 tokens** per file entry.
11
+ * **Pruning Rules**: Stale summaries of deleted files or historic decision logs exceeding 90 days must be automatically pruned during the `mmdo memory refresh` cycles.
12
+ * **Token Budget**: The total memory footprint loaded into an active workspace context must remain below **5%** of the target model's active context window.
13
+
14
+ ---
15
+
16
+ ## 2. Privacy & Secret Security
17
+
18
+ Local memory indexing must **never** store sensitive credentials, secrets, or PII:
19
+ 1. **Strict File Exclusions**:
20
+ * Configurations storing credentials (e.g. `.env`, `.npmrc`, `key.pem`, `.git-credentials`, service accounts JSON) must be strictly ignored.
21
+ * No content signatures or lines from excluded files may be hashed or compiled.
22
+ 2. **No Code Scraping**: Code block contents may be semantically summarized but the raw code blocks (especially database connection strings, passwords, and API keys) must never be copied into `memory.json`.
23
+ 3. **Local Isolation**: Memory files are restricted to the local workspace and must never be uploaded to external APIs or third-party servers.
24
+
25
+ ---
26
+
27
+ ## 3. Index Refresh & Git Bounds
28
+
29
+ * **Diff-Driven Updates**: Re-indexing must use content hash comparison. A file is only re-analyzed if its content hash differs from the stored fingerprint.
30
+ * **Gitignore Alignment**: Any directory or file path marked as ignored inside the workspace `.gitignore` is automatically excluded from the memory scanning loop.
@@ -0,0 +1,39 @@
1
+ # MultiModel Dev OS Self-Improvement Policy
2
+
3
+ This document defines the policies, guidelines, and guardrails for automated self-improvement cycles inside workspaces governed by MultiModel Dev OS.
4
+
5
+ ---
6
+
7
+ ## 1. Safety Guardrails & Write-Protection
8
+
9
+ To prevent runaway self-modifying loops, the following directories and files are officially **write-protected** from automated model refactors:
10
+ * `bin/` — The core CLI executable binaries.
11
+ * `scripts/` — Automated verification, setup, and prepublish-guard scripts.
12
+ * `.ai/policies/` — Approval schemas and policy definitions (including this document).
13
+ * `.github/` — Workflows and issue templates.
14
+
15
+ Any self-improvement proposal targeting these directories or files must be immediately aborted by the execution client.
16
+
17
+ ---
18
+
19
+ ## 2. Proposal Framework
20
+
21
+ All code improvement recommendations must be prepared as structured yaml files inside `.ai/proposals/proposal-<id>.yaml`. A proposal must contain:
22
+ 1. **`rationale`**: Clear documentation of the technical reasoning, problem description, and expected outcome.
23
+ 2. **`affected_files`**: An explicit array of absolute or relative file paths to be modified. No other files may be touched.
24
+ 3. **`risk_level`**: Classification (`low`, `medium`, `high`) based on the component's sensitivity (e.g. database, credentials, public APIs).
25
+ 4. **`verify_command`**: The CLI validation command to run after files are modified (e.g., `npm run verify` or custom testing commands).
26
+ 5. **`rollback_plan`**: Automated step-by-step commands to revert changes if verification fails.
27
+
28
+ ---
29
+
30
+ ## 3. Execution & Validation Cycle
31
+
32
+ Self-improvement cycles must execute in a isolated sandbox following this sequence:
33
+ 1. **Draft**: Compile proposal and write to `.ai/proposals/proposal-<id>.yaml`.
34
+ 2. **User Audit**: Display proposed diffs and require developer verification.
35
+ 3. **Apply (Staging)**: Apply modifications to the target files.
36
+ 4. **Test**: Execute `verify_command` (must return exit code `0`).
37
+ 5. **Rollback / Commit**:
38
+ * If tests **pass**: Commit modifications locally with prefix `chore(improve): <summary>`.
39
+ * If tests **fail**: Execute `rollback_plan` (e.g. `git checkout -- <files>`) to revert modifications immediately and log the failure.
@@ -0,0 +1,44 @@
1
+ # Codebase Improvement Proposals Directory
2
+
3
+ This directory stores structured codebase optimization and refactoring proposals generated by MultiModel Dev OS.
4
+
5
+ ## Proposal Structure
6
+
7
+ All proposals must be written as Markdown files named using the pattern `proposal-YYYYMMDD-HHMMSS.md` and must contain a YAML Frontmatter block conforming to `.ai/intelligence/improvement-proposal.schema.json`.
8
+
9
+ ### Example Format
10
+
11
+ ```markdown
12
+ ---
13
+ id: proposal-20260610-173000
14
+ created_at: 2026-06-10T17:30:00Z
15
+ title: Refactor component export syntax
16
+ problem: Mix of default and named exports causes import confusion.
17
+ evidence: Found default export in src/utils/format.js and named exports in others.
18
+ risk_level: low
19
+ affected_files:
20
+ - src/utils/format.js
21
+ suggested_change: Change default export to named export.
22
+ verify_command: npm run verify
23
+ rollback_plan: git checkout -- src/utils/format.js
24
+ approval_status: pending
25
+ ---
26
+
27
+ # Codebase Improvement Proposal: Refactor component export syntax
28
+
29
+ ## 1. Problem Description
30
+ Description of the issue or inconsistency.
31
+
32
+ ## 2. Risk & Validation Plan
33
+ * Risk: Low
34
+ * Verification Command: `npm run verify`
35
+
36
+ ## 3. Rollback Instructions
37
+ `git checkout -- src/utils/format.js`
38
+ ```
39
+
40
+ ## Approval Gate Lifecycle
41
+
42
+ 1. **propose**: The engine writes the proposal under `.ai/proposals/proposal-YYYYMMDD-HHMMSS.md` with status `pending`.
43
+ 2. **review**: Developers inspect proposals using `npx multimodel-dev-os improve review`.
44
+ 3. **manual approval**: The developer reviews the file, executes the change manually, and marks the status as `approved` inside the Frontmatter once resolved.
@@ -0,0 +1,22 @@
1
+ {
2
+ "operations": [
3
+ {
4
+ "type": "create_file",
5
+ "path": "docs/example.md",
6
+ "content": "# Example\n",
7
+ "overwrite": true
8
+ },
9
+ {
10
+ "type": "append_line",
11
+ "path": ".gitignore",
12
+ "line": "node_modules/"
13
+ },
14
+ {
15
+ "type": "replace_text",
16
+ "path": "README.md",
17
+ "find": "old text",
18
+ "replace": "new text",
19
+ "allow_multiple": false
20
+ }
21
+ ]
22
+ }
@@ -0,0 +1,73 @@
1
+ # MultiModel Dev OS - Capabilities Registry
2
+ # Configures cognitive vectors and performance parameters for AI models
3
+
4
+ capabilities:
5
+ claude-sonnet-latest:
6
+ provider: anthropic
7
+ alias: claude-3-5-sonnet
8
+ scores:
9
+ coding: 0.95
10
+ reasoning: 0.90
11
+ repo-scan: 0.85
12
+ agentic-duration: 0.80
13
+ mcp-compliance: 1.0
14
+ local-offline: 0.0
15
+ cost_per_m_input: 3.00
16
+ cost_per_m_output: 15.00
17
+ latency: medium
18
+
19
+ gemini-pro-latest:
20
+ provider: google
21
+ alias: gemini-1.5-pro
22
+ scores:
23
+ coding: 0.90
24
+ reasoning: 0.95
25
+ repo-scan: 1.00
26
+ agentic-duration: 0.85
27
+ mcp-compliance: 0.90
28
+ local-offline: 0.0
29
+ cost_per_m_input: 1.25
30
+ cost_per_m_output: 5.00
31
+ latency: medium
32
+
33
+ gemini-flash-latest:
34
+ provider: google
35
+ alias: gemini-1.5-flash
36
+ scores:
37
+ coding: 0.75
38
+ reasoning: 0.70
39
+ repo-scan: 0.95
40
+ agentic-duration: 0.60
41
+ mcp-compliance: 0.80
42
+ local-offline: 0.0
43
+ cost_per_m_input: 0.075
44
+ cost_per_m_output: 0.30
45
+ latency: fast
46
+
47
+ gpt-coding-latest:
48
+ provider: openai
49
+ alias: gpt-4o
50
+ scores:
51
+ coding: 0.92
52
+ reasoning: 0.85
53
+ repo-scan: 0.70
54
+ agentic-duration: 0.70
55
+ mcp-compliance: 0.90
56
+ local-offline: 0.0
57
+ cost_per_m_input: 2.50
58
+ cost_per_m_output: 10.00
59
+ latency: fast
60
+
61
+ deepseek-coder-latest:
62
+ provider: deepseek
63
+ alias: deepseek-coder
64
+ scores:
65
+ coding: 0.94
66
+ reasoning: 0.88
67
+ repo-scan: 0.75
68
+ agentic-duration: 0.75
69
+ mcp-compliance: 0.80
70
+ local-offline: 0.50
71
+ cost_per_m_input: 0.14
72
+ cost_per_m_output: 0.28
73
+ latency: medium
@@ -0,0 +1,84 @@
1
+ # MultiModel Dev OS - Tools Registry
2
+ # Configures active interfaces, connection protocols, and files mapping for developer tools
3
+
4
+ tools:
5
+ cursor:
6
+ name: "Cursor Editor"
7
+ interface: editor
8
+ protocols:
9
+ - custom-rules
10
+ registry_keys:
11
+ - .cursorrules
12
+ format: markdown
13
+
14
+ claude-code:
15
+ name: "Claude Code CLI"
16
+ interface: terminal
17
+ protocols:
18
+ - stdin-stdout
19
+ registry_keys:
20
+ - CLAUDE.md
21
+ format: markdown
22
+
23
+ gemini:
24
+ name: "Gemini / Antigravity Assistant"
25
+ interface: assistant
26
+ protocols:
27
+ - system-instructions
28
+ registry_keys:
29
+ - GEMINI.md
30
+ format: markdown
31
+
32
+ vscode:
33
+ name: "VS Code Editor"
34
+ interface: editor
35
+ protocols:
36
+ - workspaces-settings
37
+ registry_keys:
38
+ - .vscode/settings.json
39
+ format: json
40
+
41
+ antigravity:
42
+ name: "Antigravity IDE Plugin"
43
+ interface: assistant
44
+ protocols:
45
+ - settings-profiles
46
+ registry_keys:
47
+ - .gemini/settings.json
48
+ format: json
49
+
50
+ continue:
51
+ name: "Continue IDE Extension"
52
+ interface: editor
53
+ protocols:
54
+ - config-schema
55
+ registry_keys:
56
+ - .continue/config.json
57
+ format: json
58
+
59
+ cline:
60
+ name: "Cline / Roo Code Assistant"
61
+ interface: editor
62
+ protocols:
63
+ - workspace-rules
64
+ registry_keys:
65
+ - .clinerules
66
+ format: markdown
67
+
68
+ aider:
69
+ name: "Aider Command Line"
70
+ interface: terminal
71
+ protocols:
72
+ - config-yaml
73
+ registry_keys:
74
+ - .aider.conf.yml
75
+ format: yaml
76
+
77
+ windsurf:
78
+ name: "Windsurf Editor"
79
+ interface: editor
80
+ protocols:
81
+ - windsurf-rules
82
+ registry_keys:
83
+ - .windsurfrules
84
+ format: markdown