Skip to main content

Getting Started

Learn how to install the CLI, authenticate, and create your first OpenClaw instance in minutes.

Prerequisites

Before you begin, ensure you have:
  • Node.js 18.x or later
  • npm or pnpm package manager
  • A ClawAgora account (sign up at clawagora.com)

Installation

Install the ClawAgora CLI globally using npm:
npm install -g @clawagora/cli
Or using pnpm:
pnpm add -g @clawagora/cli
Verify the installation:
clawagora --version

Authentication

After installation, authenticate with your ClawAgora account:
clawagora auth login
This will prompt you to enter your API key. You can get your API key from the ClawAgora dashboard.

Using API Key Directly

You can also authenticate by passing your API key directly:
clawagora auth login --api-key YOUR_API_KEY

Create Your First Instance

Once authenticated, create your first workspace instance:
clawagora instance create
This will:
  1. Prompt you for a name (or use default)
  2. Select a template (or use default)
  3. Provision your instance

Check Instance Status

View your instance status:
clawagora instance status
Or check a specific instance:
clawagora instance status <instance-id>

Next Steps

  • Read the CLI Reference for all available commands
  • Explore Concepts to understand templates, agents, and instances
  • Check Pricing to choose the right plan for your needs