CommandsService
city service list
List the static global service catalog
city service list
List all registered services from the console-level catalog.
Usage
city service list [--json]Output
name: service idscope: current scope, nowagentsupportsLifecycle: whether the service exposes lifecycle controlsupportsCommand: whether the service exposes actions or custom commandsactions: statically registered action names
Related commands
Example Output (Based on Current Implementation)
The examples below are aligned with current command implementations in packages/downcity/src (including default output mode and field structure). Placeholder values are used for environment-specific fields.
$ city service list --json
{
"success": true,
"count": 4,
"services": [
{
"name": "chat",
"scope": "agent",
"supportsLifecycle": true,
"supportsCommand": true,
"actions": ["close", "configuration", "configure", "context", "delete", "history", "info", "list", "open", "react", "reconnect", "send", "status", "test"]
}
]
}