Skip to Content
Getting Started

Getting Started

Get up and running with AgentLoop in minutes. This guide covers installation and your first steps with the interactive mode.

Requirements

  • Node.js >= 22.0.0
  • npm or yarn
  • Podman (optional, for container sandboxing)

Installation

Install AgentLoop globally:

npm install -g @trygentic/agentloop

After installation, you can run:

agentloop

Quick Start

Start Interactive Mode

Launch AgentLoop in interactive mode:

agentloop

This opens the interactive TUI where you can communicate with agents using natural language.

Initialize Your Project

In the interactive terminal, initialize AgentLoop for your project:

> /init

This detects your project type and sets up the AgentLoop configuration.

Start Conversing

Simply type your request in natural language—no special syntax required:

> Break down "user authentication" into tasks and add them to the board

AgentLoop will use the Product Manager agent to analyze your request and create tasks on the kanban board.

View Your Tasks

Open the interactive kanban board to see your tasks:

> /orchestrator kanban

Run the Orchestrator

Start processing tasks:

> /orchestrator run

Running Modes

AgentLoop supports three primary running modes:

Interactive Mode is the primary way to use AgentLoop. It provides a full TUI experience with conversational interaction.

agentloop

In this mode:

  • Chat naturally with agents
  • Use slash commands for system operations
  • View the kanban board
  • Monitor agent progress in real-time

See Interactive Mode for a complete guide.

Authentication & Model Selection

When you first run AgentLoop, you’ll go through a two-step setup process.

Step 1: Sign In

AgentLoop requires an active subscription. On first launch:

  1. Select “Sign in via Web Browser”
  2. Your browser opens to the AgentLoop authentication page
  3. Log in with your account credentials
  4. Return to the terminal — authentication completes automatically

Step 2: Choose Your Model

After signing in, select your AI model. You can start using AgentLoop immediately—no separate LLM provider subscription required.

TierModelsDescription
Free ModelsOpenCode ZenStart immediately — no additional cost
AgentLoop SubscriptionGLM 4.7Premium model included with your subscription
Your Own API KeysClaude, GPT-4o, Gemini, etc.Connect providers you already have access to

Connecting Anthropic (Claude Models)

To use Claude models with your Anthropic Pro/Max subscription:

  1. Select “Connect your own API key” from the model selection
  2. Choose Anthropic as the provider
  3. Select “Claude Code CLI (recommended)”
  4. If not already installed, run:
    npm install -g @anthropic-ai/claude-code
  5. Authenticate with Claude:
    claude
  6. Follow the prompts to log in with your Anthropic account

Important: After completing Claude CLI authentication, restart AgentLoop:

agentloop

Your Claude models will then appear in the “Available Models” section.

Which Model Should I Choose?

  • New users: Start with a Free Model to explore AgentLoop without any additional setup
  • Subscribers: Use GLM 4.7 for a premium experience included with your subscription
  • Claude users: Claude Sonnet 4.5 is recommended for most tasks — it’s fast and capable. Use Claude Opus 4.5 for complex reasoning tasks where quality matters more than speed.
  • Power users: Connect multiple providers (OpenAI, Google, OpenRouter) for flexibility

Auth Commands

# Check authentication status agentloop auth status # Log out agentloop auth logout # Switch LLM provider or account agentloop auth switch

Configuration

AgentLoop stores configuration in TOML files:

LocationPurpose
./.agentloop/config.tomlProject-level config
~/.config/agentloop/User-level config, database, and credentials

See Configuration for the complete reference.

Next Steps

Need help? Join our Discord community  for support and discussions.

Last updated on