#skill-workshop hard dependency on openai?

1 messages Β· Page 1 of 1 (latest)

visual rune
#

Hello @flint spruce, I'm using opencode-go as the inference provider, yet my claw still tries to use the opencode-go api key against openai's Apis. Any idea ?

fiery briarBOT
#

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

bitter patioBOT
flint spruceBOT
#

Let me check the docs and source so I don't guess.

#

I found the relevant code paths, but the FAQ moved in the ref checkout. I’m locating the current docs path before I answer.

#

The thread title makes me suspect this is either a stale session model, or a plugin/tool in that flow still pointing at openai/.... I’m checking whether skill-workshop has any OpenAI-specific path.

#

I found something promising in skill-workshop: its reviewer inherits the current model provider when available, otherwise it falls back to the agent defaults. If your defaults still say openai, that would explain exactly this behavior.

#

I don’t think skill-workshop has a hard OpenAI dependency.

What I found in the current source is:

  • the reviewer uses the current session model/provider when it has one
  • otherwise it falls back to the agent defaults

So the usual causes are:

  1. your active/default model is still openai/..., even though auth is set up for OpenCode Go
  2. the session was already pinned to an OpenAI model before you switched
  3. you manually added models.providers.opencode-go, which can override the built-in OpenCode routing and send traffic down the wrong path

For OpenCode Go, the important bit is that the model ref itself needs to be opencode-go/..., not just the auth/provider choice.

Can you paste these?