micro-models-agent 0.61.0 → 0.61.1
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/CHANGELOG.md +601 -595
- package/README.md +358 -358
- package/dist/certification/certifications.json +493 -493
- package/dist/cli/commands.js +447 -0
- package/dist/cli/completer.js +167 -0
- package/dist/cli/index.js +2 -0
- package/dist/cli/main.js +153 -0
- package/dist/cli/plugin-commands.js +36 -0
- package/dist/cli/repl-commands.js +761 -0
- package/dist/cli/repl.js +702 -0
- package/dist/cli/run-result.js +33 -0
- package/dist/cli/security-commands.js +164 -0
- package/dist/cli/setup.js +237 -0
- package/dist/config/config.js +276 -0
- package/dist/config/defaults.js +141 -0
- package/dist/config/domains.js +179 -0
- package/dist/config/experts.js +15 -0
- package/dist/config/index.js +4 -0
- package/dist/config/security.js +213 -0
- package/dist/config/types.js +1 -0
- package/dist/core/agent-moe.js +102 -0
- package/dist/core/agent.js +1018 -0
- package/dist/core/bootstrap.js +481 -0
- package/dist/core/crash-handler.js +51 -0
- package/dist/core/environment.js +199 -0
- package/dist/core/index.js +2 -0
- package/dist/core/prompt-builder.js +76 -0
- package/dist/core/session-logger.js +251 -0
- package/dist/core/types.js +1 -0
- package/dist/core/version.js +26 -0
- package/dist/core/workspace.js +76 -0
- package/dist/i18n/en.json +757 -757
- package/dist/i18n/index.js +46 -0
- package/dist/i18n/ru.json +757 -757
- package/dist/index.js +22 -0
- package/dist/llm/image-utils.js +143 -0
- package/dist/llm/index.js +4 -0
- package/dist/llm/model-loader.js +78 -0
- package/dist/llm/openai-compat.js +497 -0
- package/dist/llm/orchestrator.js +200 -0
- package/dist/llm/provider.js +10 -0
- package/dist/llm/response.js +39 -0
- package/dist/llm/token-counter.js +39 -0
- package/dist/llm/types.js +1 -0
- package/dist/logger/app-logger.js +189 -0
- package/dist/logger/file-log.js +151 -0
- package/dist/logger/index.js +1 -0
- package/dist/main.js +364 -325
- package/dist/migration/backup.js +45 -0
- package/dist/migration/detect.js +50 -0
- package/dist/migration/index.js +2 -0
- package/dist/modules/artifacts/store.js +61 -0
- package/dist/modules/browser/actions.js +76 -0
- package/dist/modules/browser/bridge-client.js +199 -0
- package/dist/modules/browser/bridge-path.js +10 -0
- package/dist/modules/browser/bridge-server.mjs +219 -219
- package/dist/modules/browser/cookie-store.js +24 -0
- package/dist/modules/browser/driver.js +136 -0
- package/dist/modules/browser/index.js +7 -0
- package/dist/modules/browser/module.js +29 -0
- package/dist/modules/browser/session.js +342 -0
- package/dist/modules/browser/snapshot.js +148 -0
- package/dist/modules/browser/types.js +12 -0
- package/dist/modules/certification/cli.js +213 -0
- package/dist/modules/certification/fact-checker.js +82 -0
- package/dist/modules/certification/loader.js +106 -0
- package/dist/modules/certification/manifest.js +58 -0
- package/dist/modules/certification/runner.js +245 -0
- package/dist/modules/certification/scenarios.js +407 -0
- package/dist/modules/certification/types.js +1 -0
- package/dist/modules/context/chunk-query.js +100 -0
- package/dist/modules/context/fact-extractor.js +168 -0
- package/dist/modules/context/history.js +15 -0
- package/dist/modules/context/index.js +1 -0
- package/dist/modules/context/manager.js +440 -0
- package/dist/modules/execution/audit-runners.js +206 -0
- package/dist/modules/execution/auditor.js +218 -0
- package/dist/modules/execution/execution-plugin.js +431 -0
- package/dist/modules/execution/index.js +8 -0
- package/dist/modules/execution/module.js +625 -0
- package/dist/modules/execution/moe-executor.js +304 -0
- package/dist/modules/execution/plan-coverage.js +68 -0
- package/dist/modules/execution/plan-persister.js +46 -0
- package/dist/modules/execution/plan-store.js +196 -0
- package/dist/modules/execution/plan-tool.js +677 -0
- package/dist/modules/execution/plan-validator.js +153 -0
- package/dist/modules/execution/planner.js +94 -0
- package/dist/modules/execution/stuck-detector.js +746 -0
- package/dist/modules/execution/tracker.js +69 -0
- package/dist/modules/execution/types.js +1 -0
- package/dist/modules/execution/verifier.js +235 -0
- package/dist/modules/execution/windows-commands.js +41 -0
- package/dist/modules/hallucination/confidence.js +66 -0
- package/dist/modules/hallucination/consistency.js +26 -0
- package/dist/modules/hallucination/detector.js +47 -0
- package/dist/modules/hallucination/factual.js +169 -0
- package/dist/modules/hallucination/index.js +5 -0
- package/dist/modules/hallucination/js-identifiers.js +262 -0
- package/dist/modules/hallucination/llm-judge.js +101 -0
- package/dist/modules/index.js +5 -0
- package/dist/modules/indexer/cache.js +40 -0
- package/dist/modules/indexer/index.js +3 -0
- package/dist/modules/indexer/module.js +246 -0
- package/dist/modules/indexer/project-profile.js +183 -0
- package/dist/modules/indexer/walker.js +101 -0
- package/dist/modules/lsp/check-tool.js +58 -0
- package/dist/modules/lsp/client.js +389 -0
- package/dist/modules/lsp/command.js +60 -0
- package/dist/modules/lsp/config.js +135 -0
- package/dist/modules/lsp/index.js +3 -0
- package/dist/modules/lsp/module.js +260 -0
- package/dist/modules/lsp/probe.js +86 -0
- package/dist/modules/lsp/project-root.js +32 -0
- package/dist/modules/lsp/startup-check.js +144 -0
- package/dist/modules/lsp/types.js +1 -0
- package/dist/modules/mcp/client.js +399 -0
- package/dist/modules/mcp/index.js +3 -0
- package/dist/modules/mcp/module.js +142 -0
- package/dist/modules/mcp/registry.js +15 -0
- package/dist/modules/memory/index.js +1 -0
- package/dist/modules/memory/module.js +96 -0
- package/dist/modules/memory/search.js +42 -0
- package/dist/modules/memory/store.js +69 -0
- package/dist/modules/pipelines/engine.js +60 -0
- package/dist/modules/pipelines/index.js +3 -0
- package/dist/modules/pipelines/parser.js +56 -0
- package/dist/modules/pipelines/template.js +14 -0
- package/dist/modules/plugins/builtin/lint-on-write.js +334 -0
- package/dist/modules/plugins/builtin/notify.js +9 -0
- package/dist/modules/plugins/index.js +1 -0
- package/dist/modules/plugins/loader.js +70 -0
- package/dist/modules/plugins/manager.js +261 -0
- package/dist/modules/plugins/types.js +1 -0
- package/dist/modules/pricing/index.js +61 -0
- package/dist/modules/pricing/prices.js +129 -0
- package/dist/modules/processes/detect.js +34 -0
- package/dist/modules/processes/index.js +2 -0
- package/dist/modules/processes/registry.js +327 -0
- package/dist/modules/processes/runner.js +23 -0
- package/dist/modules/providers/create.js +22 -0
- package/dist/modules/providers/fallback.js +79 -0
- package/dist/modules/providers/health.js +46 -0
- package/dist/modules/providers/index.js +5 -0
- package/dist/modules/providers/manager.js +161 -0
- package/dist/modules/providers/presets.js +128 -0
- package/dist/modules/providers/registry.js +22 -0
- package/dist/modules/providers/types.js +1 -0
- package/dist/modules/registry.js +48 -0
- package/dist/modules/security/audit-log.js +136 -0
- package/dist/modules/security/audit-notifier.js +292 -0
- package/dist/modules/security/command-validator.js +219 -0
- package/dist/modules/security/content-scanner.js +53 -0
- package/dist/modules/security/data-sanitizer.js +89 -0
- package/dist/modules/security/encryption.js +242 -0
- package/dist/modules/security/index.js +14 -0
- package/dist/modules/security/network-validator.js +88 -0
- package/dist/modules/security/path-validator.js +203 -0
- package/dist/modules/security/rate-limiter.js +119 -0
- package/dist/modules/security/security-policies.js +531 -0
- package/dist/modules/security/session-encryption.js +210 -0
- package/dist/modules/security/session-isolation.js +95 -0
- package/dist/modules/session/index.js +3 -0
- package/dist/modules/session/manager.js +172 -0
- package/dist/modules/session/module.js +24 -0
- package/dist/modules/session/store.js +222 -0
- package/dist/modules/session/types.js +1 -0
- package/dist/modules/skills/index.js +2 -0
- package/dist/modules/skills/loader.js +72 -0
- package/dist/modules/skills/matcher.js +27 -0
- package/dist/modules/skills/module.js +129 -0
- package/dist/modules/types.js +1 -0
- package/dist/modules/updater/checker.js +96 -0
- package/dist/modules/updater/index.js +2 -0
- package/dist/modules/updater/module.js +116 -0
- package/dist/modules/user-profile/compressor.js +16 -0
- package/dist/modules/user-profile/index.js +1 -0
- package/dist/modules/user-profile/profile.js +68 -0
- package/dist/skills/builtin/git.md +36 -36
- package/dist/skills/builtin/typescript.md +35 -35
- package/dist/tools/approve.js +33 -0
- package/dist/tools/attach-image.js +101 -0
- package/dist/tools/bash.js +519 -0
- package/dist/tools/browser.js +115 -0
- package/dist/tools/chunk-query.js +100 -0
- package/dist/tools/create-dir.js +56 -0
- package/dist/tools/delete-file.js +63 -0
- package/dist/tools/download-file.js +117 -0
- package/dist/tools/edit-file.js +80 -0
- package/dist/tools/enable-tools.js +59 -0
- package/dist/tools/executor.js +154 -0
- package/dist/tools/file-info.js +47 -0
- package/dist/tools/filter-tools.js +17 -0
- package/dist/tools/glob-tool.js +27 -0
- package/dist/tools/grep-tool.js +125 -0
- package/dist/tools/hidden-tools-block.js +37 -0
- package/dist/tools/index.js +78 -0
- package/dist/tools/list-dir.js +49 -0
- package/dist/tools/load-skill.js +43 -0
- package/dist/tools/mcp-call.js +69 -0
- package/dist/tools/move-file.js +86 -0
- package/dist/tools/path-utils.js +101 -0
- package/dist/tools/pipeline-run.js +145 -0
- package/dist/tools/preview.js +2 -0
- package/dist/tools/process-kill.js +40 -0
- package/dist/tools/process-list.js +37 -0
- package/dist/tools/process-log.js +54 -0
- package/dist/tools/question.js +141 -0
- package/dist/tools/read-file.js +179 -0
- package/dist/tools/recall.js +118 -0
- package/dist/tools/registry.js +47 -0
- package/dist/tools/remember.js +68 -0
- package/dist/tools/scope-check.js +32 -0
- package/dist/tools/search-history.js +85 -0
- package/dist/tools/subagent.js +196 -0
- package/dist/tools/types.js +1 -0
- package/dist/tools/user-input.js +123 -0
- package/dist/tools/web-browse.js +87 -0
- package/dist/tools/web-fetch.js +119 -0
- package/dist/tools/web-search.js +105 -0
- package/dist/tools/write-file.js +82 -0
- package/dist/ui/box.js +77 -0
- package/dist/ui/colors.js +4 -0
- package/dist/ui/diff.js +178 -0
- package/dist/ui/index.js +6 -0
- package/dist/ui/line-editor.js +822 -0
- package/dist/ui/line-math.js +73 -0
- package/dist/ui/md-formatter.js +212 -0
- package/dist/ui/output.js +13 -0
- package/dist/ui/plan-view.js +103 -0
- package/dist/ui/renderer.js +259 -0
- package/dist/ui/spinner.js +70 -0
- package/dist/ui/table.js +144 -0
- package/package.json +51 -51
|
@@ -0,0 +1,447 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import { readdirSync, statSync } from "fs";
|
|
2
|
+
import { join } from "path";
|
|
3
|
+
export class SlashCommandProvider {
|
|
4
|
+
name = "slash-commands";
|
|
5
|
+
commands;
|
|
6
|
+
constructor(commands) {
|
|
7
|
+
this.commands = commands;
|
|
8
|
+
}
|
|
9
|
+
match(ctx) {
|
|
10
|
+
return ctx.tokenIndex === 0 && ctx.line.startsWith("/");
|
|
11
|
+
}
|
|
12
|
+
complete(ctx) {
|
|
13
|
+
return this.commands.filter((c) => c.startsWith(ctx.partial.slice(1))).map((c) => `/${c}`);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export class SubcommandProvider {
|
|
17
|
+
name = "subcommands";
|
|
18
|
+
command;
|
|
19
|
+
subcommands;
|
|
20
|
+
constructor(command, subcommands) {
|
|
21
|
+
this.command = command;
|
|
22
|
+
this.subcommands = subcommands;
|
|
23
|
+
}
|
|
24
|
+
match(ctx) {
|
|
25
|
+
return ctx.tokenIndex === 1 && ctx.tokens[0] === `/${this.command}`;
|
|
26
|
+
}
|
|
27
|
+
complete(ctx) {
|
|
28
|
+
return this.subcommands.filter((s) => s.startsWith(ctx.partial));
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
export class ModelArgProvider {
|
|
32
|
+
name = "model-args";
|
|
33
|
+
getModels;
|
|
34
|
+
constructor(getModels) {
|
|
35
|
+
this.getModels = getModels;
|
|
36
|
+
}
|
|
37
|
+
match(ctx) {
|
|
38
|
+
return ctx.tokenIndex === 2 && ctx.tokens[0] === "/model" && ctx.tokens[1] === "use";
|
|
39
|
+
}
|
|
40
|
+
complete(ctx) {
|
|
41
|
+
return this.getModels().filter((m) => m.startsWith(ctx.partial));
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
export class ConfigKeyProvider {
|
|
45
|
+
name = "config-keys";
|
|
46
|
+
keys;
|
|
47
|
+
constructor(keys) {
|
|
48
|
+
this.keys = keys;
|
|
49
|
+
}
|
|
50
|
+
match(ctx) {
|
|
51
|
+
return ctx.tokenIndex >= 1 && ctx.tokens[0] === "/config" && ctx.tokens[1] === "set";
|
|
52
|
+
}
|
|
53
|
+
complete(ctx) {
|
|
54
|
+
return this.keys.filter((k) => k.startsWith(ctx.partial));
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
export class FilePathProvider {
|
|
58
|
+
name = "file-paths";
|
|
59
|
+
match(ctx) {
|
|
60
|
+
return ctx.partial.includes("/") || ctx.partial.includes("\\");
|
|
61
|
+
}
|
|
62
|
+
complete(ctx) {
|
|
63
|
+
try {
|
|
64
|
+
const cwd = process.cwd();
|
|
65
|
+
const partialPath = ctx.partial;
|
|
66
|
+
const lastSlash = Math.max(partialPath.lastIndexOf("/"), partialPath.lastIndexOf("\\"));
|
|
67
|
+
const dirPath = lastSlash > 0 ? partialPath.slice(0, lastSlash) : ".";
|
|
68
|
+
const prefix = lastSlash > 0 ? partialPath.slice(0, lastSlash + 1) : "";
|
|
69
|
+
const fullPath = join(cwd, dirPath);
|
|
70
|
+
const entries = readdirSync(fullPath);
|
|
71
|
+
const matches = [];
|
|
72
|
+
for (const entry of entries) {
|
|
73
|
+
const entryPath = join(fullPath, entry);
|
|
74
|
+
const stat = statSync(entryPath);
|
|
75
|
+
const completion = prefix + entry + (stat.isDirectory() ? "/" : "");
|
|
76
|
+
if (completion.startsWith(ctx.partial)) {
|
|
77
|
+
matches.push(completion);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
return matches.slice(0, 20);
|
|
81
|
+
}
|
|
82
|
+
catch {
|
|
83
|
+
return [];
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
export class ProviderArgProvider {
|
|
88
|
+
name = "provider-args";
|
|
89
|
+
providers;
|
|
90
|
+
constructor(providers) {
|
|
91
|
+
this.providers = providers;
|
|
92
|
+
}
|
|
93
|
+
match(ctx) {
|
|
94
|
+
return ctx.tokenIndex === 2 && ctx.tokens[0] === "/provider" && ctx.tokens[1] === "use";
|
|
95
|
+
}
|
|
96
|
+
complete(ctx) {
|
|
97
|
+
return this.providers.filter((p) => p.startsWith(ctx.partial));
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
export class SessionNameProvider {
|
|
101
|
+
name = "session-names";
|
|
102
|
+
getNames;
|
|
103
|
+
constructor(getNames) {
|
|
104
|
+
this.getNames = getNames;
|
|
105
|
+
}
|
|
106
|
+
match(ctx) {
|
|
107
|
+
return ctx.tokenIndex >= 1 && ctx.tokens[0] === "/resume";
|
|
108
|
+
}
|
|
109
|
+
complete(ctx) {
|
|
110
|
+
const names = this.getNames();
|
|
111
|
+
if (!ctx.partial)
|
|
112
|
+
return names;
|
|
113
|
+
return names.filter((n) => n.toLowerCase().includes(ctx.partial.toLowerCase()));
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
export class SkillNameProvider {
|
|
117
|
+
name = "skill-names";
|
|
118
|
+
skillsModule;
|
|
119
|
+
constructor(skillsModule) {
|
|
120
|
+
this.skillsModule = skillsModule;
|
|
121
|
+
}
|
|
122
|
+
match(ctx) {
|
|
123
|
+
return (ctx.tokenIndex >= 2 &&
|
|
124
|
+
ctx.tokens[0] === "/skill" &&
|
|
125
|
+
(ctx.tokens[1] === "load" || ctx.tokens[1] === "unload"));
|
|
126
|
+
}
|
|
127
|
+
complete(ctx) {
|
|
128
|
+
const subcmd = ctx.tokens[1];
|
|
129
|
+
if (subcmd === "load") {
|
|
130
|
+
const available = this.skillsModule.getAvailable();
|
|
131
|
+
const names = available.map((s) => s.name);
|
|
132
|
+
if (!ctx.partial)
|
|
133
|
+
return names;
|
|
134
|
+
return names.filter((n) => n.toLowerCase().includes(ctx.partial.toLowerCase()));
|
|
135
|
+
}
|
|
136
|
+
if (subcmd === "unload") {
|
|
137
|
+
const loaded = this.skillsModule.getLoaded();
|
|
138
|
+
const names = loaded.map((s) => s.name);
|
|
139
|
+
if (!ctx.partial)
|
|
140
|
+
return names;
|
|
141
|
+
return names.filter((n) => n.toLowerCase().includes(ctx.partial.toLowerCase()));
|
|
142
|
+
}
|
|
143
|
+
return [];
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
export class Completer {
|
|
147
|
+
providers = [];
|
|
148
|
+
registerProvider(provider) {
|
|
149
|
+
this.providers.push(provider);
|
|
150
|
+
}
|
|
151
|
+
complete(line) {
|
|
152
|
+
const cursor = line.length;
|
|
153
|
+
const tokens = line.split(/\s+/);
|
|
154
|
+
const partial = tokens[tokens.length - 1] || "";
|
|
155
|
+
const tokenIndex = tokens.length - 1;
|
|
156
|
+
const ctx = { line, cursor, tokens, partial, tokenIndex };
|
|
157
|
+
for (const provider of this.providers) {
|
|
158
|
+
if (provider.match(ctx)) {
|
|
159
|
+
const results = provider.complete(ctx);
|
|
160
|
+
if (results.length > 0) {
|
|
161
|
+
return [results, partial];
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
return [[], partial];
|
|
166
|
+
}
|
|
167
|
+
}
|