Forked from OminousIndustries/Sample_Clawdbot_Config.json
Created
January 29, 2026 06:36
-
-
Save ozgursar/b939e8d3569fcf5d71c7ff0c97956d72 to your computer and use it in GitHub Desktop.
Clawdbot LM Studio Config Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "meta": { | |
| "lastTouchedVersion": "2026.1.24-3", | |
| "lastTouchedAt": "2026-01-27T08:29:37.155Z" | |
| }, | |
| "wizard": { | |
| "lastRunAt": "2026-01-27T08:29:37.152Z", | |
| "lastRunVersion": "2026.1.24-3", | |
| "lastRunCommand": "onboard", | |
| "lastRunMode": "local" | |
| }, | |
| "browser": { | |
| "enabled": true, | |
| "defaultProfile": "clawd", | |
| "attachOnly": false | |
| }, | |
| "models": { | |
| "mode": "merge", | |
| "providers": { | |
| "lmstudio": { | |
| "baseUrl": "http://127.0.0.1:1234/v1", | |
| "apiKey": "lmstudio", | |
| "api": "openai-responses", | |
| "models": [ | |
| { | |
| "id": "openai/gpt-oss-20b", | |
| "name": "gpt-oss-20b", | |
| "reasoning": false, | |
| "input": [ | |
| "text" | |
| ], | |
| "cost": { | |
| "input": 0, | |
| "output": 0, | |
| "cacheRead": 0, | |
| "cacheWrite": 0 | |
| }, | |
| "contextWindow": 131072, | |
| "maxTokens": 8192 | |
| } | |
| ] | |
| } | |
| } | |
| }, | |
| "agents": { | |
| "defaults": { | |
| "model": { | |
| "primary": "lmstudio/openai/gpt-oss-20b" | |
| }, | |
| "workspace": "USE YOUR LOCAL DIR", | |
| "compaction": { | |
| "mode": "safeguard" | |
| }, | |
| "maxConcurrent": 4, | |
| "subagents": { | |
| "maxConcurrent": 8 | |
| } | |
| } | |
| }, | |
| "tools": { | |
| "allow": ["browser", "read", "write", "exec"] | |
| }, | |
| "messages": { | |
| "ackReactionScope": "group-mentions" | |
| }, | |
| "commands": { | |
| "native": "auto", | |
| "nativeSkills": "auto" | |
| }, | |
| "gateway": { | |
| "port": 18789, | |
| "mode": "local", | |
| "bind": "loopback", | |
| "auth": { | |
| "mode": "token", | |
| "token": "abc123" | |
| }, | |
| "tailscale": { | |
| "mode": "off", | |
| "resetOnExit": false | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment