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
feat: swap default UI mode to plain text (agent-first)
Most CLI users are agents/CI, not humans. Invert the default so plain
text output is the default and interactive Ink UI requires opting in
with --human-friendly. Keep --no-ui for backwards compatibility (no-op).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
{name: 'add [name]',description: 'Create a new agent and push to remote',options: ['--output-path <path> Custom output path for config file','--from-file <path> Create agent from existing config file','--template <template> Template type to use (default, minimal, voice-only, text-only, customer-service, assistant)']},
25
+
{name: 'list',description: 'List all local agents'},
26
+
{name: 'delete [agent_id]',description: 'Delete agent',options: ['--all Delete all agents']},
27
+
{name: 'status',description: 'Show the status of agents'},
28
+
{name: 'push',description: 'Push agents to ElevenLabs',options: ['--branch <branch> Push to a specific branch']},
29
+
{name: 'pull',description: 'Pull agents from ElevenLabs',options: ['--branch <branch> Pull from a specific branch','--all-branches Pull all branches for each agent','--update Update existing agents','--all Pull all agents']},
30
+
{name: 'branches list',description: 'List branches for an agent',options: ['--agent <agent_id> Agent ID (required)','--include-archived Include archived branches']},
31
+
{name: 'test <agent>',description: 'Run tests for an agent'},
32
+
{name: 'templates [action]',description: 'Manage agent templates',options: ['list List available templates','show <name> Show template details']},
33
+
{name: 'widget <name>',description: 'Generate HTML widget snippet'},
0 commit comments