Problem
The Zoo Code extension auto-generates a "Read the docs" link for every provider pointing at https://docs.zoocode.dev/providers/<slug>. For several providers, that page does not exist, so users land on a 404.
The link is built in the extension at webview-ui/src/components/settings/ApiOptions.tsx:350:
url: buildDocLink(`providers/${slug}`, "provider_docs"),
…where slug is the provider key (with two overrides: openai-native → openai, openai → openai-compatible). There is no fallback, so any provider whose page hasn't been authored here is a dead link from inside the extension.
Affected provider pages (all return HTTP 404)
The other 24 provider slugs resolve correctly (200), e.g. anthropic, openai-compatible, openai, gemini, bedrock, vertex, litellm, openrouter, deepseek, xai, etc.
Requested
Create the five provider doc pages listed above (or, for any provider Zoo Code no longer ships, confirm and we'll adjust the extension's link builder instead). This unblocks closing the corresponding bug reports in the extension repo:
Repro
Click the docs/help link on the provider settings screen for any of the five providers above, or curl -I https://docs.zoocode.dev/providers/mimo.
Problem
The Zoo Code extension auto-generates a "Read the docs" link for every provider pointing at
https://docs.zoocode.dev/providers/<slug>. For several providers, that page does not exist, so users land on a 404.The link is built in the extension at
webview-ui/src/components/settings/ApiOptions.tsx:350:…where
slugis the provider key (with two overrides:openai-native→openai,openai→openai-compatible). There is no fallback, so any provider whose page hasn't been authored here is a dead link from inside the extension.Affected provider pages (all return HTTP 404)
mimoopenai-codexopencode-gopoezoo-gatewayThe other 24 provider slugs resolve correctly (200), e.g.
anthropic,openai-compatible,openai,gemini,bedrock,vertex,litellm,openrouter,deepseek,xai, etc.Requested
Create the five provider doc pages listed above (or, for any provider Zoo Code no longer ships, confirm and we'll adjust the extension's link builder instead). This unblocks closing the corresponding bug reports in the extension repo:
/providers/mimo404 — the original report)Repro
Click the docs/help link on the provider settings screen for any of the five providers above, or
curl -I https://docs.zoocode.dev/providers/mimo.