CommandsService
city service start
Advanced command to start a service for a specific agent target
city service start
Start a service for a specific agent target.
Prefer concrete roots like city memory start or city task start for day-to-day use.
Usage
city service start <serviceName> [--agent <name> | --path <path>] [--host <host>] [--port <port>]Example
city service start task --agent my-agent
city memory start --path /abs/path/to/agentRelated 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 start task
{
"success": true,
"service": "task"
}$ city service start task --agent missing-agent
{
"success": false,
"error": "Agent not found in console registry: missing-agent. Run \"city agent list\" to inspect names."
}