Skip to Content
Commands Reference

Commands Reference

Complete reference of all AgentLoop commands. Commands are organized by category and include both interactive slash commands and CLI commands.

CLI Commands

Commands available from the terminal:

# Start interactive session agentloop # Run orchestrator directly agentloop orchestrator # Single query mode agentloop query "Your question here" # Authentication management agentloop auth status agentloop auth logout agentloop auth switch # Configuration agentloop config

Interactive Slash Commands

The following commands are available in interactive mode. Type them in the TUI prompt.

Core Commands

CommandDescription
/helpShow all available commands
/exitExit interactive mode
/clearClear conversation history
/initDetect project type and initialize AgentLoop

Orchestrator Commands

CommandDescription
/orchestrator runRun the orchestrator (processes tasks until complete)
/orchestrator run --infiniteRun continuously, watching for new tasks
/orchestrator generate <description>Generate AGILE tasks from a project description
/orchestrator statusShow current orchestrator status
/orchestrator agentsLive agent monitoring with real-time status
/orchestrator kanbanOpen interactive kanban board
/orchestrator stopStop the running orchestrator
/orchestrator clearClear all tasks for the current project
/orchestrator logs <task-id>Show agent execution logs for a task

DAG Commands

CommandDescription
/orchestrator dagShow DAG status with statistics
/orchestrator dag asciiASCII visualization of task dependencies
/orchestrator dag dotExport DAG in DOT format (for Graphviz)

Task Commands

CommandDescription
/tasksList all tasks in the current project
/tasks --status <status>Filter by status (todo, in-progress, review, done, blocked)
/tasks --priority <priority>Filter by priority (low, medium, high, critical)
/task add <title> <description>Add a new task

Configuration Commands

CommandDescription
/config showShow current configuration
/config set-token <token>Set authentication token
/config set-base-url <url>Set API base URL
/config clearClear configuration
/settings showShow current settings
/settings telemetry [on|off]Enable or disable telemetry

Daemon Commands

CommandDescription
/daemon startStart the background daemon service
/daemon stopStop the running daemon
/daemon restartRestart the daemon (useful after configuration changes)
/daemon statusCheck if daemon is running and view connection info

Worktree Commands

CommandDescription
/worktreesOpen interactive worktree management view
/worktrees listList all active worktrees
/worktrees statusShow worktree status summary
/worktrees helpDisplay worktree usage guide

Sandbox Commands

CommandDescription
/setup podmanInteractive Podman installation and configuration
/setup podman statusCheck Podman installation and container status
/setup podman helpDisplay sandboxing configuration guide
/orchestrator sandboxManage sandbox settings for agent execution

Jira Integration

CommandDescription
/jira syncBidirectional sync with Jira
/jira sync-dagAI-powered sync with dependency analysis
/jira configure siteUrl <url>Set Jira site URL
/jira configure projectKey <key>Set Jira project key
/jira configure boardId <id>Set Jira board ID
/jira set-auth <email> <token>Set Basic Auth credentials
/jira set-oauth <id> <secret>Set OAuth credentials
/jira authorizePerform OAuth authorization
/jira statusShow Jira integration status

Mock & Testing

CommandDescription
/mockOpen mock configuration view
/mock statusShow mock configuration status
/mock enableEnable mock mode
/mock disableDisable mock mode

Preview Features (Alpha)

These features are in active development and may change significantly.

CommandDescription
/planningStart interactive PM agent planning session
/questionnaireOpen questionnaire DAG view
/btOpen behavior tree debug view

Command Categories by Use Case

Getting Started

/init # Initialize project /help # See all commands /config show # View configuration

Task Management

/tasks # List all tasks /tasks --status todo # Filter by status /orchestrator kanban # Visual board /task add "Title" "Desc" # Add task

Running the Orchestrator

/orchestrator run # Run until complete /orchestrator run --infinite # Run continuously /orchestrator stop # Stop execution /orchestrator status # Check status

Monitoring

/orchestrator agents # View active agents /orchestrator logs 5 # Task logs /orchestrator dag ascii # Dependency graph

Jira Integration

/jira status # Check connection /jira sync # Sync tasks /jira sync-dag # Sync with DAG analysis

Background Execution

/daemon start # Start daemon /daemon status # Check daemon /daemon stop # Stop daemon

Natural Language Alternatives

Many slash commands have natural language equivalents. The AI will interpret your intent:

Slash CommandNatural Language Alternative
/orchestrator kanban”Show me the kanban board”
/tasks --status in-progress”What tasks are in progress?”
/orchestrator run”Start processing tasks”
/orchestrator status”What’s the current status?”

See Commands vs Slash Commands for guidance on when to use each approach.

Exit Codes

When running in headless mode:

CodeMeaning
0Success
1General error
2Configuration error
3Authentication error
Last updated on