#Cannot use any tools (Obsidian, OpenCode, Claude Code, etc.).
1 messages ยท Page 1 of 1 (latest)
This looks like an issue with the tool framework itself - a process list action is being triggered automatically when other tools are used. This isn't normal behavior.
Since this is the #cannot-use-any-tools channel and you're seeing tool outputs appearing, head over to #help (channel id: 1456457255208878100) where support questions belong.
In #help, share:
- Your full config (mask any API keys)
- The exact steps to reproduce
- Whether this just started happening or was always like this
The "google antigravity/claude-opus-4.5-thinking" model reference looks unusual too - models should be configured via the standard model settings, not as a provider prefix. Someone in #help can dig into that with you. ๐ฆ
my config:
{
"messages": {
"ackReactionScope": "group-mentions"
},
"agents": {
"defaults": {
"workspace": "/Users/maccredyreina/clawd",
"models": {
"google-antigravity/claude-opus-4-5-thinking": {}
},
"model": {
"primary": "google-antigravity/claude-opus-4-5-thinking"
}
},
"list": [
{
"id": "main",
"identity": {
"name": "..",
"theme": "...",
"emoji": "..."
}
}
]
},
"gateway": {
"mode": "local",
"auth": {
"mode": "token",
"token": "..."
},
"port": 18789,
"bind": "loopback",
"tailscale": {
"mode": "off",
"resetOnExit": false
}
},
"auth": {
"profiles": {
"google-antigravity:mcred.reina@gmail.com": {
"provider": "google-antigravity",
"mode": "oauth"
}
}
},
"channels": {
"discord": {
"enabled": true,
"token": "...",
"dm": {
"enabled": true,
"policy": "allowlist",
"allowFrom": [
"..."
]
},
"guilds": {
"...": {
"users": [
"..."
],
"requireMention": true,
"channels": {
"...": {
"allow": true,
"requireMention": false,
"users": [
"..."
]
}
}
}
}
}
},
"skills": {
"install": {
"nodeManager": "npm"
}
},
"wizard": {
"lastRunAt": "2026-01-13T16
21.778Z",
"lastRunVersion": "2026.1.12-2",
"lastRunCommand": "onboard",
"lastRunMode": "local"
}
}
when i tell bot launch opencode it show that
I can see the issue in your config! The model name is invalid:
Problem: "google-antigravity/claude-opus-4-5-thinking"
This combines:
- Provider prefix:
google-antigravity(doesn't exist) - Model name:
claude-opus-4-5-thinking(Anthropic's model naming)
You need to use one or the other:
- For Google models:
"google/gemini-2.5-thinking"with Google auth - For Anthropic models:
"anthropic/claude-opus-4-5-thinking"with Anthropic auth
Your auth is also set to google-antigravity which doesn't exist.
This is why tools aren't working - the model/provider configuration is invalid so nothing can execute properly.
Please move to #help (channel id: 1456457255208878100) with this info. Someone there can walk you through fixing the model/auth config to match what you actually want to use. ๐ฆ
Ah, you're right that google-antigravity is a valid provider for Google Vertex AI!
But the issue is the model name: claude-opus-4-5-thinking is an Anthropic model, not a Google model.
You can't mix providers and models arbitrarily:
- Google Vertex/Antigravity โ Use Google models (gemini-2.5-thinking, etc.)
- Anthropic โ Use Claude models (claude-opus-4-5-thinking, etc.)
Pick one path:
Option A - Use Claude (recommended for Opus):
{
"agents": {
"defaults": {
"model": { "primary": "anthropic/claude-opus-4-5-thinking" }
}
},
"auth": {
"profiles": {
"anthropic:your-email@example.com": {
"provider": "anthropic",
"mode": "oauth"
}
}
}
}
Option B - Use Google Vertex: