#skill-workshop hard dependency on openai?
1 messages Β· Page 1 of 1 (latest)
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:
- your active/default model is still
openai/..., even though auth is set up for OpenCode Go - the session was already pinned to an OpenAI model before you switched
- 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?