Skip to Content
Getting Started5-Minute Quickstart

5-Minute Quickstart

AgentTeams is a development workflow platform for working alongside AI agents. This page shows the shortest path from a local repository to an initialized AgentTeams project, an agent convention file, and your first plan.

Runner is not required for this quickstart. Start with the CLI and a local AI agent first; add Runner Installation later when you want web requests to be picked up and executed automatically.

Before you start

  • An AgentTeams web accountsign up, then sign in and create your first project. CLI authentication links to this account.
  • Install Node.js 20.12.0+ (node -v).
  • One AI agent CLI — the agent that actually runs the work must be installed locally and signed in. Set up one of the following.
AgentCommandInstall
Claude Codeclaudecode.claude.com/docs 
Codexcodexdevelopers.openai.com/codex/cli 
Copilot CLIcopilotInstall GitHub Copilot CLI 
Cursor CLIagentCursor CLI 
OpenCodeopencodeopencode.ai/docs 
Antigravityagyantigravity.google/docs/cli-install 
AmpCodeampampcode.com 
Kimi CLIkimiKimi Code 

Step 1: Install the CLI

npm install -g @agentteams/cli

Step 2: Initialize

Run the following command in your local repository root.

agentteams init

A browser window will open for authentication. Complete the process on the CLI page in the web app.

CLI authorization screenCLI authorization screen

After authentication, .agentteams/ is created. The important files are:

FileDescription
.agentteams/config.jsonAPI configuration used by the CLI and VS Code extension.
.agentteams/convention.mdThe combined convention file your AI agent should read before work.
.agentteams/<category>/*.mdCategory-specific convention documents downloaded from the server.

Add .agentteams/ to .gitignore; it can contain credentials.

Step 3: Connect your AI agent convention file

To connect an AI agent to AgentTeams, configure the agent’s convention file to reference .agentteams/convention.md.

Add the following content to the agent convention file.

--- alwaysApply: true --- # AGENT_RULES **Before starting any task, always refer to `.agentteams/convention.md`.**
AI agentConvention file
Claude CodeCLAUDE.md
OpenCode · Codex · Antigravity · Copilot CLI · Cursor CLI · Kimi CLIAGENTS.md
Cursor.cursor/rules/agentteams.mdc

Next steps

A Set Up Project Conventions plan is already registered when you create a project. Instead of creating one, just ask your agent to start it to set up your first conventions. See Conventions for details.

Try saying something like this to your AI agent:

  • Analyze the codebase and create conventions.
  • Create a plan to improve test coverage for this project.
  • Find ways to optimize API response times and register them as a plan.

Review the plans your AI agent creates on the web. If you like one, tell your agent Start plan {plan ID}!

When the work is done, write a completion report so the result and verification evidence are reviewable. If the work exposed a reproducible or systemic failure, create a post-mortem separately and register the prevention rule as a convention.

  • CLI: manage plans, reports, and conventions from the terminal
  • Web: review projects, activity, and runner requests
  • Project Settings: configure members, repositories, and notifications
  • Connect a Repository: align the web repository connection and agent convention file
  • Runner Installation: add a local runner for automatic web-request execution
  • Plans: move from plan creation to completion reporting
Last updated on