For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.
Devin Desktop
Configure Devin Desktop AI code editor to use agentgateway running in Kubernetes
Configure Devin Desktop, the AI-powered code editor from Cognition (formerly Windsurf), to route requests to your LLM through your agentgateway proxy.
Before you begin
Get the gateway URL
export INGRESS_GW_ADDRESS=$(kubectl get svc -n agentgateway-system agentgateway-proxy \
-o jsonpath='{.status.loadBalancer.ingress[0].ip}')
echo "Gateway address: $INGRESS_GW_ADDRESS"Configure Devin Desktop
Configure Devin Desktop to route LLM requests through agentgateway. For more information, review the Devin Desktop documentation.
Open Devin Desktop Settings.
- macOS:
Cmd + ,or Devin Desktop > Settings - Windows/Linux:
Ctrl + ,or File > Preferences > Settings
- macOS:
Search for Http: Proxy.
Enter your agentgateway URL.
http://<INGRESS_GW_ADDRESS>/<route-path>For example, if your HTTPRoute uses path
/openaion yourai-example.comsecured host, usehttps://ai-example.com/openai.Save the settings.
Verify the connection
- Open the Devin Desktop chat panel.
- Send a message such as “test”.
- Devin Desktop responds through your agentgateway backend.