multimodel-dev-os 2.0.1 → 2.8.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.
- package/.ai/intelligence/README.md +14 -0
- package/.ai/intelligence/apply-log.schema.json +65 -0
- package/.ai/intelligence/feedback-log.example.jsonl +2 -0
- package/.ai/intelligence/feedback.schema.json +47 -0
- package/.ai/intelligence/improvement-proposal.schema.json +70 -0
- package/.ai/intelligence/learning-rules.example.md +18 -0
- package/.ai/intelligence/memory.schema.json +97 -0
- package/.ai/plugins/README.md +30 -0
- package/.ai/plugins/plugin.example.yaml +32 -0
- package/.ai/policies/approval-gates.md +35 -0
- package/.ai/policies/memory-policy.md +30 -0
- package/.ai/policies/self-improvement-policy.md +39 -0
- package/.ai/proposals/README.md +44 -0
- package/.ai/proposals/apply-operation.example.json +22 -0
- package/.ai/registries/capabilities.yaml +73 -0
- package/.ai/registries/tools.yaml +84 -0
- package/.ai/registries/workflows.yaml +217 -0
- package/.ai/schema/plugin.schema.json +56 -0
- package/README.md +116 -138
- package/assets/adapter-sync-flow.svg +84 -0
- package/assets/architecture-preview.svg +46 -31
- package/assets/onboarding-flow.svg +79 -0
- package/assets/social-preview.svg +1 -1
- package/assets/terminal-demo.svg +22 -23
- package/bin/multimodel-dev-os.js +3472 -7
- package/docs/.vitepress/config.js +46 -7
- package/docs/5-day-roadmap.md +9 -9
- package/docs/CLI.md +260 -34
- package/docs/adapter-sync.md +27 -0
- package/docs/adapters.md +16 -0
- package/docs/agent-handoff.md +40 -0
- package/docs/approved-proposal-apply.md +156 -0
- package/docs/architecture.md +31 -7
- package/docs/capability-registry.md +24 -0
- package/docs/comparison.md +72 -25
- package/docs/compatibility.md +2 -2
- package/docs/dashboard.md +105 -0
- package/docs/demo.md +23 -60
- package/docs/demos/adapter-sync.md +103 -0
- package/docs/demos/existing-repo-onboarding.md +125 -0
- package/docs/demos/index.md +91 -0
- package/docs/demos/multi-agent-handoff.md +88 -0
- package/docs/demos/release-check.md +109 -0
- package/docs/demos/safe-improvement-loop.md +119 -0
- package/docs/distribution.md +195 -0
- package/docs/faq.md +91 -24
- package/docs/feedback-learning.md +33 -0
- package/docs/future-proof-architecture.md +22 -0
- package/docs/hash-compressed-memory.md +72 -0
- package/docs/improvement-proposals.md +70 -0
- package/docs/index.md +192 -81
- package/docs/installers.md +18 -4
- package/docs/launch-kit.md +97 -49
- package/docs/learning-rules.md +36 -0
- package/docs/npm-publishing.md +6 -6
- package/docs/plugin-authoring.md +99 -0
- package/docs/plugin-hooks.md +80 -0
- package/docs/public/assets/adapter-sync-flow.svg +84 -0
- package/docs/public/assets/onboarding-flow.svg +79 -0
- package/docs/public/llms-full.txt +47 -4
- package/docs/public/llms.txt +55 -2
- package/docs/public/sitemap.xml +85 -0
- package/docs/quickstart.md +82 -22
- package/docs/real-repo-onboarding.md +27 -0
- package/docs/repository-command-center.md +68 -0
- package/docs/self-improving-codebase.md +46 -0
- package/docs/template-recommendation.md +22 -0
- package/docs/templates-guide.md +11 -0
- package/docs/tool-registry.md +21 -0
- package/docs/tui-safety.md +59 -0
- package/docs/use-cases.md +21 -0
- package/docs/v2-roadmap.md +78 -71
- package/docs/workflow-orchestration.md +62 -0
- package/examples/adapter-sync/README.md +45 -0
- package/examples/command-center/README.md +59 -0
- package/examples/real-repo-onboarding/README.md +53 -0
- package/examples/safe-improvement-loop/README.md +48 -0
- package/package.json +1 -1
- package/scripts/install.ps1 +1 -1
- package/scripts/install.sh +1 -1
- package/scripts/verify.js +107 -3
|
@@ -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
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
# MultiModel Dev OS - Workflow Registry
|
|
2
|
+
# Defines logical steps, cognitive thresholds, and checklist validation gates for coding cycles
|
|
3
|
+
|
|
4
|
+
workflows:
|
|
5
|
+
repo-health:
|
|
6
|
+
name: "Repository Health Check"
|
|
7
|
+
description: "Evaluates project hygiene, directory schema, and structural integrity."
|
|
8
|
+
risk_level: "low"
|
|
9
|
+
allowed_to_write_memory: false
|
|
10
|
+
allowed_to_modify_source: false
|
|
11
|
+
steps:
|
|
12
|
+
- name: "framework-scanning"
|
|
13
|
+
command: "scan"
|
|
14
|
+
expected_output: "Framework detection signals"
|
|
15
|
+
next_action: "doctor"
|
|
16
|
+
- name: "advisory-checkup"
|
|
17
|
+
command: "doctor"
|
|
18
|
+
expected_output: "Project compatibility alerts"
|
|
19
|
+
next_action: "verify"
|
|
20
|
+
- name: "schema-verification"
|
|
21
|
+
command: "verify"
|
|
22
|
+
expected_output: "Structural file verification"
|
|
23
|
+
next_action: "done"
|
|
24
|
+
commands:
|
|
25
|
+
- "scan"
|
|
26
|
+
- "doctor"
|
|
27
|
+
- "verify"
|
|
28
|
+
expected_outputs:
|
|
29
|
+
- "Framework detection signals"
|
|
30
|
+
- "Project compatibility alerts"
|
|
31
|
+
- "Structural file verification"
|
|
32
|
+
next_action: "Resolve warnings shown in doctor checkup"
|
|
33
|
+
|
|
34
|
+
memory-refresh:
|
|
35
|
+
name: "Memory Refresh Cycle"
|
|
36
|
+
description: "Inspects workspace changes and increments memory."
|
|
37
|
+
risk_level: "medium"
|
|
38
|
+
allowed_to_write_memory: true
|
|
39
|
+
allowed_to_modify_source: false
|
|
40
|
+
steps:
|
|
41
|
+
- name: "diff-assessment"
|
|
42
|
+
command: "memory diff"
|
|
43
|
+
expected_output: "Memory delta"
|
|
44
|
+
next_action: "memory refresh"
|
|
45
|
+
- name: "index-refresh"
|
|
46
|
+
command: "memory refresh"
|
|
47
|
+
expected_output: "Updated memory files"
|
|
48
|
+
next_action: "done"
|
|
49
|
+
commands:
|
|
50
|
+
- "memory diff"
|
|
51
|
+
- "memory refresh"
|
|
52
|
+
expected_outputs:
|
|
53
|
+
- "Memory delta"
|
|
54
|
+
- "Updated memory files"
|
|
55
|
+
next_action: "Commit updated intelligence files"
|
|
56
|
+
|
|
57
|
+
feedback-review:
|
|
58
|
+
name: "Feedback Review Loop"
|
|
59
|
+
description: "Inspects developer loop feedback and compiles learning rules."
|
|
60
|
+
risk_level: "low"
|
|
61
|
+
allowed_to_write_memory: false
|
|
62
|
+
allowed_to_modify_source: false
|
|
63
|
+
steps:
|
|
64
|
+
- name: "feedback-listing"
|
|
65
|
+
command: "feedback list"
|
|
66
|
+
expected_output: "Logged feedback items"
|
|
67
|
+
next_action: "feedback summarize"
|
|
68
|
+
- name: "rules-summarization"
|
|
69
|
+
command: "feedback summarize"
|
|
70
|
+
expected_output: "Compiled learning-rules.md"
|
|
71
|
+
next_action: "done"
|
|
72
|
+
commands:
|
|
73
|
+
- "feedback list"
|
|
74
|
+
- "feedback summarize"
|
|
75
|
+
expected_outputs:
|
|
76
|
+
- "Logged feedback items"
|
|
77
|
+
- "Compiled learning rules file"
|
|
78
|
+
next_action: "Review rules and share with the team"
|
|
79
|
+
|
|
80
|
+
proposal-review:
|
|
81
|
+
name: "Improvement Proposal Review"
|
|
82
|
+
description: "Inspects codebase optimization proposals and execution histories."
|
|
83
|
+
risk_level: "low"
|
|
84
|
+
allowed_to_write_memory: false
|
|
85
|
+
allowed_to_modify_source: false
|
|
86
|
+
steps:
|
|
87
|
+
- name: "proposals-list"
|
|
88
|
+
command: "improve review"
|
|
89
|
+
expected_output: "Proposals list"
|
|
90
|
+
next_action: "improve status"
|
|
91
|
+
- name: "proposals-status"
|
|
92
|
+
command: "improve status"
|
|
93
|
+
expected_output: "Pending, approved counts"
|
|
94
|
+
next_action: "improve log"
|
|
95
|
+
- name: "apply-history"
|
|
96
|
+
command: "improve log"
|
|
97
|
+
expected_output: "Audit apply history"
|
|
98
|
+
next_action: "done"
|
|
99
|
+
commands:
|
|
100
|
+
- "improve review"
|
|
101
|
+
- "improve status"
|
|
102
|
+
- "improve log"
|
|
103
|
+
expected_outputs:
|
|
104
|
+
- "Proposals list"
|
|
105
|
+
- "Pending, approved counts"
|
|
106
|
+
- "Audit apply history"
|
|
107
|
+
next_action: "Apply approved proposals manually"
|
|
108
|
+
|
|
109
|
+
release-check:
|
|
110
|
+
name: "Pre-Release Verification"
|
|
111
|
+
description: "Verifies package readiness and install script alignment prior to publish."
|
|
112
|
+
risk_level: "low"
|
|
113
|
+
allowed_to_write_memory: false
|
|
114
|
+
allowed_to_modify_source: false
|
|
115
|
+
steps:
|
|
116
|
+
- name: "code-hygiene"
|
|
117
|
+
command: "verify"
|
|
118
|
+
expected_output: "Release verification passed"
|
|
119
|
+
next_action: "doctor --release"
|
|
120
|
+
- name: "doctor-checks"
|
|
121
|
+
command: "doctor --release"
|
|
122
|
+
expected_output: "Release audit doctor complete"
|
|
123
|
+
next_action: "npm pack --dry-run"
|
|
124
|
+
- name: "tarball-check"
|
|
125
|
+
command: "npm pack --dry-run"
|
|
126
|
+
expected_output: "Dry-run tarball details"
|
|
127
|
+
next_action: "done"
|
|
128
|
+
commands:
|
|
129
|
+
- "verify"
|
|
130
|
+
- "doctor --release"
|
|
131
|
+
- "npm pack --dry-run"
|
|
132
|
+
expected_outputs:
|
|
133
|
+
- "Release verification passed"
|
|
134
|
+
- "Release audit doctor complete"
|
|
135
|
+
- "Dry-run tarball details"
|
|
136
|
+
next_action: "Proceed to manual package publish"
|
|
137
|
+
|
|
138
|
+
feature-implementation:
|
|
139
|
+
name: "Feature Implementation"
|
|
140
|
+
description: "Standard workflow to design, write, and verify new codebase features."
|
|
141
|
+
risk_level: "high"
|
|
142
|
+
allowed_to_write_memory: true
|
|
143
|
+
allowed_to_modify_source: true
|
|
144
|
+
steps:
|
|
145
|
+
- name: planning
|
|
146
|
+
command: "propose"
|
|
147
|
+
expected_output: "Design plan proposal"
|
|
148
|
+
next_action: "coding"
|
|
149
|
+
- name: coding
|
|
150
|
+
command: "implement"
|
|
151
|
+
expected_output: "Code modifications"
|
|
152
|
+
next_action: "verification"
|
|
153
|
+
- name: verification
|
|
154
|
+
command: "verify"
|
|
155
|
+
expected_output: "Checks passing"
|
|
156
|
+
next_action: "done"
|
|
157
|
+
commands:
|
|
158
|
+
- "propose"
|
|
159
|
+
- "implement"
|
|
160
|
+
- "verify"
|
|
161
|
+
expected_outputs:
|
|
162
|
+
- "Design plan proposal"
|
|
163
|
+
- "Code modifications"
|
|
164
|
+
- "Checks passing"
|
|
165
|
+
next_action: "Submit for approval"
|
|
166
|
+
|
|
167
|
+
bug-fixing:
|
|
168
|
+
name: "Bug Fixing"
|
|
169
|
+
description: "Workflow to reproduce, resolve, and run regression tests on defects."
|
|
170
|
+
risk_level: "medium"
|
|
171
|
+
allowed_to_write_memory: true
|
|
172
|
+
allowed_to_modify_source: true
|
|
173
|
+
steps:
|
|
174
|
+
- name: reproduction
|
|
175
|
+
command: "verify"
|
|
176
|
+
expected_output: "Reproduction cases"
|
|
177
|
+
next_action: "resolution"
|
|
178
|
+
- name: resolution
|
|
179
|
+
command: "implement"
|
|
180
|
+
expected_output: "Fix applied"
|
|
181
|
+
next_action: "regression-testing"
|
|
182
|
+
- name: regression-testing
|
|
183
|
+
command: "verify"
|
|
184
|
+
expected_output: "Regression tests passing"
|
|
185
|
+
next_action: "done"
|
|
186
|
+
commands:
|
|
187
|
+
- "verify"
|
|
188
|
+
- "implement"
|
|
189
|
+
- "verify"
|
|
190
|
+
expected_outputs:
|
|
191
|
+
- "Reproduction cases"
|
|
192
|
+
- "Fix applied"
|
|
193
|
+
- "Regression tests passing"
|
|
194
|
+
next_action: "Verify fixed state is fully clean"
|
|
195
|
+
|
|
196
|
+
security-audit:
|
|
197
|
+
name: "Security Audit"
|
|
198
|
+
description: "Workflow to audit files against security guidelines and vulnerability checks."
|
|
199
|
+
risk_level: "high"
|
|
200
|
+
allowed_to_write_memory: false
|
|
201
|
+
allowed_to_modify_source: false
|
|
202
|
+
steps:
|
|
203
|
+
- name: scanning
|
|
204
|
+
command: "scan"
|
|
205
|
+
expected_output: "Security scanning results"
|
|
206
|
+
next_action: "reporting"
|
|
207
|
+
- name: reporting
|
|
208
|
+
command: "doctor"
|
|
209
|
+
expected_output: "Vulnerabilities summary report"
|
|
210
|
+
next_action: "done"
|
|
211
|
+
commands:
|
|
212
|
+
- "scan"
|
|
213
|
+
- "doctor"
|
|
214
|
+
expected_outputs:
|
|
215
|
+
- "Security scanning results"
|
|
216
|
+
- "Vulnerabilities summary report"
|
|
217
|
+
next_action: "Mitigate warnings reported by scanner"
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "MultiModel Dev OS Plugin Schema",
|
|
4
|
+
"description": "JSON schema reference detailing declarative plugin metadata and permitted directories configuration",
|
|
5
|
+
"type": "OBJECT",
|
|
6
|
+
"required": ["name", "slug", "version", "description", "author"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"name": {
|
|
9
|
+
"type": "STRING",
|
|
10
|
+
"description": "Human-readable name of the plugin"
|
|
11
|
+
},
|
|
12
|
+
"slug": {
|
|
13
|
+
"type": "STRING",
|
|
14
|
+
"description": "Unique URL-friendly slug representing the plugin"
|
|
15
|
+
},
|
|
16
|
+
"version": {
|
|
17
|
+
"type": "STRING",
|
|
18
|
+
"description": "Semantic versioning number of the plugin (e.g. 1.0.0)"
|
|
19
|
+
},
|
|
20
|
+
"description": {
|
|
21
|
+
"type": "STRING",
|
|
22
|
+
"description": "Brief summary of what capabilities and templates this plugin introduces"
|
|
23
|
+
},
|
|
24
|
+
"author": {
|
|
25
|
+
"type": "STRING",
|
|
26
|
+
"description": "Name of the developer or team who created the plugin"
|
|
27
|
+
},
|
|
28
|
+
"allowed_file_patterns": {
|
|
29
|
+
"type": "ARRAY",
|
|
30
|
+
"items": { "type": "STRING" },
|
|
31
|
+
"description": "Target paths inside .ai/ or adapters/ this plugin is permitted to write to"
|
|
32
|
+
},
|
|
33
|
+
"denied_file_patterns": {
|
|
34
|
+
"type": "ARRAY",
|
|
35
|
+
"items": { "type": "STRING" },
|
|
36
|
+
"description": "Explicit blacklisted paths this plugin is blocked from writing to"
|
|
37
|
+
},
|
|
38
|
+
"templates": {
|
|
39
|
+
"type": "OBJECT",
|
|
40
|
+
"description": "Custom templates mapped by the plugin configuration"
|
|
41
|
+
},
|
|
42
|
+
"workflows": {
|
|
43
|
+
"type": "OBJECT",
|
|
44
|
+
"description": "Custom workflows mapped by the plugin configuration"
|
|
45
|
+
},
|
|
46
|
+
"adapters": {
|
|
47
|
+
"type": "OBJECT",
|
|
48
|
+
"description": "Custom adapter settings mapped by the plugin configuration"
|
|
49
|
+
},
|
|
50
|
+
"safety_notes": {
|
|
51
|
+
"type": "STRING",
|
|
52
|
+
"description": "Explicit security notices displayed to the user during installation"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"additionalProperties": false
|
|
56
|
+
}
|