Skip to content

Project introduction

Droid CLI is a command-line AI software engineering agent from Factory AI. It is designed for building, debugging, refactoring, and automating multi-step development workflows.

Demo

droid.webp

Features

CategoryHighlights
Fast onboardingQuick installation and terminal-first workflow
End-to-end developmentSupports planning, implementation, and testing
Codebase understandingUses repository and documentation context
Tool integrationIntegrates with tools such as Jira, Notion, and Slack
Production readinessWorks locally and in CI/CD
Model flexibilityNot locked to a single model provider

Model setup

Windows guide

1. Open a terminal

windows_open_terminal

2. Install Factory Droid CLI

powershell
irm https://app.factory.ai/cli/windows | iex

windows-install

3. Configure it for a third-party API

windows-configure.webp

Run:

powershell
iex (irm 'https://raw.githubusercontent.com/QuantumNous/new-api-docs/refs/heads/main/helper/factory-cli-setup.ps1')

4. Start using Droid CLI

bash
droid

Or in a project:

bash
cd C:\path\to\your\project
droid

Droid CLI requires login with a free Factory account before use.

5. Common Windows issues

Permission denied during installation

Try running PowerShell as administrator, or configure npm to use a user directory.

PowerShell execution policy error

Run:
powershell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

macOS and Linux guide

1. Install Droid CLI

bash
curl -fsSL https://app.factory.ai/cli | sh

macos-open-terminalmacos-img-02.webp

Follow the installation prompt to add the binary path to your shell profile.

Example:

bash
echo 'export PATH=/Users/replace_here/.local/bin:$PATH' >> ~/.zshrc
source ~/.zshrc

2. Configure it for a third-party API

bash
curl -fsSL https://raw.githubusercontent.com/QuantumNous/new-api-docs/refs/heads/main/helper/factory-cli-setup.sh | bash

macos-img-03.webp

3. Start using Droid CLI

bash
droid

Or in a project:

bash
cd /path/to/your/project
droid

Droid CLI requires login with a free Factory account before use.