micro-models-agent 0.59.0 → 0.60.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.
Files changed (233) hide show
  1. package/CHANGELOG.md +578 -564
  2. package/README.md +358 -358
  3. package/dist/certification/certifications.json +493 -493
  4. package/dist/i18n/en.json +732 -718
  5. package/dist/i18n/ru.json +732 -718
  6. package/dist/main.js +504 -62
  7. package/dist/modules/browser/bridge-server.mjs +219 -219
  8. package/dist/skills/builtin/git.md +36 -36
  9. package/dist/skills/builtin/typescript.md +35 -35
  10. package/package.json +51 -51
  11. package/dist/cli/commands.js +0 -447
  12. package/dist/cli/completer.js +0 -167
  13. package/dist/cli/index.js +0 -2
  14. package/dist/cli/main.js +0 -153
  15. package/dist/cli/plugin-commands.js +0 -36
  16. package/dist/cli/repl-commands.js +0 -761
  17. package/dist/cli/repl.js +0 -702
  18. package/dist/cli/run-result.js +0 -33
  19. package/dist/cli/security-commands.js +0 -164
  20. package/dist/cli/setup.js +0 -237
  21. package/dist/config/config.js +0 -276
  22. package/dist/config/defaults.js +0 -141
  23. package/dist/config/domains.js +0 -179
  24. package/dist/config/experts.js +0 -15
  25. package/dist/config/index.js +0 -4
  26. package/dist/config/security.js +0 -213
  27. package/dist/config/types.js +0 -1
  28. package/dist/core/agent-moe.js +0 -102
  29. package/dist/core/agent.js +0 -1018
  30. package/dist/core/bootstrap.js +0 -481
  31. package/dist/core/crash-handler.js +0 -51
  32. package/dist/core/environment.js +0 -199
  33. package/dist/core/index.js +0 -2
  34. package/dist/core/prompt-builder.js +0 -76
  35. package/dist/core/session-logger.js +0 -251
  36. package/dist/core/types.js +0 -1
  37. package/dist/core/version.js +0 -26
  38. package/dist/core/workspace.js +0 -76
  39. package/dist/i18n/index.js +0 -46
  40. package/dist/index.js +0 -22
  41. package/dist/llm/image-utils.js +0 -143
  42. package/dist/llm/index.js +0 -4
  43. package/dist/llm/model-loader.js +0 -78
  44. package/dist/llm/openai-compat.js +0 -497
  45. package/dist/llm/orchestrator.js +0 -200
  46. package/dist/llm/provider.js +0 -10
  47. package/dist/llm/response.js +0 -39
  48. package/dist/llm/token-counter.js +0 -39
  49. package/dist/llm/types.js +0 -1
  50. package/dist/logger/app-logger.js +0 -189
  51. package/dist/logger/file-log.js +0 -151
  52. package/dist/logger/index.js +0 -1
  53. package/dist/migration/backup.js +0 -45
  54. package/dist/migration/detect.js +0 -50
  55. package/dist/migration/index.js +0 -2
  56. package/dist/modules/artifacts/store.js +0 -61
  57. package/dist/modules/browser/actions.js +0 -76
  58. package/dist/modules/browser/bridge-client.js +0 -199
  59. package/dist/modules/browser/bridge-path.js +0 -10
  60. package/dist/modules/browser/cookie-store.js +0 -24
  61. package/dist/modules/browser/driver.js +0 -136
  62. package/dist/modules/browser/index.js +0 -7
  63. package/dist/modules/browser/module.js +0 -29
  64. package/dist/modules/browser/session.js +0 -342
  65. package/dist/modules/browser/snapshot.js +0 -148
  66. package/dist/modules/browser/types.js +0 -12
  67. package/dist/modules/certification/cli.js +0 -213
  68. package/dist/modules/certification/fact-checker.js +0 -82
  69. package/dist/modules/certification/loader.js +0 -106
  70. package/dist/modules/certification/manifest.js +0 -58
  71. package/dist/modules/certification/runner.js +0 -245
  72. package/dist/modules/certification/scenarios.js +0 -407
  73. package/dist/modules/certification/types.js +0 -1
  74. package/dist/modules/context/chunk-query.js +0 -100
  75. package/dist/modules/context/fact-extractor.js +0 -168
  76. package/dist/modules/context/history.js +0 -15
  77. package/dist/modules/context/index.js +0 -1
  78. package/dist/modules/context/manager.js +0 -440
  79. package/dist/modules/execution/audit-runners.js +0 -206
  80. package/dist/modules/execution/auditor.js +0 -218
  81. package/dist/modules/execution/execution-plugin.js +0 -431
  82. package/dist/modules/execution/index.js +0 -8
  83. package/dist/modules/execution/module.js +0 -625
  84. package/dist/modules/execution/moe-executor.js +0 -304
  85. package/dist/modules/execution/plan-coverage.js +0 -68
  86. package/dist/modules/execution/plan-persister.js +0 -46
  87. package/dist/modules/execution/plan-store.js +0 -196
  88. package/dist/modules/execution/plan-tool.js +0 -677
  89. package/dist/modules/execution/plan-validator.js +0 -153
  90. package/dist/modules/execution/planner.js +0 -94
  91. package/dist/modules/execution/stuck-detector.js +0 -746
  92. package/dist/modules/execution/tracker.js +0 -69
  93. package/dist/modules/execution/types.js +0 -1
  94. package/dist/modules/execution/verifier.js +0 -235
  95. package/dist/modules/execution/windows-commands.js +0 -41
  96. package/dist/modules/hallucination/confidence.js +0 -66
  97. package/dist/modules/hallucination/consistency.js +0 -26
  98. package/dist/modules/hallucination/detector.js +0 -47
  99. package/dist/modules/hallucination/factual.js +0 -169
  100. package/dist/modules/hallucination/index.js +0 -5
  101. package/dist/modules/hallucination/js-identifiers.js +0 -262
  102. package/dist/modules/hallucination/llm-judge.js +0 -101
  103. package/dist/modules/index.js +0 -5
  104. package/dist/modules/indexer/cache.js +0 -40
  105. package/dist/modules/indexer/index.js +0 -3
  106. package/dist/modules/indexer/module.js +0 -246
  107. package/dist/modules/indexer/project-profile.js +0 -183
  108. package/dist/modules/indexer/walker.js +0 -101
  109. package/dist/modules/lsp/check-tool.js +0 -58
  110. package/dist/modules/lsp/client.js +0 -389
  111. package/dist/modules/lsp/command.js +0 -60
  112. package/dist/modules/lsp/config.js +0 -135
  113. package/dist/modules/lsp/index.js +0 -3
  114. package/dist/modules/lsp/module.js +0 -260
  115. package/dist/modules/lsp/probe.js +0 -86
  116. package/dist/modules/lsp/project-root.js +0 -32
  117. package/dist/modules/lsp/startup-check.js +0 -144
  118. package/dist/modules/lsp/types.js +0 -1
  119. package/dist/modules/mcp/client.js +0 -399
  120. package/dist/modules/mcp/index.js +0 -3
  121. package/dist/modules/mcp/module.js +0 -142
  122. package/dist/modules/mcp/registry.js +0 -15
  123. package/dist/modules/memory/index.js +0 -1
  124. package/dist/modules/memory/module.js +0 -96
  125. package/dist/modules/memory/search.js +0 -42
  126. package/dist/modules/memory/store.js +0 -69
  127. package/dist/modules/pipelines/engine.js +0 -60
  128. package/dist/modules/pipelines/index.js +0 -3
  129. package/dist/modules/pipelines/parser.js +0 -56
  130. package/dist/modules/pipelines/template.js +0 -14
  131. package/dist/modules/plugins/builtin/lint-on-write.js +0 -334
  132. package/dist/modules/plugins/builtin/notify.js +0 -9
  133. package/dist/modules/plugins/index.js +0 -1
  134. package/dist/modules/plugins/loader.js +0 -70
  135. package/dist/modules/plugins/manager.js +0 -261
  136. package/dist/modules/plugins/types.js +0 -1
  137. package/dist/modules/pricing/index.js +0 -61
  138. package/dist/modules/pricing/prices.js +0 -129
  139. package/dist/modules/processes/detect.js +0 -34
  140. package/dist/modules/processes/index.js +0 -2
  141. package/dist/modules/processes/registry.js +0 -327
  142. package/dist/modules/processes/runner.js +0 -23
  143. package/dist/modules/providers/create.js +0 -22
  144. package/dist/modules/providers/fallback.js +0 -79
  145. package/dist/modules/providers/health.js +0 -46
  146. package/dist/modules/providers/index.js +0 -5
  147. package/dist/modules/providers/manager.js +0 -161
  148. package/dist/modules/providers/presets.js +0 -128
  149. package/dist/modules/providers/registry.js +0 -22
  150. package/dist/modules/providers/types.js +0 -1
  151. package/dist/modules/registry.js +0 -48
  152. package/dist/modules/security/audit-log.js +0 -136
  153. package/dist/modules/security/audit-notifier.js +0 -292
  154. package/dist/modules/security/command-validator.js +0 -219
  155. package/dist/modules/security/content-scanner.js +0 -53
  156. package/dist/modules/security/data-sanitizer.js +0 -89
  157. package/dist/modules/security/encryption.js +0 -242
  158. package/dist/modules/security/index.js +0 -14
  159. package/dist/modules/security/network-validator.js +0 -88
  160. package/dist/modules/security/path-validator.js +0 -203
  161. package/dist/modules/security/rate-limiter.js +0 -119
  162. package/dist/modules/security/security-policies.js +0 -531
  163. package/dist/modules/security/session-encryption.js +0 -210
  164. package/dist/modules/security/session-isolation.js +0 -95
  165. package/dist/modules/session/index.js +0 -3
  166. package/dist/modules/session/manager.js +0 -172
  167. package/dist/modules/session/module.js +0 -24
  168. package/dist/modules/session/store.js +0 -222
  169. package/dist/modules/session/types.js +0 -1
  170. package/dist/modules/skills/index.js +0 -2
  171. package/dist/modules/skills/loader.js +0 -72
  172. package/dist/modules/skills/matcher.js +0 -27
  173. package/dist/modules/skills/module.js +0 -129
  174. package/dist/modules/types.js +0 -1
  175. package/dist/modules/updater/checker.js +0 -96
  176. package/dist/modules/updater/index.js +0 -2
  177. package/dist/modules/updater/module.js +0 -116
  178. package/dist/modules/user-profile/compressor.js +0 -16
  179. package/dist/modules/user-profile/index.js +0 -1
  180. package/dist/modules/user-profile/profile.js +0 -68
  181. package/dist/tools/approve.js +0 -33
  182. package/dist/tools/attach-image.js +0 -101
  183. package/dist/tools/bash.js +0 -519
  184. package/dist/tools/browser.js +0 -115
  185. package/dist/tools/chunk-query.js +0 -100
  186. package/dist/tools/create-dir.js +0 -56
  187. package/dist/tools/delete-file.js +0 -63
  188. package/dist/tools/download-file.js +0 -117
  189. package/dist/tools/edit-file.js +0 -80
  190. package/dist/tools/enable-tools.js +0 -59
  191. package/dist/tools/executor.js +0 -154
  192. package/dist/tools/file-info.js +0 -47
  193. package/dist/tools/filter-tools.js +0 -17
  194. package/dist/tools/glob-tool.js +0 -27
  195. package/dist/tools/grep-tool.js +0 -125
  196. package/dist/tools/hidden-tools-block.js +0 -37
  197. package/dist/tools/index.js +0 -78
  198. package/dist/tools/list-dir.js +0 -49
  199. package/dist/tools/load-skill.js +0 -43
  200. package/dist/tools/mcp-call.js +0 -69
  201. package/dist/tools/move-file.js +0 -86
  202. package/dist/tools/path-utils.js +0 -101
  203. package/dist/tools/pipeline-run.js +0 -145
  204. package/dist/tools/preview.js +0 -2
  205. package/dist/tools/process-kill.js +0 -40
  206. package/dist/tools/process-list.js +0 -37
  207. package/dist/tools/process-log.js +0 -54
  208. package/dist/tools/question.js +0 -141
  209. package/dist/tools/read-file.js +0 -179
  210. package/dist/tools/recall.js +0 -118
  211. package/dist/tools/registry.js +0 -47
  212. package/dist/tools/remember.js +0 -68
  213. package/dist/tools/scope-check.js +0 -32
  214. package/dist/tools/search-history.js +0 -85
  215. package/dist/tools/subagent.js +0 -196
  216. package/dist/tools/types.js +0 -1
  217. package/dist/tools/user-input.js +0 -123
  218. package/dist/tools/web-browse.js +0 -87
  219. package/dist/tools/web-fetch.js +0 -119
  220. package/dist/tools/web-search.js +0 -105
  221. package/dist/tools/write-file.js +0 -82
  222. package/dist/ui/box.js +0 -77
  223. package/dist/ui/colors.js +0 -4
  224. package/dist/ui/diff.js +0 -178
  225. package/dist/ui/index.js +0 -6
  226. package/dist/ui/line-editor.js +0 -822
  227. package/dist/ui/line-math.js +0 -73
  228. package/dist/ui/md-formatter.js +0 -212
  229. package/dist/ui/output.js +0 -13
  230. package/dist/ui/plan-view.js +0 -103
  231. package/dist/ui/renderer.js +0 -259
  232. package/dist/ui/spinner.js +0 -70
  233. package/dist/ui/table.js +0 -144
package/package.json CHANGED
@@ -1,51 +1,51 @@
1
- {
2
- "name": "micro-models-agent",
3
- "version": "0.59.0",
4
- "description": "Micro Models Agent (MMA) — LLM agent harness for small models (Qwen3.5-9B, 32K-64K context)",
5
- "type": "module",
6
- "bin": {
7
- "mma": "bin/mma.mjs"
8
- },
9
- "files": [
10
- "dist/",
11
- "bin/",
12
- "CHANGELOG.md"
13
- ],
14
- "engines": {
15
- "node": ">=20"
16
- },
17
- "scripts": {
18
- "mma": "bun run src/cli/main.ts",
19
- "build": "bun run build:tsc && bun run build:copy-assets",
20
- "build:tsc": "tsc -p tsconfig.build.json",
21
- "build:copy-assets": "bun run scripts/copy-assets.ts",
22
- "build:prod": "bun run 'build:bundle' && bun run 'build:copy-assets'",
23
- "build:clean": "cmd /c \"if exist dist rmdir /s /q dist\"",
24
- "build:bundle": "bun build ./src/cli/main.ts --outfile ./dist/main.js --target node --format esm --external playwright",
25
- "dev": "bun --watch src/cli/main.ts",
26
- "typecheck": "tsc --noEmit",
27
- "test": "bun test",
28
- "test:watch": "bun test --watch",
29
- "test:integration": "vitest run --config vitest.integration.config.ts",
30
- "format": "prettier --write \"src/**/*.{ts,js,mjs,json}\" \"tests/**/*.{ts,js,json}\" \"scripts/**/*.ts\" \"*.{ts,json}\"",
31
- "format:check": "prettier --check \"src/**/*.{ts,js,mjs,json}\" \"tests/**/*.{ts,js,json}\" \"scripts/**/*.ts\" \"*.{ts,json}\""
32
- },
33
- "dependencies": {
34
- "commander": "^12.0.0",
35
- "js-tiktoken": "^1.0.0",
36
- "jsonrepair": "^3.15.0",
37
- "picocolors": "^1.1.1",
38
- "playwright": "^1.62.0",
39
- "string-width": "^8.2.2",
40
- "yaml": "^2.9.0"
41
- },
42
- "devDependencies": {
43
- "@types/bun": "^1.4.0",
44
- "@types/node": "^26.3.0",
45
- "@vitest/coverage-v8": "^4.1.11",
46
- "prettier": "^3.9.6",
47
- "tsconfig-paths": "^4.2.0",
48
- "typescript": "^5.9.3",
49
- "vitest": "^4.1.11"
50
- }
51
- }
1
+ {
2
+ "name": "micro-models-agent",
3
+ "version": "0.60.0",
4
+ "description": "Micro Models Agent (MMA) — LLM agent harness for small models (Qwen3.5-9B, 32K-64K context)",
5
+ "type": "module",
6
+ "bin": {
7
+ "mma": "bin/mma.mjs"
8
+ },
9
+ "files": [
10
+ "dist/",
11
+ "bin/",
12
+ "CHANGELOG.md"
13
+ ],
14
+ "engines": {
15
+ "node": ">=20"
16
+ },
17
+ "scripts": {
18
+ "mma": "bun run src/cli/main.ts",
19
+ "build": "bun run build:tsc && bun run build:copy-assets",
20
+ "build:tsc": "tsc -p tsconfig.build.json",
21
+ "build:copy-assets": "bun run scripts/copy-assets.ts",
22
+ "build:prod": "bun run 'build:bundle' && bun run 'build:copy-assets'",
23
+ "build:clean": "cmd /c \"if exist dist rmdir /s /q dist\"",
24
+ "build:bundle": "bun build ./src/cli/main.ts --outfile ./dist/main.js --target node --format esm --external playwright",
25
+ "dev": "bun --watch src/cli/main.ts",
26
+ "typecheck": "tsc --noEmit",
27
+ "test": "bun test",
28
+ "test:watch": "bun test --watch",
29
+ "test:integration": "vitest run --config vitest.integration.config.ts",
30
+ "format": "prettier --write \"src/**/*.{ts,js,mjs,json}\" \"tests/**/*.{ts,js,json}\" \"scripts/**/*.ts\" \"*.{ts,json}\"",
31
+ "format:check": "prettier --check \"src/**/*.{ts,js,mjs,json}\" \"tests/**/*.{ts,js,json}\" \"scripts/**/*.ts\" \"*.{ts,json}\""
32
+ },
33
+ "dependencies": {
34
+ "commander": "^12.0.0",
35
+ "js-tiktoken": "^1.0.0",
36
+ "jsonrepair": "^3.15.0",
37
+ "picocolors": "^1.1.1",
38
+ "playwright": "^1.62.0",
39
+ "string-width": "^8.2.2",
40
+ "yaml": "^2.9.0"
41
+ },
42
+ "devDependencies": {
43
+ "@types/bun": "^1.4.0",
44
+ "@types/node": "^26.3.0",
45
+ "@vitest/coverage-v8": "^4.1.11",
46
+ "prettier": "^3.9.6",
47
+ "tsconfig-paths": "^4.2.0",
48
+ "typescript": "^5.9.3",
49
+ "vitest": "^4.1.11"
50
+ }
51
+ }
@@ -1,447 +0,0 @@
1
- import { Command } from "commander";
2
- import { bootstrap } from "../core/bootstrap";
3
- import { saveConfig } from "../config/config";
4
- import { runSetup } from "./setup";
5
- import { t } from "../i18n/index";
6
- import { pc } from "../ui/colors";
7
- import { join, dirname } from "path";
8
- import { homedir } from "os";
9
- import { existsSync } from "fs";
10
- import { createSecurityCommand } from "./security-commands";
11
- import { createPluginCommand } from "./plugin-commands";
12
- import { HOSTED_BASE_URLS } from "../modules/providers/presets";
13
- import { probeProviders, targetsFromProviders } from "../modules/providers/health";
14
- import { readMmaVersion } from "../core/version";
15
- const version = readMmaVersion();
16
- export function createProgram() {
17
- const program = new Command()
18
- .name("mma")
19
- .description(t("cli.description"))
20
- .version(version)
21
- .option("--no-agents-md", t("cli.no_agents_md"))
22
- .option("-d, --dir <path>", t("cli.dir"))
23
- .option("-e, --exit-on-complete", t("cli.exit_on_complete"))
24
- .option("-j, --json", t("cli.json"));
25
- program
26
- .command("init")
27
- .description(t("cli.init"))
28
- .action(async () => {
29
- const answers = await runSetup();
30
- const configPath = join(homedir(), ".mma", "config.json");
31
- const { config } = await bootstrap();
32
- config.provider.type = answers.provider;
33
- config.provider.baseUrl = answers.apiBase;
34
- config.provider.apiKey = answers.apiKey;
35
- config.model = answers.model;
36
- config.contextWindow = answers.contextWindow;
37
- config.maxToolIterations = answers.maxToolIterations;
38
- config.locale = answers.locale;
39
- // Apply security settings from wizard.
40
- // Security is enabled by default (balanced); wizard answers only tighten it.
41
- if (config.security) {
42
- config.security.enabled = true;
43
- config.security.bash.enabled = true;
44
- config.security.bash.blockDangerousFlags =
45
- answers.securityFlagsBlock || config.security.bash.blockDangerousFlags;
46
- if (answers.securityBashBlock) {
47
- config.security.bash.blacklist = [
48
- ...new Set([
49
- ...config.security.bash.blacklist,
50
- "rm",
51
- "dd",
52
- "chmod",
53
- "wget",
54
- "curl",
55
- "scp",
56
- "ssh",
57
- "nc",
58
- "netcat",
59
- "sudo",
60
- "su",
61
- "kill",
62
- "pkill",
63
- "killall",
64
- "shutdown",
65
- "reboot",
66
- ]),
67
- ];
68
- }
69
- if (!answers.securityPathsDeny) {
70
- config.security.paths.denied = [];
71
- }
72
- }
73
- saveConfig(config, configPath, dirname(configPath));
74
- console.log(t("cli.config_saved"));
75
- });
76
- const configCmd = program.command("config").description(t("cli.manage_config"));
77
- configCmd
78
- .command("set")
79
- .argument("<key>", t("cli.config_key"))
80
- .argument("<value>", "Config value")
81
- .description(t("cli.set_value"))
82
- .action(async (key, value) => {
83
- const configPath = join(homedir(), ".mma", "config.json");
84
- const { config } = await bootstrap();
85
- const keys = key.split(".");
86
- let obj = config;
87
- for (let i = 0; i < keys.length - 1; i++) {
88
- if (!(keys[i] in obj))
89
- obj[keys[i]] = {};
90
- obj = obj[keys[i]];
91
- }
92
- const lastKey = keys[keys.length - 1];
93
- if (value === "true")
94
- obj[lastKey] = true;
95
- else if (value === "false")
96
- obj[lastKey] = false;
97
- else if (/^\d+$/.test(value))
98
- obj[lastKey] = parseInt(value, 10);
99
- else if (/^\d+\.\d+$/.test(value))
100
- obj[lastKey] = parseFloat(value);
101
- else
102
- obj[lastKey] = value;
103
- saveConfig(config, configPath, dirname(configPath));
104
- console.log(t("cli.set_done", { key, value }));
105
- });
106
- configCmd
107
- .command("show")
108
- .description(t("cli.show_config"))
109
- .action(async () => {
110
- const { config } = await bootstrap();
111
- console.log(JSON.stringify(config, null, 2));
112
- });
113
- configCmd
114
- .command("migrate")
115
- .description(t("cli.migrate_config"))
116
- .action(async () => {
117
- const { loadConfig } = await import("../config/config");
118
- const { hasDomainFiles } = await import("../config/domains");
119
- const configDir = join(homedir(), ".mma");
120
- const configPath = join(configDir, "config.json");
121
- if (hasDomainFiles(configDir)) {
122
- console.log(pc.yellow(t("config.migrate_no_legacy")));
123
- return;
124
- }
125
- if (!existsSync(configPath)) {
126
- console.log(pc.yellow(t("config.migrate_no_legacy")));
127
- return;
128
- }
129
- console.log(t("config.migrate_start"));
130
- const { config } = loadConfig({ configDir, projectConfigPath: join(configDir, ".mmrc") });
131
- saveConfig(config, configPath, configDir);
132
- // Rename legacy file
133
- const bakPath = configPath + ".bak";
134
- const { renameSync } = await import("fs");
135
- renameSync(configPath, bakPath);
136
- const { readdirSync } = await import("fs");
137
- const domainFiles = readdirSync(join(configDir, "config")).filter((f) => f.endsWith(".json"));
138
- console.log(pc.green(t("config.migrate_done", { count: String(domainFiles.length) })));
139
- });
140
- const model = program.command("model").description(t("cli.manage_models"));
141
- model
142
- .command("list")
143
- .description(t("cli.list_models"))
144
- .action(async () => {
145
- const { config } = await bootstrap();
146
- console.log(t("cli.current_model"), config.model);
147
- // Fetch available models from provider
148
- const { createProvider } = await import("../modules/providers/create");
149
- const provider = createProvider(config.provider.type, {
150
- model: config.model,
151
- baseUrl: config.provider.baseUrl,
152
- apiKey: config.provider.apiKey,
153
- contextWindow: config.contextWindow,
154
- });
155
- const spinner = (await import("../ui/spinner")).Spinner;
156
- const s = new spinner();
157
- s.start(t("cli.fetching_models"));
158
- try {
159
- const models = await provider.listModels();
160
- s.stop();
161
- if (models.length > 0) {
162
- console.log(t("cli.available_models"));
163
- const { getCertMark } = await import("../modules/certification/manifest");
164
- for (const m of models) {
165
- const marker = m === config.model ? "* " : " ";
166
- const mark = getCertMark(m, config.provider.baseUrl, version, process.cwd());
167
- const cert = mark === "certified" ? "✔" : mark === "stale" ? "○" : "·";
168
- console.log(` ${marker}${cert} ${m}`);
169
- }
170
- }
171
- else {
172
- console.log(t("cli.no_models_found"));
173
- }
174
- }
175
- catch (err) {
176
- s.stop();
177
- console.log(t("cli.model_fetch_failed", { error: String(err) }));
178
- }
179
- console.log(t("cli.model_hint"));
180
- });
181
- model
182
- .command("use")
183
- .argument("<name>", "Model name")
184
- .description(t("cli.set_model"))
185
- .action(async (name) => {
186
- const configPath = join(homedir(), ".mma", "config.json");
187
- const { config } = await bootstrap();
188
- config.model = name;
189
- saveConfig(config, configPath, dirname(configPath));
190
- console.log(t("cli.model_set", { name }));
191
- });
192
- model
193
- .command("certify")
194
- .argument("<name>", "Model name")
195
- .option("--provider-url <url>", t("cli.cert_provider_url"))
196
- .option("--provider-key <key>", t("cli.cert_provider_key"))
197
- .option("--context-window <n>", t("cli.cert_context_window"))
198
- .option("--tags <tags>", t("cli.cert_tags"), "core")
199
- .option("--reps <n>", t("cli.cert_reps"))
200
- .option("--force", t("cli.cert_force"))
201
- .option("--clean", t("cli.cert_clean"))
202
- .description(t("cli.certify"))
203
- .action(async (name, cmdOpts) => {
204
- const { config } = await bootstrap();
205
- const { certify, parseTags } = await import("../modules/certification/cli");
206
- await certify({
207
- name,
208
- providerUrl: cmdOpts.providerUrl,
209
- providerKey: cmdOpts.providerKey,
210
- contextWindow: cmdOpts.contextWindow ? parseInt(cmdOpts.contextWindow, 10) : undefined,
211
- tags: parseTags(cmdOpts.tags),
212
- reps: cmdOpts.reps ? parseInt(cmdOpts.reps, 10) : 3,
213
- force: cmdOpts.force === true,
214
- clean: cmdOpts.clean === true,
215
- config,
216
- projectDir: process.cwd(),
217
- });
218
- });
219
- model
220
- .command("cert-status")
221
- .argument("<name>", "Model name")
222
- .description(t("cli.cert_status"))
223
- .action(async (name) => {
224
- const { config } = await bootstrap();
225
- const { certStatus } = await import("../modules/certification/cli");
226
- await certStatus(name, config, process.cwd());
227
- });
228
- model
229
- .command("cert-list")
230
- .description(t("cli.cert_list"))
231
- .action(async () => {
232
- const { certList } = await import("../modules/certification/cli");
233
- await certList(process.cwd());
234
- });
235
- model
236
- .command("uncertify")
237
- .argument("<name>", "Model name")
238
- .description(t("cli.cert_uncertify"))
239
- .action(async (name) => {
240
- const { config } = await bootstrap();
241
- const { uncertify } = await import("../modules/certification/cli");
242
- await uncertify(name, config, process.cwd());
243
- });
244
- // Context window command
245
- program
246
- .command("context")
247
- .description(t("cli.manage_context"))
248
- .argument("<size>", "Context window size in tokens")
249
- .action(async (size) => {
250
- const configPath = join(homedir(), ".mma", "config.json");
251
- const { config } = await bootstrap();
252
- const contextWindow = parseInt(size, 10);
253
- if (isNaN(contextWindow) || contextWindow < 1024) {
254
- console.log(t("cli.invalid_context_size"));
255
- return;
256
- }
257
- config.contextWindow = contextWindow;
258
- saveConfig(config, configPath, dirname(configPath));
259
- console.log(t("cli.context_set", { size: contextWindow }));
260
- });
261
- const provider = program.command("provider").description(t("cli.manage_providers"));
262
- provider
263
- .command("check")
264
- .description(t("cli.provider_check"))
265
- .option("--timeout <ms>", "Per-provider probe timeout in ms")
266
- .action(async (opts) => {
267
- const { config, agent } = await bootstrap();
268
- const providers = agent.listProviders();
269
- const targets = targetsFromProviders(providers.length > 0
270
- ? providers
271
- .map((p) => ({ name: p.label, provider: agent.getProviderFor(p.label) }))
272
- .filter((x) => Boolean(x.provider))
273
- : [
274
- {
275
- name: config.provider.type,
276
- provider: agent.getProviderFor(config.provider.active || config.provider.type),
277
- },
278
- ].filter((x) => Boolean(x.provider)));
279
- const results = await probeProviders(targets, {
280
- timeoutMs: opts.timeout ? Number(opts.timeout) : 5000,
281
- });
282
- for (const r of results) {
283
- const mark = r.ok ? pc.green("✓") : pc.red("✗");
284
- const detail = r.ok
285
- ? pc.dim(`${r.ms}ms, ${r.models} models`)
286
- : pc.red(r.error ?? "failed");
287
- console.log(` ${mark} ${r.name.padEnd(16)} ${detail}`);
288
- }
289
- });
290
- provider
291
- .command("list")
292
- .description(t("cli.list_providers"))
293
- .action(async () => {
294
- const { config, agent } = await bootstrap();
295
- const providers = agent.listProviders();
296
- if (providers.length > 0) {
297
- console.log(t("cli.current_provider"));
298
- for (const p of providers) {
299
- const marker = p.active ? pc.green("* ") : " ";
300
- const prio = p.priority !== undefined ? ` ${pc.dim(`prio=${p.priority}`)}` : "";
301
- console.log(` ${marker}${p.label} (${pc.dim(p.type)}) ${pc.dim(p.baseUrl)}${prio}`);
302
- }
303
- return;
304
- }
305
- console.log(t("cli.current_provider"), config.provider.type);
306
- console.log(t("cli.base_url"), config.provider.baseUrl);
307
- });
308
- provider
309
- .command("use")
310
- .argument("<name>", "Provider name")
311
- .description(t("cli.set_provider"))
312
- .action(async (name) => {
313
- const configPath = join(homedir(), ".mma", "config.json");
314
- const { config, agent } = await bootstrap();
315
- if (config.provider.entries && config.provider.entries.length > 0) {
316
- try {
317
- await agent.setProvider(name);
318
- console.log(t("cli.provider_set", { name }));
319
- }
320
- catch (e) {
321
- console.log(pc.red(e.message));
322
- }
323
- return;
324
- }
325
- config.provider.type = name;
326
- const baseUrl = HOSTED_BASE_URLS[name];
327
- if (baseUrl) {
328
- config.provider.baseUrl = baseUrl;
329
- }
330
- saveConfig(config, configPath, dirname(configPath));
331
- console.log(t("cli.provider_set", { name }));
332
- if (baseUrl) {
333
- console.log(t("cli.provider_base_hint", { baseUrl }));
334
- }
335
- });
336
- provider
337
- .command("add")
338
- .argument("<name>", "Provider type or label")
339
- .option("--url <url>", "Base URL")
340
- .option("--key <key>", "API key")
341
- .option("--priority <n>", "Fallback priority (lower = tried first)")
342
- .option("--context-window <n>", "Context window override for this entry")
343
- .option("--rpm <n>", "Max requests per minute for this entry")
344
- .option("--parallel <n>", "Max parallel tasks for this entry")
345
- .description(t("cli.add_provider"))
346
- .action(async (name, opts) => {
347
- const configPath = join(homedir(), ".mma", "config.json");
348
- const { config } = await bootstrap();
349
- const entries = Array.isArray(config.provider.entries)
350
- ? config.provider.entries
351
- : [];
352
- // If a legacy single provider exists, seed the list with it first.
353
- if (entries.length === 0) {
354
- entries.push({
355
- type: config.provider.type,
356
- label: config.provider.type,
357
- baseUrl: config.provider.baseUrl,
358
- apiKey: config.provider.apiKey,
359
- });
360
- }
361
- const baseUrl = opts.url || HOSTED_BASE_URLS[name] || HOSTED_BASE_URLS[`opencode-${name}`] || "";
362
- if (!baseUrl) {
363
- console.log(pc.red(t("cli.provider_no_url", { name })));
364
- return;
365
- }
366
- entries.push({
367
- type: name,
368
- label: name,
369
- baseUrl,
370
- apiKey: opts.key,
371
- ...(opts.priority !== undefined ? { priority: Number(opts.priority) } : {}),
372
- ...(opts.contextWindow !== undefined
373
- ? { contextWindow: Number(opts.contextWindow) }
374
- : {}),
375
- ...(opts.rpm !== undefined || opts.parallel !== undefined
376
- ? {
377
- rateLimits: {
378
- maxRequestsPerMinute: Number(opts.rpm ?? 0) || 60,
379
- maxParallelTasks: Number(opts.parallel ?? 0) || 1,
380
- },
381
- }
382
- : {}),
383
- });
384
- config.provider.entries = entries;
385
- config.provider.active = config.provider.active || config.provider.type;
386
- saveConfig(config, configPath, dirname(configPath));
387
- console.log(pc.green(t("cli.provider_added", { name })));
388
- console.log(t("cli.provider_switch_hint"));
389
- });
390
- const session = program.command("session").description(t("cli.manage_sessions"));
391
- session
392
- .command("list")
393
- .description(t("cli.list_sessions"))
394
- .action(async () => {
395
- const { sessionManager } = await bootstrap();
396
- const sessions = sessionManager.list();
397
- if (sessions.length === 0) {
398
- console.log(t("session.no_sessions"));
399
- return;
400
- }
401
- const active = sessionManager.getActive();
402
- for (const s of sessions) {
403
- const marker = s.id === active ? "*" : " ";
404
- console.log(` ${marker} ${s.id.slice(0, 12)} ${s.name} ${s.messageCount} msgs ${s.updatedAt.slice(0, 10)}`);
405
- }
406
- });
407
- session
408
- .command("show")
409
- .argument("<id>", "Session id")
410
- .description(t("cli.show_details"))
411
- .action(async (id) => {
412
- const { sessionManager } = await bootstrap();
413
- const meta = sessionManager.get(id);
414
- if (!meta) {
415
- console.log(t("session.not_found", { id }));
416
- return;
417
- }
418
- console.log(`ID: ${meta.id}`);
419
- console.log(`Name: ${meta.name}`);
420
- console.log(`Created: ${meta.createdAt}`);
421
- console.log(`Updated: ${meta.updatedAt}`);
422
- console.log(`Messages: ${meta.messageCount}`);
423
- console.log(`Model: ${meta.model}`);
424
- console.log(`Context: ${meta.contextWindow}`);
425
- console.log(`Project: ${meta.projectDir}`);
426
- });
427
- session
428
- .command("delete")
429
- .argument("<id>", "Session id")
430
- .description(t("cli.delete_session"))
431
- .action(async (id) => {
432
- const { sessionManager } = await bootstrap();
433
- sessionManager.delete(id);
434
- console.log(t("session.deleted", { id }));
435
- });
436
- // Add security commands
437
- createSecurityCommand(program);
438
- // Add plugin commands
439
- createPluginCommand(program);
440
- program
441
- .argument("[prompt...]", "Prompt to execute")
442
- .description("Run a single prompt")
443
- .action((prompt) => {
444
- /* Handled by main.ts after program.parse() */
445
- });
446
- return program;
447
- }