Arcen Agent v1.0.0
⌘K
⌘K

Commands

This page lists common commands for day-to-day use. The source of truth for slash command definitions is arcen_cli/commands.py.

CLI commands

CommandPurpose
arcenStart an interactive CLI session.
arcen --tuiStart the Ink terminal UI.
arcen setupRun setup wizard.
arcen modelSelect provider and model.
arcen toolsConfigure tools and toolsets.
arcen gatewayConfigure and run messaging gateway.
arcen logsBrowse logs.
arcen doctorDiagnose setup issues.
arcen updateUpdate Arcen.

Shared slash commands

CommandPurpose
/new, /resetStart fresh conversation.
/model [provider:model]Change active model.
/personality [name]Set personality.
/retryRetry last turn.
/undoUndo last turn.
/compressCompress context.
/usageShow usage details.
/skillsBrowse available skills.
/stopStop active gateway work where supported.

Adding a slash command

  1. Add a CommandDef in arcen_cli/commands.py.
  2. Add a handler in ArcenCLI.process_command() in cli.py.
  3. Add gateway handling in gateway/run.py if the command should work in messaging platforms.