local-first Workflow Marketplace & Plugin Catalog
MultiModel Dev OS includes an offline, sandboxed Workflow Marketplace that lets you discover, inspect, and install curated plugins and workflow packs.
Catalog CLI Commands
1. List Available Plugins
List all plugins registered in the local marketplace.
npx multimodel-dev-os catalog listTo filter by category:
npx multimodel-dev-os catalog list --category git2. Search Catalog
Search for plugins matching a query string in names, slugs, descriptions, or tags.
npx multimodel-dev-os catalog search <query>3. Show Plugin Specifications
Inspect detailed specifications, category, use cases, safety logs, and files previewed for a catalog plugin.
npx multimodel-dev-os catalog show <slug>4. Get Recommendations
Analyze the current workspace framework and language signals to suggest optimal plugins.
npx multimodel-dev-os catalog recommend5. Install a Catalog Plugin
Install the plugin manifest and all declared assets to the current workspace.
npx multimodel-dev-os catalog install <slug> --approvedTo overwrite existing assets (creating .bak backups):
npx multimodel-dev-os catalog install <slug> --approved --force6. Audit Installed Catalog Status
Check which catalog plugins are installed and if any of their declared files are missing.
npx multimodel-dev-os catalog statusSource Filtering
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:
- Filter by a specific source:bash
npx multimodel-dev-os catalog list --source remote:partner-registry npx multimodel-dev-os catalog search nextjs --source local - Query all enabled sources:bash
npx multimodel-dev-os catalog list --all-sources npx multimodel-dev-os catalog recommend --all-sources
Supported values for --source are:
bundled: The default offline catalog shipped with the package.local: The local workspace catalog at.ai/plugins/catalog.yaml.remote:<name>: A cached registry catalog index synced from a remote source.
