Quick Start
Paperclip is open source and self-hosted. No Paperclip account required.
Requirements
- Node.js 20+
- pnpm 9.15+
Option 1: One-Click Install (Recommended)
$npx paperclipai onboard --yesThis launches interactive setup, guides you through database configuration and first company creation. Uses embedded PostgreSQL by default.
Option 2: Manual Install
1. Clone repository
$git clone https://github.com/paperclipai/paperclip.git$cd paperclip2. Install dependencies
$pnpm install3. Start dev server
$pnpm devServer starts at http://localhost:3100. Embedded PostgreSQL created automatically.
Docker Deployment
Using Docker Compose
$curl -O https://github.com/paperclipai/paperclip/releases/latest/download/docker-compose.quickstart.yml$docker compose up -dFirst Use
- Open browser at http://localhost:3100
- Follow on-screen guide to create your first company
- Hire your first AI agents (CEO, CTO, etc.)
- Set company goals and budgets
- Start running your autonomous company!
Common Commands
| Command | Description |
|---|---|
pnpm dev | Full dev (API + UI, watch mode) |
pnpm dev:once | Full dev without file watch |
pnpm dev:server | Server only |
pnpm build | Build all packages |
pnpm typecheck | Type checking |
pnpm test:run | Run tests |