Skip to content

CLI Roadmap

The zero-dependency CLI utility is fully integrated with npm and npx in v2.0.0!

Current CLI Usage

Recommended way to execute the CLI globally via npx:

bash
# Initialize standard configuration in current directory
npx multimodel-dev-os@latest init

# Initialize with specific template and adapters
npx multimodel-dev-os@latest init --template nextjs-saas --adapter cursor --adapter claude

# Run dry-run preview before executing file writes
npx multimodel-dev-os@latest init --dry-run

# Force overwrite existing files
npx multimodel-dev-os@latest init --force

# Check structural health of target directory
npx multimodel-dev-os@latest verify

Alternatively, you can run the CLI directly from cloned source during development:

bash
node bin/multimodel-dev-os.js init
node bin/multimodel-dev-os.js verify
CommandPurposeTarget VersionStatus
initScaffold multimodel-dev-os into a projectv0.2.0✅ Completed
verifyCheck that all required files exist and are validv0.2.0✅ Completed
templatesList all built-in template profiles with detailsv0.5.0✅ Completed
show-templateInspect stack specifications of a templatev0.5.0✅ Completed
doctorAdvisory checkup of workspace compatibilityv0.5.0✅ Completed
validateStrict directory schema compliance checksv0.5.0✅ Completed
modelsList configured model registry entriesv2.0.0✅ Completed
show-modelInspect settings for a model registry entryv2.0.0✅ Completed
providersList configured model registry providersv2.0.0✅ Completed
route-modelRoute a target prompt based on presetsv2.0.0✅ Completed
adaptersList configured adapter registry entriesv2.0.0✅ Completed
show-adapterInspect settings for an adapter registry entryv2.0.0✅ Completed
skillsList configured skill registry entriesv2.0.0✅ Completed
show-skillInspect settings for a skill registry entryv2.0.0✅ Completed

CLI v2.0.0 Stabilization & Beyond

The v2.0.0 stabilization milestone was completed successfully, hardening registries configurations, custom skill checking tools, and token size overrides. Any future subcommands or adapter sync mechanisms will follow SemVer guidelines to ensure full backward compatibility.

Released under the MIT License.