multimodel-dev-os 3.1.0 ā 3.5.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/policies/registry-policy.yaml +29 -1
- package/.ai/registries/trusted-keys.yaml +12 -0
- package/.ai/schema/registry-manifest.schema.json +31 -2
- package/.ai/schema/registry-policy.schema.json +37 -1
- package/.ai/schema/trusted-keys.schema.json +69 -0
- package/AGENTS.md +22 -26
- package/MEMORY.md +34 -11
- package/README.md +2 -1
- package/RUNBOOK.md +28 -36
- package/TASKS.md +15 -5
- package/bin/multimodel-dev-os.js +1366 -548
- package/docs/.vitepress/config.js +3 -1
- package/docs/architecture.md +3 -1
- package/docs/index.md +5 -5
- package/docs/npm-publishing.md +5 -5
- package/docs/package-safety.md +17 -0
- package/docs/public/llms-full.txt +5 -1
- package/docs/public/llms.txt +6 -1
- package/docs/public/sitemap.xml +15 -0
- package/docs/registry-policy.md +29 -1
- package/docs/registry-security.md +73 -6
- package/docs/registry-signing.md +70 -0
- package/docs/registry-sync.md +5 -2
- package/docs/registry-trust-store.md +66 -0
- package/docs/release-policy.md +6 -5
- package/docs/security-threat-model.md +96 -0
- package/docs/testing.md +25 -2
- package/docs/trusted-registries.md +1 -1
- package/docs/v3-roadmap.md +17 -6
- package/docs/v3.5.0-readiness.md +46 -0
- package/package.json +5 -2
- package/scripts/build-cli.js +45 -3
- package/scripts/check-build-fresh.js +52 -0
- package/scripts/install.ps1 +1 -1
- package/scripts/install.sh +1 -1
- package/scripts/verify.js +327 -14
- package/scripts/verify.sh +10 -0
- package/src/catalog/loader.js +117 -0
- package/src/cli/args.js +118 -0
- package/src/cli/help.js +60 -0
- package/src/cli/main.js +6263 -0
- package/src/core/globals.js +52 -0
- package/src/core/hashes.js +15 -0
- package/src/core/policy.js +44 -0
- package/src/core/security.js +61 -0
- package/src/core/yaml.js +136 -0
- package/src/plugin/manifest.js +95 -0
- package/src/registry/provenance.js +114 -0
- package/src/registry/signing.js +392 -0
- package/src/registry/sources.js +40 -0
- package/src/registry/trust-store.js +41 -0
- package/src/registry/validation.js +45 -0
- package/src/registry/verdict.js +51 -0
- package/tests/README.md +37 -0
- package/tests/fixtures/README.md +22 -0
- package/tests/fixtures/custom-template-example/README.md +10 -0
- package/tests/fixtures/proposals/approved-append-line.md +28 -0
- package/tests/fixtures/proposals/approved-create-file.md +29 -0
- package/tests/fixtures/proposals/approved-replace-text.md +30 -0
- package/tests/fixtures/proposals/existing-create-file-no-overwrite.md +29 -0
- package/tests/fixtures/proposals/no-operations.md +18 -0
- package/tests/fixtures/proposals/path-traversal.md +29 -0
- package/tests/fixtures/proposals/pending-proposal.md +29 -0
- package/tests/fixtures/proposals/protected-path.md +29 -0
- package/tests/fixtures/proposals/replace-multiple-without-allow.md +30 -0
- package/tests/fixtures/registry-overrides/README.md +20 -0
- package/tests/fixtures/signed-registries/README.md +4 -0
- package/tests/fixtures/signed-registries/revoked-key/catalog.yaml +8 -0
- package/tests/fixtures/signed-registries/revoked-key/expected-verdict.json +7 -0
- package/tests/fixtures/signed-registries/revoked-key/registry-manifest.yaml +14 -0
- package/tests/fixtures/signed-registries/tampered-manifest/catalog.yaml +8 -0
- package/tests/fixtures/signed-registries/tampered-manifest/expected-verdict.json +7 -0
- package/tests/fixtures/signed-registries/tampered-manifest/registry-manifest.yaml +14 -0
- package/tests/fixtures/signed-registries/trusted-keys.yaml +23 -0
- package/tests/fixtures/signed-registries/unsigned-remote-required/catalog.yaml +8 -0
- package/tests/fixtures/signed-registries/unsigned-remote-required/expected-verdict.json +7 -0
- package/tests/fixtures/signed-registries/unsigned-remote-required/registry-manifest.yaml +9 -0
- package/tests/fixtures/signed-registries/unsupported-algorithm/catalog.yaml +8 -0
- package/tests/fixtures/signed-registries/unsupported-algorithm/expected-verdict.json +7 -0
- package/tests/fixtures/signed-registries/unsupported-algorithm/registry-manifest.yaml +14 -0
- package/tests/fixtures/signed-registries/valid-signed-registry/catalog.yaml +8 -0
- package/tests/fixtures/signed-registries/valid-signed-registry/expected-verdict.json +7 -0
- package/tests/fixtures/signed-registries/valid-signed-registry/registry-manifest.yaml +14 -0
- package/tests/fixtures/signed-registries/wrong-key/catalog.yaml +8 -0
- package/tests/fixtures/signed-registries/wrong-key/expected-verdict.json +7 -0
- package/tests/fixtures/signed-registries/wrong-key/registry-manifest.yaml +14 -0
- package/tests/smoke/README.md +37 -0
- package/tests/smoke/cli-smoke.md +49 -0
- package/tests/unit/build-output.test.js +40 -0
- package/tests/unit/catalog-loader.test.js +44 -0
- package/tests/unit/path-safety.test.js +62 -0
- package/tests/unit/plugin-manifest.test.js +94 -0
- package/tests/unit/prepublish-guard.test.js +35 -0
- package/tests/unit/registry-e2e-signature-fixtures.test.js +288 -0
- package/tests/unit/registry-policy.test.js +52 -0
- package/tests/unit/registry-provenance.test.js +185 -0
- package/tests/unit/registry-public-signing.test.js +109 -0
- package/tests/unit/registry-signature-policy.test.js +100 -0
- package/tests/unit/registry-signing.test.js +193 -0
- package/tests/unit/registry-trust-store.test.js +133 -0
- package/tests/unit/registry-url-validation.test.js +64 -0
- package/tests/unit/yaml.test.js +92 -0
package/src/cli/help.js
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { version } from '../core/globals.js';
|
|
2
|
+
|
|
3
|
+
export function showHelp() {
|
|
4
|
+
console.log(`\nš§ \x1b[36mmultimodel-dev-os CLI v${version}\x1b[0m`);
|
|
5
|
+
console.log('====================================');
|
|
6
|
+
console.log('Usage: node bin/multimodel-dev-os.js <command> [options]\n');
|
|
7
|
+
console.log('Commands:');
|
|
8
|
+
console.log(' init Initialize a project with configs and adapters');
|
|
9
|
+
console.log(' scan Scan project structure and framework signals');
|
|
10
|
+
console.log(' status Show compact dashboard summarizing repository intelligence state');
|
|
11
|
+
console.log(' dashboard Launch the interactive terminal command center (alias: ui)');
|
|
12
|
+
console.log(' memory <subcmd> Manage hash-compressed codebase memory (subcmd: build, refresh, diff)');
|
|
13
|
+
console.log(' feedback <subcmd> Manage developer feedback loops (subcmd: add, list, summarize)');
|
|
14
|
+
console.log(' improve <subcmd> Manage codebase self-improvement proposals (subcmd: propose, review, status, validate, diff, apply, log)');
|
|
15
|
+
console.log(' workflow <subcmd> Orchestrate read-only development workflow pipelines (subcmd: list, show, plan, run)');
|
|
16
|
+
console.log(' handoff <subcmd> Compile or print token-compressed agent session summaries (subcmd: build, show)');
|
|
17
|
+
console.log(' onboard <subcmd> Safely integrate MultiModel Dev OS into existing repo (subcmd: analyze, recommend, plan, apply, status)');
|
|
18
|
+
console.log(' adapter <subcmd> Manage and sync rule/settings files for IDE adapters (subcmd: status, diff, sync)');
|
|
19
|
+
console.log(' plugin <subcmd> Manage declarative plugins (subcmd: list, show, validate, install, status)');
|
|
20
|
+
console.log(' catalog <subcmd> Manage Workflow Marketplace & Plugin Catalog (subcmd: list, search, show, categories, recommend, install, status)');
|
|
21
|
+
console.log(' registry <subcmd> Manage trusted remote catalog registries (subcmd: list, add, remove, sync, status, verify, show, cache, keygen, lock, trust)');
|
|
22
|
+
console.log(' verify Validate structural integrity of an existing project');
|
|
23
|
+
console.log(' templates List all built-in template profiles with details');
|
|
24
|
+
console.log(' list-templates Alias for templates command');
|
|
25
|
+
console.log(' show-template <t> Inspect detailed stack specifications of template <t>');
|
|
26
|
+
console.log(' doctor Advisory checkup of project compatibility loops and ignored folders');
|
|
27
|
+
console.log(' validate Strict validation checks to verify directory schema compliance');
|
|
28
|
+
console.log(' validate-template Validate registry keys and source folder files for template');
|
|
29
|
+
console.log(' validate-adapter Validate registry keys and source assets for IDE adapter');
|
|
30
|
+
console.log(' validate-skill Verify custom skill conforms to core prompt structure');
|
|
31
|
+
console.log(' models List registered model aliases in the capabilities registry');
|
|
32
|
+
console.log(' show-model <m> View specifications of model <m> in registry');
|
|
33
|
+
console.log(' providers List configured AI provider API endpoints');
|
|
34
|
+
console.log(' route-model <tsk> Suggest optimal model mapping for task <tsk>');
|
|
35
|
+
console.log(' adapters List IDE and terminal tool adapters');
|
|
36
|
+
console.log(' show-adapter <a> Inspect config specifications of adapter <a>');
|
|
37
|
+
console.log(' skills List active skills custom prompts in target workspace');
|
|
38
|
+
console.log(' show-skill <s> View prompt contents of target workspace skill <s>\n');
|
|
39
|
+
console.log('Options:');
|
|
40
|
+
console.log(' -t, --target <path> Target folder destination (default: current working directory)');
|
|
41
|
+
console.log(' --type <type> Feedback classification (correction, preference, bug, etc.)');
|
|
42
|
+
console.log(' --tags <list> Comma-separated descriptor tags for feedback');
|
|
43
|
+
console.log(' --files <list> Comma-separated target files for feedback');
|
|
44
|
+
console.log(' --category <name> Filter catalog plugins list by category');
|
|
45
|
+
console.log(' --source <src> Catalog source filter: bundled, local, or remote:<name>');
|
|
46
|
+
console.log(' --all-sources Include all enabled catalog sources in listings');
|
|
47
|
+
console.log(' --title <text> Specifies title for codebase improvement proposal');
|
|
48
|
+
console.log(' --approved Explicitly approve and execute proposal/onboarding/adapter sync writes');
|
|
49
|
+
console.log(' --template <name> Template profile: nextjs-saas, expo-react-native-android, etc.');
|
|
50
|
+
console.log(' -a, --adapter <name> Inject specific adapter: cursor, claude, vscode, gemini, etc.');
|
|
51
|
+
console.log(' --caveman Use minimal-token templates (~79% fewer tokens)');
|
|
52
|
+
console.log(' --tokens Run a deeper token-sink size analysis during doctor checkup');
|
|
53
|
+
console.log(' --intelligence Run diagnostic checkup of repository intelligence config');
|
|
54
|
+
console.log(' --onboarding Run diagnostic checkup of repository onboarding setup');
|
|
55
|
+
console.log(' --json Output raw JSON data for listing commands (models, adapters, templates)');
|
|
56
|
+
console.log(' --threshold <val> Set custom size threshold for doctor tokens checks (e.g. 50KB)');
|
|
57
|
+
console.log(' --registry <path> Override default registry (for templates/adapters list or check)');
|
|
58
|
+
console.log(' -d, --dry-run Preview planned file actions without modifying the filesystem');
|
|
59
|
+
console.log(' -f, --force Overwrite existing files without prompting\n');
|
|
60
|
+
}
|