#Cannot use any tools (Obsidian, OpenCode, Claude Code, etc.).

1 messages ยท Page 1 of 1 (latest)

novel pagoda
#

When running any tool, it shows the following:
[Tool Call: process (ID: toolu_vrtx_01CsVCMNWS1pAaFPkdPSsmxM)]
Arguments: {
"action": "list"
}
I am configuring it via google antigravity/claude-opus-4.5-thinking.

buoyant frigateBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> โœ… Mark Solution

vestal cloakBOT
# novel pagoda When running any tool, it shows the following: [Tool Call: process (ID: toolu_vr...

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:

  1. Your full config (mask any API keys)
  2. The exact steps to reproduce
  3. 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. ๐Ÿฆ

novel pagoda
#

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-13T163221.778Z",
"lastRunVersion": "2026.1.12-2",
"lastRunCommand": "onboard",
"lastRunMode": "local"
}
}

when i tell bot launch opencode it show that

vestal cloakBOT
# novel pagoda my config: { "messages": { "ackReactionScope": "group-mentions" }, "ag...

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. ๐Ÿฆ

vestal cloakBOT
# novel pagoda https://docs.clawd.bot/concepts/model-providers#google-vertex-/-antigravity-/-ge...

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: