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 configInteractive Slash Commands
The following commands are available in interactive mode. Type them in the TUI prompt.
Core Commands
| Command | Description |
|---|---|
/help | Show all available commands |
/exit | Exit interactive mode |
/clear | Clear conversation history |
/init | Detect project type and initialize AgentLoop |
Orchestrator Commands
| Command | Description |
|---|---|
/orchestrator run | Run the orchestrator (processes tasks until complete) |
/orchestrator run --infinite | Run continuously, watching for new tasks |
/orchestrator generate <description> | Generate AGILE tasks from a project description |
/orchestrator status | Show current orchestrator status |
/orchestrator agents | Live agent monitoring with real-time status |
/orchestrator kanban | Open interactive kanban board |
/orchestrator stop | Stop the running orchestrator |
/orchestrator clear | Clear all tasks for the current project |
/orchestrator logs <task-id> | Show agent execution logs for a task |
DAG Commands
| Command | Description |
|---|---|
/orchestrator dag | Show DAG status with statistics |
/orchestrator dag ascii | ASCII visualization of task dependencies |
/orchestrator dag dot | Export DAG in DOT format (for Graphviz) |
Task Commands
| Command | Description |
|---|---|
/tasks | List 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
| Command | Description |
|---|---|
/config show | Show current configuration |
/config set-token <token> | Set authentication token |
/config set-base-url <url> | Set API base URL |
/config clear | Clear configuration |
/settings show | Show current settings |
/settings telemetry [on|off] | Enable or disable telemetry |
Daemon Commands
| Command | Description |
|---|---|
/daemon start | Start the background daemon service |
/daemon stop | Stop the running daemon |
/daemon restart | Restart the daemon (useful after configuration changes) |
/daemon status | Check if daemon is running and view connection info |
Worktree Commands
| Command | Description |
|---|---|
/worktrees | Open interactive worktree management view |
/worktrees list | List all active worktrees |
/worktrees status | Show worktree status summary |
/worktrees help | Display worktree usage guide |
Sandbox Commands
| Command | Description |
|---|---|
/setup podman | Interactive Podman installation and configuration |
/setup podman status | Check Podman installation and container status |
/setup podman help | Display sandboxing configuration guide |
/orchestrator sandbox | Manage sandbox settings for agent execution |
Jira Integration
| Command | Description |
|---|---|
/jira sync | Bidirectional sync with Jira |
/jira sync-dag | AI-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 authorize | Perform OAuth authorization |
/jira status | Show Jira integration status |
Mock & Testing
| Command | Description |
|---|---|
/mock | Open mock configuration view |
/mock status | Show mock configuration status |
/mock enable | Enable mock mode |
/mock disable | Disable mock mode |
Preview Features (Alpha)
These features are in active development and may change significantly.
| Command | Description |
|---|---|
/planning | Start interactive PM agent planning session |
/questionnaire | Open questionnaire DAG view |
/bt | Open behavior tree debug view |
Command Categories by Use Case
Getting Started
/init # Initialize project
/help # See all commands
/config show # View configurationTask Management
/tasks # List all tasks
/tasks --status todo # Filter by status
/orchestrator kanban # Visual board
/task add "Title" "Desc" # Add taskRunning the Orchestrator
/orchestrator run # Run until complete
/orchestrator run --infinite # Run continuously
/orchestrator stop # Stop execution
/orchestrator status # Check statusMonitoring
/orchestrator agents # View active agents
/orchestrator logs 5 # Task logs
/orchestrator dag ascii # Dependency graphJira Integration
/jira status # Check connection
/jira sync # Sync tasks
/jira sync-dag # Sync with DAG analysisBackground Execution
/daemon start # Start daemon
/daemon status # Check daemon
/daemon stop # Stop daemonNatural Language Alternatives
Many slash commands have natural language equivalents. The AI will interpret your intent:
| Slash Command | Natural 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:
| Code | Meaning |
|---|---|
0 | Success |
1 | General error |
2 | Configuration error |
3 | Authentication error |
Last updated on