multimodel-dev-os 2.8.1 → 3.0.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/plugins/catalog/.ai/checks/pre-commit-gate.md +14 -0
- package/.ai/plugins/catalog/.ai/skills/checkout-ops.md +12 -0
- package/.ai/plugins/catalog/.ai/skills/git-operations.md +21 -0
- package/.ai/plugins/catalog/.ai/skills/nextjs-builder.md +12 -0
- package/.ai/plugins/catalog/.ai/skills/release-ops.md +12 -0
- package/.ai/plugins/catalog/.ai/skills/seo-audit-ops.md +14 -0
- package/.ai/plugins/catalog/.ai/skills/wp-helper.md +13 -0
- package/.ai/plugins/catalog/README.md +34 -0
- package/.ai/plugins/catalog/ecommerce-workflows.yaml +14 -0
- package/.ai/plugins/catalog/git-workflows.yaml +22 -0
- package/.ai/plugins/catalog/nextjs-workflows.yaml +14 -0
- package/.ai/plugins/catalog/release-workflows.yaml +14 -0
- package/.ai/plugins/catalog/seo-workflows.yaml +19 -0
- package/.ai/plugins/catalog/wordpress-workflows.yaml +14 -0
- package/.ai/plugins/catalog.yaml +161 -0
- package/.ai/policies/registry-policy.yaml +51 -0
- package/.ai/registries/sources.yaml +15 -0
- package/.ai/registry-cache/README.md +35 -0
- package/.ai/schema/registry-manifest.schema.json +57 -0
- package/.ai/schema/registry-policy.schema.json +66 -0
- package/README.md +6 -5
- package/bin/multimodel-dev-os.js +1309 -30
- package/docs/.vitepress/config.js +16 -2
- package/docs/CLI.md +54 -1
- package/docs/architecture.md +9 -3
- package/docs/catalog-authoring.md +63 -0
- package/docs/catalog.md +72 -0
- package/docs/comparison.md +1 -0
- package/docs/dashboard.md +13 -2
- package/docs/faq.md +19 -0
- package/docs/plugin-authoring.md +6 -0
- package/docs/plugin-catalog.md +35 -0
- package/docs/plugin-hooks.md +6 -0
- package/docs/public/llms-full.txt +18 -1
- package/docs/public/llms.txt +17 -1
- package/docs/public/sitemap.xml +248 -203
- package/docs/quickstart.md +17 -0
- package/docs/registry-policy.md +93 -0
- package/docs/registry-security.md +67 -0
- package/docs/registry-sync.md +106 -0
- package/docs/remote-catalog-authoring.md +139 -0
- package/docs/repository-command-center.md +2 -0
- package/docs/trusted-registries.md +77 -0
- package/docs/v2-roadmap.md +13 -4
- package/docs/workflow-marketplace.md +22 -0
- package/docs/workflow-orchestration.md +6 -0
- package/package.json +1 -1
- package/scripts/install.ps1 +1 -1
- package/scripts/install.sh +1 -1
- package/scripts/prepublish-guard.js +27 -5
- package/scripts/verify.js +523 -10
|
@@ -32,7 +32,7 @@ export default {
|
|
|
32
32
|
'license': 'https://opensource.org/licenses/MIT',
|
|
33
33
|
'url': 'https://github.com/rizvee/multimodel-dev-os',
|
|
34
34
|
'downloadUrl': 'https://www.npmjs.com/package/multimodel-dev-os',
|
|
35
|
-
'softwareVersion': '
|
|
35
|
+
'softwareVersion': '3.0.0',
|
|
36
36
|
'description': 'Portable, vendor-neutral AI Developer OS for multi-agent coding workflows.'
|
|
37
37
|
})
|
|
38
38
|
]
|
|
@@ -170,7 +170,21 @@ export default {
|
|
|
170
170
|
{ text: 'Interactive TUI Dashboard', link: '/dashboard' },
|
|
171
171
|
{ text: 'Declarative Plugin Hooks', link: '/plugin-hooks' },
|
|
172
172
|
{ text: 'Plugin Authoring Guide', link: '/plugin-authoring' },
|
|
173
|
-
{ text: 'TUI & Plugin Safety', link: '/tui-safety' }
|
|
173
|
+
{ text: 'TUI & Plugin Safety', link: '/tui-safety' },
|
|
174
|
+
{ text: 'Workflow Marketplace Catalog', link: '/catalog' },
|
|
175
|
+
{ text: 'Curated Plugin Catalog', link: '/plugin-catalog' },
|
|
176
|
+
{ text: 'Workflow Marketplace Guide', link: '/workflow-marketplace' },
|
|
177
|
+
{ text: 'Catalog Authoring Guide', link: '/catalog-authoring' }
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
text: 'Trusted Registry & Governance',
|
|
182
|
+
items: [
|
|
183
|
+
{ text: 'Registry Sync Guide', link: '/registry-sync' },
|
|
184
|
+
{ text: 'Trusted Registries', link: '/trusted-registries' },
|
|
185
|
+
{ text: 'Registry Policy Engine', link: '/registry-policy' },
|
|
186
|
+
{ text: 'Registry Security Model', link: '/registry-security' },
|
|
187
|
+
{ text: 'Remote Catalog Authoring', link: '/remote-catalog-authoring' }
|
|
174
188
|
]
|
|
175
189
|
},
|
|
176
190
|
{
|
package/docs/CLI.md
CHANGED
|
@@ -262,7 +262,33 @@ npx multimodel-dev-os@latest plugin status
|
|
|
262
262
|
|
|
263
263
|
---
|
|
264
264
|
|
|
265
|
-
### 17.
|
|
265
|
+
### 17. `catalog` — Local Workflow Marketplace & Plugin Catalog
|
|
266
|
+
|
|
267
|
+
Manage and discover curated workflows and plugins offline.
|
|
268
|
+
|
|
269
|
+
```bash
|
|
270
|
+
npx multimodel-dev-os@latest catalog list [--category <name>]
|
|
271
|
+
npx multimodel-dev-os@latest catalog search <query>
|
|
272
|
+
npx multimodel-dev-os@latest catalog show <slug>
|
|
273
|
+
npx multimodel-dev-os@latest catalog categories
|
|
274
|
+
npx multimodel-dev-os@latest catalog recommend
|
|
275
|
+
npx multimodel-dev-os@latest catalog install <slug> --approved
|
|
276
|
+
npx multimodel-dev-os@latest catalog status
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
| Subcommand | Description |
|
|
280
|
+
|:---|:---|
|
|
281
|
+
| `list` | List all curated catalog plugins |
|
|
282
|
+
| `search <query>` | Case-insensitively search catalog |
|
|
283
|
+
| `show <slug>` | Inspect catalog plugin capabilities and installation actions |
|
|
284
|
+
| `categories` | List all unique marketplace categories |
|
|
285
|
+
| `recommend` | Scan current workspace framework/language signals and recommend plugins |
|
|
286
|
+
| `install <slug>` | Install a catalog plugin (requires `--approved`) |
|
|
287
|
+
| `status` | Audit installation status of catalog entries |
|
|
288
|
+
|
|
289
|
+
---
|
|
290
|
+
|
|
291
|
+
### 18. Registry Commands
|
|
266
292
|
|
|
267
293
|
Explore model, adapter, and skill registries.
|
|
268
294
|
|
|
@@ -274,3 +300,30 @@ npx multimodel-dev-os@latest providers # View API providers
|
|
|
274
300
|
npx multimodel-dev-os@latest adapters # View adapter registry
|
|
275
301
|
npx multimodel-dev-os@latest skills # View skill registry
|
|
276
302
|
```
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
### 19. `registry` — Trusted Remote Catalog Registries
|
|
307
|
+
|
|
308
|
+
Manage trusted remote catalog registries under policy-enforced safety gates.
|
|
309
|
+
|
|
310
|
+
```bash
|
|
311
|
+
npx multimodel-dev-os@latest registry list
|
|
312
|
+
npx multimodel-dev-os@latest registry add <name> <url> --approved
|
|
313
|
+
npx multimodel-dev-os@latest registry sync <name> --approved
|
|
314
|
+
npx multimodel-dev-os@latest registry status
|
|
315
|
+
npx multimodel-dev-os@latest registry verify <name>
|
|
316
|
+
npx multimodel-dev-os@latest registry show <name>
|
|
317
|
+
npx multimodel-dev-os@latest registry cache clear --approved
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
| Subcommand | Description |
|
|
321
|
+
|:---|:---|
|
|
322
|
+
| `list` | Print all configured registry sources |
|
|
323
|
+
| `add <name> <url>` | Add a remote registry source (requires `--approved`) |
|
|
324
|
+
| `remove <name>` | Remove a registry source and its cache (requires `--approved`) |
|
|
325
|
+
| `sync <name>` | Sync and cache registry manifest and assets (requires `--approved`) |
|
|
326
|
+
| `status` | Show cache health, timestamps, and policy configuration |
|
|
327
|
+
| `verify <name>` | Verify cached files against expected SHA256 checksums |
|
|
328
|
+
| `show <name>` | Display detailed registry configuration metadata |
|
|
329
|
+
| `cache clear` | Delete all files in cache directory (requires `--approved`) |
|
package/docs/architecture.md
CHANGED
|
@@ -38,13 +38,17 @@
|
|
|
38
38
|
│ Layer 4: Intelligence Layer │
|
|
39
39
|
│ .ai/intelligence/ (memory, handoff)│
|
|
40
40
|
│ .ai/registries/ (workflows, │
|
|
41
|
-
│ capabilities, tools)
|
|
41
|
+
│ capabilities, tools, sources) │
|
|
42
|
+
│ .ai/registry-cache/ (cached remote) │
|
|
42
43
|
│ .ai/proposals/ (improvements) │
|
|
43
|
-
│ .ai/policies/ (safety
|
|
44
|
+
│ .ai/policies/ (safety, registry│
|
|
45
|
+
│ governance gates) │
|
|
44
46
|
├──────────────────────────────────────┤
|
|
45
47
|
│ Layer 5: CLI Dashboard & Plugins │
|
|
46
48
|
│ dashboard / ui (TUI Command Center) │
|
|
47
49
|
│ plugin list/show/validate/install │
|
|
50
|
+
│ catalog list/show/recommend/install │
|
|
51
|
+
│ registry list/add/sync/status/verify│
|
|
48
52
|
│ onboard / adapter sync │
|
|
49
53
|
└──────────────────────────────────────┘
|
|
50
54
|
```
|
|
@@ -75,7 +79,9 @@
|
|
|
75
79
|
| `.ai/intelligence/handoff.md` | System | Next agent | CLI (`handoff build`) |
|
|
76
80
|
| `.ai/intelligence/feedback-log.jsonl` | System | CLI | CLI (`feedback add`) |
|
|
77
81
|
| `.ai/proposals/*.md` | System | Human + CLI | CLI (`improve propose`) |
|
|
78
|
-
| `.ai/registries/*.yaml` | System | CLI | CLI (`init`) |
|
|
82
|
+
| `.ai/registries/*.yaml` | System | CLI | CLI (`init` / `registry add`) |
|
|
83
|
+
| `.ai/policies/*.yaml` | Human | CLI | Human |
|
|
84
|
+
| `.ai/registry-cache/` | System | CLI | CLI (`registry sync`) |
|
|
79
85
|
| `adapters/*/` | Community | Specific tool | Maintainers |
|
|
80
86
|
|
|
81
87
|
## Security Considerations
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Catalog Authoring Guide
|
|
2
|
+
|
|
3
|
+
This guide details how to add new plugin entries to the local marketplace catalog.
|
|
4
|
+
|
|
5
|
+
## Step 1: Declare Catalog Entry
|
|
6
|
+
|
|
7
|
+
Add the plugin metadata to `.ai/plugins/catalog.yaml`:
|
|
8
|
+
|
|
9
|
+
```yaml
|
|
10
|
+
- slug: custom-workflows
|
|
11
|
+
name: "Custom Quality Audits"
|
|
12
|
+
version: "1.0.0"
|
|
13
|
+
description: "Automated checks for custom APIs."
|
|
14
|
+
category: "custom"
|
|
15
|
+
tags: ["api", "audit"]
|
|
16
|
+
use_cases: ["API audits"]
|
|
17
|
+
supported_templates: ["*"]
|
|
18
|
+
provided_workflows: ["api-audit"]
|
|
19
|
+
provided_skills: ["api-skills.md"]
|
|
20
|
+
safety_level: "sandboxed"
|
|
21
|
+
install_scope: "declarative"
|
|
22
|
+
recommended_for: "APIs and services integration"
|
|
23
|
+
files_preview:
|
|
24
|
+
- dest: ".ai/plugins/custom-workflows.yaml"
|
|
25
|
+
- dest: ".ai/skills/api-skills.md"
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Step 2: Create Manifest and Assets
|
|
29
|
+
|
|
30
|
+
Save the plugin manifest configuration under `.ai/plugins/catalog/custom-workflows.yaml`:
|
|
31
|
+
|
|
32
|
+
```yaml
|
|
33
|
+
name: "Custom Quality Audits"
|
|
34
|
+
slug: "custom-workflows"
|
|
35
|
+
version: "1.0.0"
|
|
36
|
+
description: "Automated checks for custom APIs."
|
|
37
|
+
author: "Your Name"
|
|
38
|
+
allowed_file_patterns:
|
|
39
|
+
- .ai/skills/api-skills.md
|
|
40
|
+
workflows:
|
|
41
|
+
api-audit:
|
|
42
|
+
name: "API Audit"
|
|
43
|
+
description: "Scan routes for API spec integrity"
|
|
44
|
+
steps:
|
|
45
|
+
- run: "echo 'Verifying API routes...'"
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Place any referenced assets relative to the catalog subdirectory:
|
|
49
|
+
- `.ai/plugins/catalog/.ai/skills/api-skills.md`
|
|
50
|
+
|
|
51
|
+
## Step 3: Run Validation
|
|
52
|
+
|
|
53
|
+
Verify that your catalog entry complies with all safety rules:
|
|
54
|
+
```bash
|
|
55
|
+
npx multimodel-dev-os plugin validate .ai/plugins/catalog/custom-workflows.yaml
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Parser-Safe YAML Guidelines
|
|
59
|
+
|
|
60
|
+
To ensure parser compatibility across all environments:
|
|
61
|
+
1. **Flow Arrays**: Both block lists (using `-`) and inline flow arrays (e.g. `tags: ["api", "audit"]`) are fully supported.
|
|
62
|
+
2. **Type Preservation**: Wrap version numbers and slugs in quotes (e.g., `version: "1.0.0"`) to prevent them from being incorrectly converted to integers or floats.
|
|
63
|
+
3. **Quoted Hash Characters**: Quoted strings containing `#` symbols (e.g., `description: "Includes # tag"`) are parsed safely without stripping the hash character.
|
package/docs/catalog.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# local-first Workflow Marketplace & Plugin Catalog
|
|
2
|
+
|
|
3
|
+
MultiModel Dev OS includes an offline, sandboxed **Workflow Marketplace** that lets you discover, inspect, and install curated plugins and workflow packs.
|
|
4
|
+
|
|
5
|
+
## Catalog CLI Commands
|
|
6
|
+
|
|
7
|
+
### 1. List Available Plugins
|
|
8
|
+
List all plugins registered in the local marketplace.
|
|
9
|
+
```bash
|
|
10
|
+
npx multimodel-dev-os catalog list
|
|
11
|
+
```
|
|
12
|
+
To filter by category:
|
|
13
|
+
```bash
|
|
14
|
+
npx multimodel-dev-os catalog list --category git
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### 2. Search Catalog
|
|
18
|
+
Search for plugins matching a query string in names, slugs, descriptions, or tags.
|
|
19
|
+
```bash
|
|
20
|
+
npx multimodel-dev-os catalog search <query>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### 3. Show Plugin Specifications
|
|
24
|
+
Inspect detailed specifications, category, use cases, safety logs, and files previewed for a catalog plugin.
|
|
25
|
+
```bash
|
|
26
|
+
npx multimodel-dev-os catalog show <slug>
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### 4. Get Recommendations
|
|
30
|
+
Analyze the current workspace framework and language signals to suggest optimal plugins.
|
|
31
|
+
```bash
|
|
32
|
+
npx multimodel-dev-os catalog recommend
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### 5. Install a Catalog Plugin
|
|
36
|
+
Install the plugin manifest and all declared assets to the current workspace.
|
|
37
|
+
```bash
|
|
38
|
+
npx multimodel-dev-os catalog install <slug> --approved
|
|
39
|
+
```
|
|
40
|
+
To overwrite existing assets (creating `.bak` backups):
|
|
41
|
+
```bash
|
|
42
|
+
npx multimodel-dev-os catalog install <slug> --approved --force
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### 6. Audit Installed Catalog Status
|
|
46
|
+
Check which catalog plugins are installed and if any of their declared files are missing.
|
|
47
|
+
```bash
|
|
48
|
+
npx multimodel-dev-os catalog status
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## Source Filtering
|
|
54
|
+
|
|
55
|
+
By default, catalog commands query the bundled first-party catalog. In `v3.0.0`, you can filter queries by source or merge all enabled registry sources:
|
|
56
|
+
|
|
57
|
+
* **Filter by a specific source:**
|
|
58
|
+
```bash
|
|
59
|
+
npx multimodel-dev-os catalog list --source remote:partner-registry
|
|
60
|
+
npx multimodel-dev-os catalog search nextjs --source local
|
|
61
|
+
```
|
|
62
|
+
* **Query all enabled sources:**
|
|
63
|
+
```bash
|
|
64
|
+
npx multimodel-dev-os catalog list --all-sources
|
|
65
|
+
npx multimodel-dev-os catalog recommend --all-sources
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Supported values for `--source` are:
|
|
69
|
+
* `bundled`: The default offline catalog shipped with the package.
|
|
70
|
+
* `local`: The local workspace catalog at `.ai/plugins/catalog.yaml`.
|
|
71
|
+
* `remote:<name>`: A cached registry catalog index synced from a remote source.
|
|
72
|
+
|
package/docs/comparison.md
CHANGED
|
@@ -18,6 +18,7 @@ Selecting how to manage AI instructions inside a codebase impacts developer spee
|
|
|
18
18
|
| **Onboarding existing repos** | ❌ Manual setup | ❌ Manual setup | ❌ Manual setup | ✅ **`onboard analyze` workflow** |
|
|
19
19
|
| **Interactive TUI Dashboard** | ❌ None | ❌ None | ❌ None | ✅ **Zero-dependency TUI Menu** |
|
|
20
20
|
| **Declarative Plugins** | ❌ None | ❌ None | ❌ None | ✅ **Safe whitelist YAML plugins** |
|
|
21
|
+
| **Workflow Marketplace** | ❌ None | ❌ None | ❌ None | ✅ **Local curated plugin catalog** |
|
|
21
22
|
| **Cost** | Free | Free | Free–Paid | ✅ **Free & open source** |
|
|
22
23
|
|
|
23
24
|
---
|
package/docs/dashboard.md
CHANGED
|
@@ -37,6 +37,8 @@ graph TD
|
|
|
37
37
|
Dashboard --> Adapter[Adapter Synchronization...]
|
|
38
38
|
Dashboard --> Memory[Memory & Intelligence...]
|
|
39
39
|
Dashboard --> Feedback[Developer Feedback Loops...]
|
|
40
|
+
Dashboard --> Catalog[Workflow Marketplace Catalog...]
|
|
41
|
+
Dashboard --> Registry[Registry Sources & Cache...]
|
|
40
42
|
Dashboard --> Quality[Quality Gates & Diagnostics...]
|
|
41
43
|
Dashboard --> Plugins[Plugins Status Overview]
|
|
42
44
|
```
|
|
@@ -67,11 +69,20 @@ graph TD
|
|
|
67
69
|
* Summarize feedback logs (`feedback summarize`)
|
|
68
70
|
* Propose improvement proposal (`improve propose`)
|
|
69
71
|
* Review active proposals list (`improve review`)
|
|
70
|
-
7. **
|
|
72
|
+
7. **Workflow Marketplace Catalog**:
|
|
73
|
+
* Catalog List (`catalog list`)
|
|
74
|
+
* Catalog Recommend (`catalog recommend`)
|
|
75
|
+
* Catalog Status (`catalog status`)
|
|
76
|
+
8. **Registry Sources & Cache**:
|
|
77
|
+
* List configured sources (`registry list`)
|
|
78
|
+
* Show sync status (`registry status`)
|
|
79
|
+
* Verify cache integrity (`registry verify bundled`)
|
|
80
|
+
* Show policy status (`registry status` output)
|
|
81
|
+
9. **Quality Gates & Diagnostics**:
|
|
71
82
|
* Run Advisory Diagnostics (`doctor`)
|
|
72
83
|
* Strict Schema Compliance (`validate`)
|
|
73
84
|
* Run Release verification tests (`verify`)
|
|
74
|
-
|
|
85
|
+
10. **Plugins Status Overview**: Checks the status of all installed declarative plugins (`plugin status`).
|
|
75
86
|
|
|
76
87
|
---
|
|
77
88
|
|
package/docs/faq.md
CHANGED
|
@@ -102,6 +102,25 @@ No. The dashboard detects when stdin or stdout is non-interactive. In non-TTY en
|
|
|
102
102
|
**How secure is the Declarative Plugin system?**
|
|
103
103
|
Extremely secure. Plugins are strictly configuration-based (YAML manifest files). They cannot run arbitrary bash commands, execute node scripts, download npm packages, or make network calls. File copies are restricted to whitelisted `.ai/` and `adapters/` directories, and blacklists protect files like `.env`, `.git/`, `package.json`, and source code folders. Overwriting existing files requires `--force` and automatically generates backups.
|
|
104
104
|
|
|
105
|
+
**How does the local Workflow Marketplace / Plugin Catalog work?**
|
|
106
|
+
It is a bundled registry catalog (`catalog.yaml`) containing safe first-party declarative plugins. You can discover them using `catalog list`, search via `catalog search`, and get recommendations via `catalog recommend`. Installing them copies their declarative manifests and assets (like skills and checks) into target directories, reusing all security validation and copy gates of local plugin installations.
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## Trusted Registries & Governance
|
|
111
|
+
|
|
112
|
+
**Are remote registries enabled by default?**
|
|
113
|
+
No. Remote registries are completely disabled out-of-the-box. You must explicitly configure `.ai/policies/registry-policy.yaml` (set `allow_remote_registries: true`) before you can add, sync, or install plugins from any remote registry.
|
|
114
|
+
|
|
115
|
+
**Does `registry sync` download or run arbitrary code?**
|
|
116
|
+
Never. Remote sync only downloads declarative YAML and JSON files (catalogs, manifests, and plugin assets). These are written to a strictly segregated, gitignored directory (`.ai/registry-cache/`). The sync process never runs npm package scripts, invokes compilers, or executes binary code.
|
|
117
|
+
|
|
118
|
+
**How does checksum verification work?**
|
|
119
|
+
The publisher of a remote registry includes a signed manifest (`manifest.json`) listing all registry files and their SHA256 hashes. When synchronizing, the client computes local SHA256 hashes of all downloaded assets and verifies them against the manifest. If a hash mismatch is detected, the synchronization fails immediately.
|
|
120
|
+
|
|
121
|
+
**Can I restrict which paths a remote plugin can write to?**
|
|
122
|
+
Yes. The registry policy file (`registry-policy.yaml`) Whitelists allowed directories (`allowed_write_roots`) and blacklists sensitive targets (`blocked_paths`). Any plugin that attempts to write outside the whitelist or overwrite a blacklisted file (such as `.env` or `package.json`) will be blocked by the installer.
|
|
123
|
+
|
|
105
124
|
---
|
|
106
125
|
|
|
107
126
|
## Diagnostics & Validation
|
package/docs/plugin-authoring.md
CHANGED
|
@@ -97,3 +97,9 @@ To install this plugin locally, users run:
|
|
|
97
97
|
```bash
|
|
98
98
|
npx multimodel-dev-os@latest plugin install your-plugin-folder/plugin.yaml --approved
|
|
99
99
|
```
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## Contributing to the Marketplace Catalog
|
|
104
|
+
|
|
105
|
+
If you are developing first-party plugins for inclusion in the curated catalog, follow the guidelines in the [Catalog Authoring Guide](/catalog-authoring).
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Curated Plugin Registry Catalog
|
|
2
|
+
|
|
3
|
+
The MultiModel Dev OS Workflow Marketplace packages 6 curated first-party plugins:
|
|
4
|
+
|
|
5
|
+
## Curated Plugins
|
|
6
|
+
|
|
7
|
+
### 1. Git Workflows & Verification (`git-workflows`)
|
|
8
|
+
* **Category:** `git`
|
|
9
|
+
* **Purpose:** Automates pre-commit quality checks and repository cleanliness audits.
|
|
10
|
+
* **Assets:** Adds `.ai/skills/git-operations.md` and `.ai/checks/pre-commit-gate.md`.
|
|
11
|
+
|
|
12
|
+
### 2. SEO Audit & Optimization (`seo-workflows`)
|
|
13
|
+
* **Category:** `seo`
|
|
14
|
+
* **Purpose:** Validates semantic heading hierarchies, metadata tags, and sitemaps.
|
|
15
|
+
* **Assets:** Adds `.ai/skills/seo-audit-ops.md`.
|
|
16
|
+
|
|
17
|
+
### 3. WordPress Theme & Plugin Helper (`wordpress-workflows`)
|
|
18
|
+
* **Category:** `wordpress`
|
|
19
|
+
* **Purpose:** Enforces WordPress PHP Coding Standards and security/nonce escape checks.
|
|
20
|
+
* **Assets:** Adds `.ai/skills/wp-helper.md`.
|
|
21
|
+
|
|
22
|
+
### 4. Next.js Route & Action Builder (`nextjs-workflows`)
|
|
23
|
+
* **Category:** `nextjs`
|
|
24
|
+
* **Purpose:** Validates server actions input payloads and route handler formats.
|
|
25
|
+
* **Assets:** Adds `.ai/skills/nextjs-builder.md`.
|
|
26
|
+
|
|
27
|
+
### 5. E-Commerce Webhook & Gateway Audits (`ecommerce-workflows`)
|
|
28
|
+
* **Category:** `ecommerce`
|
|
29
|
+
* **Purpose:** Checks webhook signature verification routines for payment processors.
|
|
30
|
+
* **Assets:** Adds `.ai/skills/checkout-ops.md`.
|
|
31
|
+
|
|
32
|
+
### 6. Release Preparation & Package Audit (`release-workflows`)
|
|
33
|
+
* **Category:** `release`
|
|
34
|
+
* **Purpose:** Automates release-prep version audits and NPM publishing pre-flight checks.
|
|
35
|
+
* **Assets:** Adds `.ai/skills/release-ops.md`.
|
package/docs/plugin-hooks.md
CHANGED
|
@@ -87,3 +87,9 @@ To prevent path traversal and enforce robust script auditing:
|
|
|
87
87
|
* **Alphanumeric Slug Constraints**: Slugs are validated against `/^[a-z0-9-_]+$/i` to block directory escapes when writing to `.ai/plugins/<slug>.yaml`.
|
|
88
88
|
* **Path Boundary checks**: The `plugin validate` CLI command automatically parses `allowed_file_patterns` to assert they fit within whitelisted `.ai/` and `adapters/` folders, checking that no `..` traversal or blacklisted files are referenced.
|
|
89
89
|
* **Non-zero CI exit codes**: If `plugin install` is called without the `--approved` flag, it prints planned actions and exits with **exit code 1** to abort scripting pipelines safely.
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## Workflow Marketplace & Plugin Catalog
|
|
94
|
+
|
|
95
|
+
In `v2.9.0`, MultiModel Dev OS introduces a curated local **Workflow Marketplace & Plugin Catalog** for discoverability of safe first-party plugins. For catalog operations, see the [Workflow Marketplace Catalog Guide](/catalog).
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# MultiModel Dev OS — Comprehensive AI Assistant Discoverability Guide (
|
|
1
|
+
# MultiModel Dev OS — Comprehensive AI Assistant Discoverability Guide (v3.0.0 Stable Release)
|
|
2
2
|
|
|
3
3
|
MultiModel Dev OS is a repository-level porting specification designed to align context and instructions across diverse developer tools and AI models.
|
|
4
4
|
|
|
@@ -80,6 +80,23 @@ All compliant MultiModel Dev OS CLIs strictly enforce the following command cont
|
|
|
80
80
|
- `validate <path>`: Validates a YAML config file against the plugin JSON schema.
|
|
81
81
|
- `install <path>`: Previews file copy actions, and copies them to whitelisted paths under `.ai/` or `adapters/` if `--approved` is specified.
|
|
82
82
|
- `status`: Audits target directory to ensure all declared plugin assets are present.
|
|
83
|
+
- **`catalog`**: Manage the local Workflow Marketplace & Plugin Catalog. Subcommands:
|
|
84
|
+
- `list`: Lists all catalog plugins (supports `--category`).
|
|
85
|
+
- `search <query>`: Case-insensitively searches catalog plugins.
|
|
86
|
+
- `show <slug>`: Displays catalog plugin metadata and file previews.
|
|
87
|
+
- `categories`: Lists all unique categories in the catalog.
|
|
88
|
+
- `recommend`: Scans repo signals to recommend matching catalog plugins.
|
|
89
|
+
- `install <slug>`: Installs a catalog plugin to the target repo (requires `--approved`).
|
|
90
|
+
- `status`: Audits installation status of catalog entries.
|
|
91
|
+
- **`registry`**: Manage trusted remote catalog registries (v3.0.0+). Subcommands:
|
|
92
|
+
- `list`: Lists all configured registry sources from `sources.yaml`.
|
|
93
|
+
- `add <name> <url>`: Adds a new remote registry source (requires `--approved`).
|
|
94
|
+
- `remove <name>`: Removes a registry source and its cache (requires `--approved`).
|
|
95
|
+
- `sync <name>`: Fetches remote `catalog.yaml` and `manifest.json` into `.ai/registry-cache/<name>/` (requires `--approved`).
|
|
96
|
+
- `status`: Shows all sources, sync timestamps, cache health, and policy status.
|
|
97
|
+
- `verify <name>`: Verifies SHA256 checksums of cached files against `checksums.json`.
|
|
98
|
+
- `show <name>`: Shows detailed metadata and policies of a specific registry source.
|
|
99
|
+
- `cache clear`: Deletes all files in `.ai/registry-cache/` (requires `--approved`).
|
|
83
100
|
- **`verify`**: Automated release script that checks structure integrity.
|
|
84
101
|
- **`templates`**: Lists built-in template profiles (supports overrides via `--registry <path>`).
|
|
85
102
|
- **`validate`**: Strict Quality Gate checking the layout rules on disk (supports `--all-registries`).
|
package/docs/public/llms.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# MultiModel Dev OS (
|
|
1
|
+
# MultiModel Dev OS (v3.0.0 Stable Release)
|
|
2
2
|
|
|
3
3
|
Portable, vendor-neutral workspace configuration standard for multi-agent AI pair-programming workflows.
|
|
4
4
|
|
|
@@ -18,6 +18,22 @@ npx multimodel-dev-os@latest plugin validate path/to/plugin.yaml
|
|
|
18
18
|
npx multimodel-dev-os@latest plugin install path/to/plugin.yaml --approved
|
|
19
19
|
npx multimodel-dev-os@latest plugin status
|
|
20
20
|
|
|
21
|
+
# Discover, recommend, and install curated plugin catalogs
|
|
22
|
+
npx multimodel-dev-os@latest catalog list
|
|
23
|
+
npx multimodel-dev-os@latest catalog recommend
|
|
24
|
+
npx multimodel-dev-os@latest catalog show git-workflows
|
|
25
|
+
npx multimodel-dev-os@latest catalog install git-workflows --approved
|
|
26
|
+
npx multimodel-dev-os@latest catalog status
|
|
27
|
+
|
|
28
|
+
# Manage trusted remote catalog registries (v3.0.0+)
|
|
29
|
+
npx multimodel-dev-os@latest registry list
|
|
30
|
+
npx multimodel-dev-os@latest registry status
|
|
31
|
+
npx multimodel-dev-os@latest registry verify bundled
|
|
32
|
+
npx multimodel-dev-os@latest registry show bundled
|
|
33
|
+
npx multimodel-dev-os@latest registry add official https://example.com/catalog.yaml --approved
|
|
34
|
+
npx multimodel-dev-os@latest registry sync official --approved
|
|
35
|
+
npx multimodel-dev-os@latest registry cache clear --approved
|
|
36
|
+
|
|
21
37
|
# Scan codebase signals & check status
|
|
22
38
|
npx multimodel-dev-os@latest scan
|
|
23
39
|
npx multimodel-dev-os@latest status
|