You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Top-level commands filled dynamically by the server.",
124
-
"items": []
153
+
"items": [
154
+
{ "id": "agent", "description": "Manage the AI agent subsystem. It needs a subcommand, for example /cli agent status." },
155
+
{ "id": "app", "description": "Manage application dependency declarations. It needs a subcommand, for example /cli app list; to register an app use /cli app register --name demo --needs '[]'." },
156
+
{ "id": "ask", "description": "Ask the AI agent a question. You need to add the question text, for example /cli ask What model fits this machine?" },
157
+
{ "id": "askforhelp", "description": "Connect to the support service. You can write the help request directly, for example /cli askforhelp Model deployment failed." },
158
+
{ "id": "benchmark", "description": "Record and query benchmark results. It needs a subcommand, for example /cli benchmark list." },
159
+
{ "id": "catalog", "description": "Manage the YAML knowledge catalog. It needs a subcommand, for example /cli catalog status or /cli catalog validate." },
160
+
{ "id": "completion", "description": "Generate shell autocompletion. You need to add the shell name, for example /cli completion zsh." },
161
+
{ "id": "config", "description": "Get or set persistent configuration. It needs a subcommand, for example /cli config get agent.endpoint or /cli config set agent.model {sample_model}." },
162
+
{ "id": "deploy", "description": "Deploy an inference service. It usually needs a model name, for example /cli deploy {sample_model} --dry-run; to inspect deployments use /cli deploy list." },
163
+
{ "id": "discover", "description": "Discover LLM inference services on the local network. You can run it directly, for example /cli discover." },
164
+
{ "id": "engine", "description": "Manage inference engines. It needs a subcommand, for example /cli engine list or /cli engine pull." },
165
+
{ "id": "explore", "description": "Run persistent exploration jobs. It needs a subcommand, for example /cli explore start --model {sample_model} or /cli explore status --id <run-id>." },
166
+
{ "id": "fleet", "description": "Manage AIMA devices on the LAN. It needs a subcommand, for example /cli fleet devices or /cli fleet info <device-id>." },
167
+
{ "id": "hal", "description": "Inspect hardware capabilities and metrics. It needs a subcommand, for example /cli hal detect or /cli hal metrics." },
168
+
{ "id": "help", "description": "View help for any command. You can run it directly, for example /cli help; for model help use /cli help model." },
169
+
{ "id": "init", "description": "Install the infrastructure stack. You can run it directly, for example /cli init; for the full install use /cli init --k3s." },
170
+
{ "id": "knowledge", "description": "Manage the knowledge base. It needs a subcommand, for example /cli knowledge list or /cli knowledge resolve {sample_model}." },
171
+
{ "id": "mcp", "description": "Serve MCP over stdio. You can run it directly, for example /cli mcp." },
172
+
{ "id": "model", "description": "Manage models. It needs a subcommand, for example /cli model list or /cli model pull {sample_model}." },
173
+
{ "id": "openclaw", "description": "Manage the OpenClaw integration. It needs a subcommand, for example /cli openclaw status or /cli openclaw sync." },
174
+
{ "id": "run", "description": "Download, deploy, and serve a model. You need to add a model name, for example /cli run {sample_model}." },
175
+
{ "id": "scenario", "description": "Manage deployment scenarios. It needs a subcommand, for example /cli scenario list or /cli scenario apply <scenario-name>." },
176
+
{ "id": "serve", "description": "Start the AIMA server. You can run it directly, for example /cli serve." },
177
+
{ "id": "status", "description": "Show system status. You can run it directly, for example /cli status." },
178
+
{ "id": "tui", "description": "Open the terminal dashboard. You can run it directly, for example /cli tui." },
179
+
{ "id": "tuning", "description": "Auto-tune model parameters. It needs a subcommand, for example /cli tuning start --model {sample_model} or /cli tuning results." },
180
+
{ "id": "undeploy", "description": "Remove a deployed inference service. You need to add the deployment name, for example /cli undeploy <deployment-name>." },
181
+
{ "id": "version", "description": "Show version and build information. You can run it directly, for example /cli version." }
t.Fatalf("zh /cli help description = %q, want %q", zhHelp, want)
235
277
}
236
-
ifenHelp!="View help for any command. You can run it directly, for example /cli help; for model help use /cli help model." {
237
-
t.Fatalf("en /cli help description = %q, want %q", enHelp, "View help for any command. You can run it directly, for example /cli help; for model help use /cli help model.")
0 commit comments