Skip to content

Instantly share code, notes, and snippets.

@assada
Created February 7, 2026 16:00
Show Gist options
  • Select an option

  • Save assada/0c4afd01a73a1dde77664076c0752483 to your computer and use it in GitHub Desktop.

Select an option

Save assada/0c4afd01a73a1dde77664076c0752483 to your computer and use it in GitHub Desktop.
OpenClaw configuration example (tokens sanitized)
{
"meta": {
"lastTouchedVersion": "2026.2.6-3",
"lastTouchedAt": "2026-02-07T12:27:15.401Z"
},
"wizard": {
"lastRunAt": "2026-02-06T10:50:01.627Z",
"lastRunVersion": "2026.2.3-1",
"lastRunCommand": "doctor",
"lastRunMode": "local"
},
"logging": {
"level": "info",
"file": "/root/clawd/logs/all.log",
"consoleLevel": "info",
"redactSensitive": "tools"
},
"browser": {
"enabled": true,
"executablePath": "/usr/bin/google-chrome-stable",
"headless": true,
"noSandbox": true,
"profiles": {
"my-chrome": {
"cdpUrl": "http://127.0.0.1:18792",
"driver": "extension",
"color": "#00AA00"
}
}
},
"ui": {
"assistant": {
"name": "Штучька"
}
},
"auth": {
"profiles": {
"kimi-coding:default": {
"provider": "kimi-coding",
"mode": "api_key"
},
"anthropic:default": {
"provider": "anthropic",
"mode": "token"
},
"openrouter:default": {
"provider": "openrouter",
"mode": "api_key"
}
}
},
"models": {
"mode": "merge",
"providers": {
"minimax": {
"baseUrl": "https://api.minimax.io/anthropic",
"apiKey": "${MINIMAX_API_KEY}",
"api": "anthropic-messages",
"models": [
{
"id": "MiniMax-M2.1",
"name": "MiniMax M2.1",
"reasoning": false,
"input": ["text"],
"cost": {
"input": 15,
"output": 60,
"cacheRead": 2,
"cacheWrite": 10
},
"contextWindow": 200000,
"maxTokens": 8192
}
]
}
}
},
"agents": {
"defaults": {
"typingMode": "thinking",
"typingIntervalSeconds": 6,
"model": {
"primary": "kimi-coding/k2p5",
"fallbacks": [
"anthropic/claude-opus-4-5",
"openrouter/x-ai/grok-4.1-fast"
]
},
"models": {
"anthropic/claude-opus-4-5": {
"alias": "opus"
},
"minimax/MiniMax-M2.1": {
"alias": "minimax"
},
"kimi-coding/k2p5": {
"alias": "kimi"
},
"openrouter/x-ai/grok-4.1-fast": {
"alias": "grok"
}
},
"workspace": "/root/clawd",
"memorySearch": {
"sources": ["memory", "sessions"],
"experimental": {
"sessionMemory": true
}
},
"contextPruning": {
"mode": "cache-ttl",
"ttl": "1h"
},
"compaction": {
"mode": "safeguard",
"memoryFlush": {
"enabled": true,
"softThresholdTokens": 6000
}
},
"blockStreamingDefault": "on",
"blockStreamingBreak": "text_end",
"blockStreamingChunk": {
"minChars": 300,
"maxChars": 1500
},
"heartbeat": {
"every": "30m",
"model": "kimi-coding/k2p5"
},
"maxConcurrent": 4,
"subagents": {
"maxConcurrent": 8
}
}
},
"tools": {
"web": {
"search": {
"enabled": true,
"apiKey": "${BRAVE_API_KEY}"
},
"fetch": {
"enabled": true
}
}
},
"broadcast": {
"strategy": "parallel"
},
"messages": {
"ackReactionScope": "all",
"removeAckAfterReply": true,
"tts": {
"auto": "inbound",
"provider": "elevenlabs",
"edge": {
"enabled": true,
"voice": "uk-UA-PolinaNeural",
"lang": "uk-UA",
"outputFormat": "ogg-48khz-16bit-mono-opus"
},
"elevenlabs": {
"languageCode": "uk"
}
}
},
"commands": {
"native": "auto",
"nativeSkills": "auto"
},
"cron": {
"enabled": true,
"maxConcurrentRuns": 1
},
"hooks": {
"internal": {
"enabled": true,
"entries": {
"boot-md": {
"enabled": true
},
"command-logger": {
"enabled": true
},
"session-memory": {
"enabled": true
}
}
}
},
"channels": {
"telegram": {
"enabled": true,
"linkPreview": false,
"dmPolicy": "pairing",
"botToken": "${TELEGRAM_BOT_TOKEN}",
"groupPolicy": "allowlist",
"blockStreaming": false,
"streamMode": "partial",
"draftChunk": {
"minChars": 200,
"maxChars": 800,
"breakPreference": "paragraph"
},
"actions": {
"reactions": true,
"sendMessage": true,
"deleteMessage": true
},
"reactionLevel": "extensive",
"reactionNotifications": "all"
}
},
"talk": {
"apiKey": "${ELEVENLABS_API_KEY}"
},
"gateway": {
"port": 18789,
"mode": "local",
"bind": "loopback",
"trustedProxies": ["127.0.0.1", "100.64.0.0/10"],
"auth": {
"mode": "token",
"token": "${GATEWAY_AUTH_TOKEN}",
"allowTailscale": true
},
"tailscale": {
"mode": "serve",
"resetOnExit": false
},
"tls": {
"enabled": false,
"certPath": "/root/ubuntu-4gb-hel1-1.taile8fd61.ts.net.crt",
"keyPath": "/root/ubuntu-4gb-hel1-1.taile8fd61.ts.net.key"
}
},
"skills": {
"install": {
"nodeManager": "npm"
},
"entries": {
"goplaces": {
"apiKey": "${GOOGLE_PLACES_API_KEY}"
},
"local-places": {
"apiKey": "${GOOGLE_PLACES_API_KEY}"
},
"nano-banana-pro": {
"apiKey": "${GEMINI_API_KEY}"
},
"gemini": {
"apiKey": "${GEMINI_API_KEY}"
},
"sag": {
"apiKey": "${ELEVENLABS_API_KEY}"
}
}
},
"plugins": {
"entries": {
"telegram": {
"enabled": true
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment