Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ruoli.dev/llms.txt

Use this file to discover all available pages before exploring further.

OpenClaw is an open-source personal AI assistant that supports 24+ messaging platforms including WhatsApp, Telegram, Slack, and Discord.

Installation

npm install -g openclaw@latest
Open CC Switch and add a RuoLi configuration:
FieldValue
API URLhttps://ruoli.dev/v1
API KeyYour Key
Select OpenClaw and click Apply.

Manual Configuration

Add RuoLi to the OpenClaw configuration:
{
  models: {
    providers: {
      ruoli: {
        baseUrl: "https://ruoli.dev/v1",
        apiKey: "sk-YOUR-KEY",
        api: "openai",
        models: [
          { id: "claude-sonnet-4-20250514", contextWindow: 200000 },
          { id: "gpt-4o", contextWindow: 128000 }
        ]
      }
    }
  },
  agents: {
    defaults: {
      model: { primary: "ruoli/claude-sonnet-4-20250514" }
    }
  }
}

Switch Models

Change the model.primary field in the configuration, or switch in CC Switch.
Official Documentation: docs.openclaw.ai