feat: initial OpenClaw agent configuration

- openclaw.json: main config with all agent definitions
- agents/*/agent/models.json: per-agent model configs
- agents/*/agent/plugins/: plugin catalog configs
This commit is contained in:
2026-07-02 10:40:26 +08:00
commit 022b6edbe4
21 changed files with 2974 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
{
"version": 1,
"profiles": {}
}
+59
View File
@@ -0,0 +1,59 @@
{
"providers": {
"ollama": {
"baseUrl": "http://127.0.0.1:11434",
"apiKey": "OLLAMA_API_KEY",
"api": "ollama",
"models": [
{
"id": "glm-4.7-flash",
"name": "glm-4.7-flash",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 128000,
"maxTokens": 8192
},
{
"id": "qwen3-coder:latest",
"name": "qwen3-coder:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 262144,
"maxTokens": 8192
},
{
"id": "glm-4.7-flash:latest",
"name": "glm-4.7-flash:latest",
"reasoning": false,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 202752,
"maxTokens": 8192
}
]
}
}
}