OpenClaw quickstart
Get Started with OpenClaw
This page follows the official OpenClaw getting started flow and gives you a practical setup path: install the CLI, initialize a workspace, wire environment variables, and run your first real task.
Prerequisites
Before running OpenClaw commands, verify your local environment and provider access.
- Node.js 22+ installed
- npm, pnpm, or Corepack available
- Terminal access in your project directory
- API keys for providers used by your skills
Install and initialize
1. Install the OpenClaw CLI
Install the CLI globally so commands are available in your shell.
npm install -g openclaw2. Create your first workspace
Initialize a project folder for your first agent and baseline configuration.
openclaw init my-agent3. Verify the install
Check version and run diagnostics before using external providers.
openclaw --version openclaw doctor4. Configure environment variables
Add required API keys and secrets before running provider-backed skills.
cp .env.example .env
Run your first task
Start with a narrow outcome so you can validate output quality and permissions before adding more skills.
openclaw run "summarize weekly product metrics"Review the result, refine your prompt, and iterate until the run is deterministic enough for your use case.
Skill structure
Keep each skill in a consistent folder with clear usage docs and expected inputs/outputs.
skills/
analytics-summary/
SKILL.md
assets/
templates/Use submit when you are ready to publish a reusable skill to the directory.
Recommended skills to explore
Use these lists to quickly find high-signal examples while learning OpenClaw conventions.
Trending skills
- agent-config
Coding Agents & IDEs
- agent-council
Coding Agents & IDEs
- agent-identity-kit
Coding Agents & IDEs
- agenticflow-skill
Coding Agents & IDEs
Beginner-friendly skills
- docker-essentials
Coding Agents & IDEs
- codeconductor
Coding Agents & IDEs
- ec-task-orchestrator
Coding Agents & IDEs
- codex-orchestration
Coding Agents & IDEs
Most documented skills
- codeconductor
Coding Agents & IDEs
- docker-essentials
Coding Agents & IDEs
- ec-task-orchestrator
Coding Agents & IDEs
- codex-orchestration
Coding Agents & IDEs
Frequently asked questions
Next steps
Continue with real examples, then publish internal standards for how your team writes and reviews skills.