cd /news/ai-agents/why-id-put-lynkr-between-goose-and-m… · home topics ai-agents article
[ARTICLE · art-30659] src=dev.to ↗ pub= topic=ai-agents verified=true sentiment=↑ positive

Why I’d Put Lynkr Between Goose and My Model Stack

A developer advocates for using Goose, an open-source AI coding agent, with Lynkr, an LLM gateway, to manage model routing and fallbacks. The architecture places Lynkr between Goose and model providers like OpenAI, Anthropic, or local Ollama, enabling flexible and cost-effective multi-step agent workflows.

read5 min views8 publishedJun 17, 2026

Open-source coding agents are getting a lot more useful, and Goose is one of the clearest examples of that shift.

Goose is an open-source AI agent that goes beyond autocomplete. It can inspect code, execute tasks, edit files, and work through real development loops that look much closer to install → execute → edit → test than traditional code assistance.

That also means Goose creates the exact kind of workload where the model layer starts to matter a lot.

Once an agent is reading files, retrying commands, generating code, reasoning across context, and iterating through multi-step tasks, the cost and reliability of your model setup stops being a background detail. It becomes part of the product experience.

That’s why I think the cleaner architecture is:

Goose
  ↓
Lynkr
  ↓
OpenAI / Anthropic / Ollama / OpenRouter / Bedrock / Azure

In other words: use Goose as the coding agent, and use Lynkr as the LLM gateway underneath it.

If you haven’t looked at it yet, Goose is an open-source, extensible AI agent built for more than just code suggestions. The project describes it as an agent that can install, execute, edit, and test with any LLM, which is exactly why it’s interesting.

That framing matters.

A lot of developer AI tooling still assumes the model is mostly there to answer questions or generate snippets. Goose is part of the newer wave where the model is expected to participate in a real workflow. That means the token pattern changes too:

That’s where a gateway helps.

Lynkr is an open-source LLM gateway. Instead of wiring Goose directly to a single provider, you point Goose at Lynkr and let Lynkr handle the model layer underneath.

That gives you one control point for:

Goose stays focused on the agent workflow. Lynkr stays focused on how requests should reach the right model.

If you only make occasional direct API calls, model choice is simple.

If you use an agent heavily, it isn’t.

A Goose session can easily include:

That is not one request. It is a chain of requests with different complexity levels.

Some of those steps can run on a cheaper or local model. Some need a stronger cloud model. Some repeat enough context that caching matters. Some need a fallback path because a provider slows down or fails mid-session.

Without a gateway, that logic ends up scattered or simply ignored.

With a gateway, you can manage it in one place.

The exact Goose setup may vary depending on how you run it, but the architecture is straightforward:

A typical environment setup looks like this:

export OPENAI_API_BASE=http://localhost:3000/v1
export OPENAI_API_KEY=dummy

Then run Goose normally:

goose

Or for a direct task:

goose run "Review this repo and suggest 3 refactors"

In this flow, Goose thinks it’s talking to its configured LLM endpoint. Lynkr handles what happens next.

Let’s say you want Goose to use a local coding model first.

A simple Lynkr config might look like this:

providers:
  - name: local-coder
    type: ollama
    model: qwen2.5-coder:14b

routing:
  default: local-coder

Then:

export OPENAI_API_BASE=http://localhost:3000/v1
export OPENAI_API_KEY=dummy

goose run "Explain this repository structure and identify dead code"

Why do this instead of connecting Goose directly to Ollama?

Because once Goose is pointed at Lynkr, you can change the backend later without changing the Goose-side integration.

That means you can start local, then later:

A more realistic setup is usually local-first with a stronger cloud fallback.

providers:
  - name: local-fast
    type: ollama
    model: qwen2.5-coder:14b

  - name: cloud-strong
    type: anthropic
    model: claude-sonnet-4

routing:
  default: local-fast
  fallback: cloud-strong

Then configure Goose to talk to Lynkr:

export ANTHROPIC_BASE_URL=http://localhost:3000
export ANTHROPIC_API_KEY=dummy

goose run "Debug why the integration tests are failing and propose a patch"

This gives you a much nicer operating model:

One of the biggest advantages of putting a gateway under a coding agent is that your model preferences change all the time.

Sometimes you want:

With Lynkr, you don’t need to keep reworking Goose every time you change that strategy.

Example:

providers:
  - name: fast
    type: openrouter
    model: openai/gpt-4o-mini

  - name: coder
    type: anthropic
    model: claude-sonnet-4

  - name: local
    type: ollama
    model: qwen2.5-coder:14b

routing:
  default: coder
  fallback: fast

Goose still uses the same top-level environment variables:

export OPENAI_API_BASE=http://localhost:3000/v1
export OPENAI_API_KEY=dummy

That’s the part I like most about the gateway pattern: the agent stays stable while the model layer evolves underneath it.

There are a few situations where this setup becomes much more valuable than direct provider wiring.

If Goose is wired straight to one provider, every change becomes a reconfiguration problem.

If Goose is wired to Lynkr, provider changes happen underneath the same gateway layer.

A lot of developers want a local-first workflow but still need access to stronger cloud models when tasks get harder.

That’s much cleaner when Goose talks to one gateway instead of multiple provider-specific setups.

Agent workflows can burn tokens in places that don’t need premium models.

A gateway gives you a place to route easier work more cheaply.

Coding agents are changing fast. Model providers are changing fast too.

A stable gateway layer gives you a cleaner architecture than coupling every tool directly to every provider.

The easiest way to think about this is:

Goose decides what work to do.

Lynkr decides where that work should go.

That separation gets more useful as your workflows get more agentic.

Goose is part of a bigger shift in developer tools. We’re moving from AI assistants that mostly answer questions to coding agents that can actually work through tasks.

As that shift happens, the model layer matters more.

If you connect Goose directly to a provider, it works.

If you connect Goose to Lynkr, you get a cleaner long-term setup:

That’s why I’d rather put Goose on top of an LLM gateway than wire it straight to a raw provider.

If you’re already experimenting with Goose, this is one of the simplest ways to make the setup more flexible without changing the agent workflow itself.

GitHub

── more in #ai-agents 4 stories · sorted by recency
── more on @goose 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/why-id-put-lynkr-bet…] indexed:0 read:5min 2026-06-17 ·