Back to Blog
getting-startedquickstarttutorialinstallation

Getting Started with Crewly in 60 Seconds

Go from zero to a running AI agent team in under a minute. Four commands, a web dashboard, and your first multi-agent development team.

C
Crewly Team
··4 min read
Share

Getting Started with Crewly in 60 Seconds

You don't need a long tutorial to start using Crewly. Here's the fastest path from zero to a running AI agent team.

The 30-Second Version

bash
npm install -g crewly
npx crewly start

That's it. Crewly installs, launches the backend, and opens the web dashboard in your browser at http://localhost:3000. From the dashboard, create a team and start your agents.

The 60-Second Version

1. Install Crewly

bash
npm install -g crewly

Requires Node.js v20 or later. Check with node --version.

2. Install an AI coding CLI

You need at least one AI coding agent installed. Pick one (or all):

# Claude Code (Anthropic)
npm install -g @anthropic-ai/claude-code

# Gemini CLI (Google) — requires GEMINI_API_KEY
npm install -g @anthropic-ai/gemini-cli

# OpenAI Codex
npm install -g @openai/codex

3. Start Crewly

bash
npx crewly start

The web dashboard opens automatically. You'll see an empty state — no teams yet.

4. Create your first team

From the dashboard:

  1. Create a Project — Point it to your codebase directory
  2. Create a Team — Add 2-3 agents with roles like backend-developer, frontend-developer, qa-engineer
  3. Start the Team — Watch agents go from inactive to active

That's your AI development team, running and ready for tasks.

What You'll See

Once your team starts, the dashboard shows:

  • Agent status cards — Who's active, who's idle, who's working
  • Live terminal streams — Click any agent to see their terminal output in real time
  • Task tracking — Delegate work and monitor progress
  • Chat interface — Talk to the orchestrator in natural language

Delegate Your First Task

Open the Chat page and type a request:

Build a REST API with user authentication. The backend dev should
handle the Express routes and the QA engineer should write tests.

The orchestrator breaks the task down and delegates to each agent automatically. Watch them work in the terminal panels.

Quick Reference

bash
# Start with default settings
npx crewly start

# Start without opening browser
npx crewly start --no-browser

# Start on a custom port
npx crewly start --port 3001

What's Next

Now that you're up and running:

Crewly is an open-source AI agent orchestration platform that launches multiple coding CLI agents — Claude Code, Gemini CLI, or Codex — as a coordinated team with a real-time web dashboard. Install with npm install -g crewly, start with npx crewly start, and have a working AI development team in under 60 seconds.


Crewly is open source under the MIT license. Star the project on GitHub and start building.

Ready to orchestrate your AI team?

Get started with Crewly in under a minute. Run multiple Claude Code, Gemini CLI, or Codex agents as a coordinated team.

npx crewly startRead the docs →

Related Articles