Skip to content

Quick Start

This guide walks you through getting Pinchy up and running — from cloning the repo to chatting with your first AI agent.

Terminal window
git clone https://github.com/heypinchy/pinchy.git
cd pinchy
Terminal window
docker compose up --build

This starts three services:

  • Pinchy — the web app on port 7777
  • OpenClaw — the AI agent runtime (internal, not exposed)
  • PostgreSQL — the database

Wait until you see Pinchy ready on http://localhost:7777 in the logs.

Open http://localhost:7777 in your browser. The setup wizard appears automatically on first run.

Enter your name, email, and password. This creates the first admin user.

After creating your account, Pinchy redirects you to the provider setup page. Choose your LLM provider and enter your API key:

ProviderWhere to get a key
Anthropicconsole.anthropic.com
OpenAIplatform.openai.com
Googleaistudio.google.com

Your API key is encrypted at rest using AES-256-GCM before being stored in the database.

Once your provider is configured, Pinchy redirects you to the chat interface. Your default agent — Smithers — greets you automatically.

Type a message and hit Enter. Smithers responds in real time via WebSocket.

  • Installation — Learn about environment variables, Docker volumes, and development setup
  • Architecture — Understand how Pinchy wraps OpenClaw and the request flow