> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jiekou.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# OpenClaw

OpenClaw ist eine Open-Source-Plattform für persönliche KI-Assistenten, deren Schwerpunkt darauf liegt, „wirklich Dinge für dich zu erledigen“ und nicht nur zu chatten: Sie kann auf deinem lokalen Gerät ausgeführt werden, sich mit Chat-Tools wie WhatsApp, Telegram, Slack und Feishu verbinden und in Kombination mit E-Mail, Kalender, Browser, Dateisystem und Skriptausführung automatisierte Aufgaben für dich erledigen. Gleichzeitig unterstützt sie persistentes Gedächtnis, die Anbindung mehrerer Modelle und Skill-Erweiterungen und eignet sich für Nutzer, die einen kontrollierbaren, anpassbaren privaten KI-Assistenten möchten, der tatsächlich Arbeit ausführen kann.

# Installation

Hier wird die einfachere Installationsmethode verwendet. Weitere Informationen findest du in der offiziellen Dokumentation: [https://docs.openclaw.ai/](https://docs.openclaw.ai/)

## Systemanforderungen

* Node >=22
* macOS, Linux oder Windows über WSL2
* pnpm wird nur beim Erstellen aus dem Quellcode benötigt

## Schnellinstallation

```bash theme={null}
curl -fsSL https://openclaw.ai/install.sh | bash
```

# Anbindung an die Schnittstelle AI API

Ändere die Konfigurationsdatei `~/.openclaw/openclaw.json`; die Feldwerte können je nach Bedarf angepasst werden.

* models-Feld

```json theme={null}
  "models": {
    "mode": "merge",
    "providers": {
      "<provider_name>": {
        "baseUrl": "<provider_base_url>",
        "apiKey": "<your_api_key>",
        "api": "<api_endpoint_type>",
        "models": [
          {
            "id": "<model_id>",
            "name": "<model_display_name>",
            "reasoning": false,
            "input": [
              "text"
            ],
            "cost": {
              "input": 0,
              "output": 0,
              "cacheRead": 0,
              "cacheWrite": 0
            },
            "contextWindow": <contextWindow>,
            "maxTokens": <maxTokens>
          }
        ]
      }
    }
  }
```

* agent-Feld

```json theme={null}
"agents": {
    "defaults": {
      "model": {
        "primary": "<provider_name>/<model_id>"
      },
      "models": {
        "<provider_name>/<model_id>": {
          "alias": "<model_alias>"
        }
      },
      "workspace": "<your_local_path>/.openclaw/workspace",
      "compaction": {
        "mode": "safeguard"
      },
      "maxConcurrent": 4,
      "subagents": {
        "maxConcurrent": 8
      }
    }
  }
```

* Beispiel:

```json theme={null}
"models": {
    "mode": "merge",
    "providers": {
      "Jiekou": {
        "baseUrl": "https://api.highwayapi.ai/openai/v1",
        "apiKey": "sk_xxxxxxxxxxxxxxxxxx",
        "api": "openai-completions",
        "models": [
          {
            "id": "gpt-5.4",
            "name": "gpt-5.4 (Custom Provider)",
            "reasoning": false,
            "input": [
              "text"
            ],
            "cost": {
              "input": 0,
              "output": 0,
              "cacheRead": 0,
              "cacheWrite": 0
            },
            "contextWindow": 16000,
            "maxTokens": 4096
          }
        ]
      }
    }
  },
  "agents": {
    "defaults": {
      "model": {
        "primary": "jiekou/gpt-5.4"
      },
      "models": {
        "Jiekou/gpt-5.4": {
          "alias": "gpt-5.4"
        }
      },
      "workspace": "/Users/0000/.openclaw/workspace",
      "compaction": {
        "mode": "safeguard"
      },
      "maxConcurrent": 4,
      "subagents": {
        "maxConcurrent": 8
      }
    }
  },
```
