GPT Proto
Home/Skills/openclaw-installer

openclaw-installer

OpenClaw one-click installation and configuration assistant. Triggered when the user mentions installing OpenClaw, configuring OpenClaw, setting up OpenClaw, openclaw install, openclaw setup, or wants to set up an AI programming assistant / AI code editor environment. Automatically completes the full workflow of environment checks, installation, configuration, and verification. The user is a non-technical beginner who only needs to provide an API Key.

Download for Windows

config-template.json

{
  "models": {
    "mode": "merge",
    "providers": {
      "gptproto": {
        "baseUrl": "https://gptproto.com/v1",
        "apiKey": "<GPTPROTO_API_KEY>",
        "api": "anthropic-messages",
        "models": [
          {
            "id": "claude-opus-4-6",
            "name": "Claude Opus 4.6",
            "reasoning": true,
            "input": ["text"],
            "cost": {
              "input": 0,
              "output": 0,
              "cacheRead": 0,
              "cacheWrite": 0
            },
            "contextWindow": 128000,
            "maxTokens": 16384
          },
          {
            "id": "glm-5",
            "name": "GLM-5",
            "reasoning": false,
            "input": ["text"],
            "cost": {
              "input": 0,
              "output": 0,
              "cacheRead": 0,
              "cacheWrite": 0
            },
            "contextWindow": 128000,
            "maxTokens": 100000
          }
        ]
      },
      "gptproto-openai": {
        "baseUrl": "https://gptproto.com/v1",
        "apiKey": "<GPTPROTO_API_KEY>",
        "api": "openai-completions",
        "models": [
          {
            "id": "gpt-4o",
            "name": "GPT-4o",
            "reasoning": false,
            "input": ["text"],
            "cost": {
              "input": 0,
              "output": 0,
              "cacheRead": 0,
              "cacheWrite": 0
            },
            "contextWindow": 128000,
            "maxTokens": 16384
          },
          {
            "id": "gpt-5.4",
            "name": "GPT-5.4",
            "reasoning": false,
            "input": ["text"],
            "cost": {
              "input": 0,
              "output": 0,
              "cacheRead": 0,
              "cacheWrite": 0
            },
            "contextWindow": 1050000,
            "maxTokens": 128000
          }
        ]
      }
    }
  },
  "agents": {
    "defaults": {
      "model": {
        "primary": "gptproto-openai/gpt-5.4"
      },
      "models": {
        "gptproto-openai/gpt-5.4": {},
        "gptproto/claude-opus-4-6": {},
        "gptproto/glm-5": {}
      }
    }
  },
  "gateway": { "mode": "local" }
}