mcpbeat Sign in

Routerbase Model Gateway Agent Skill

Configure RouterBase as an OpenAI compatible model gateway for AI apps, with routing, fallback, media generation, and credential handling patterns.

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
365
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/cosmicstack-labs/mercury-agent-skills --skill routerbase-model-gateway

The instruction itself

13 sections, as written by the author

RouterBase Model Gateway

Use routerbase when an application needs an OpenAI compatible gateway for chat, embeddings, image, video, audio, speech, model routing, or fallback behavior.

The goal is not to rewrite the whole AI layer. The goal is to move provider selection behind a clean server side boundary, keep credentials private, and make model choices reversible.

When To Use

Use this skill when the user asks to:

  • Migrate an OpenAI compatible client to RouterBase.
  • Add RouterBase to a backend API, worker, command line tool, or agent runtime.
  • Route requests across multiple model providers through one API surface.
  • Choose primary and fallback models for latency, quality, price, or availability.
  • Add image, video, audio, speech, or embedding generation through a gateway.
  • Debug RouterBase base URLs, model IDs, streaming, JSON output, or media job polling.

Do not use this skill for:

  • General API gateway design unrelated to AI models.
  • Direct provider SDK features that are not exposed through the OpenAI compatible API.
  • Frontend only integrations that would expose API keys to users.
  • Production security review of the whole application.

Implementation Principles

1. Keep The Gateway Server Side

All RouterBase calls should run in trusted code:

  • backend route
  • serverless function
  • worker
  • command line tool
  • internal service
  • agent runtime process

Never place ROUTERBASE_API_KEY in browser code, mobile applications, public logs, screenshots, or checked in examples.

2. Change Configuration Before Code Shape

Most migrations should start with configuration:

  • base URL: https://routerbase.com/v1
  • API key variable: ROUTERBASE_API_KEY
  • chat model variable: ROUTERBASE_CHAT_MODEL
  • embedding model variable: ROUTERBASE_EMBEDDING_MODEL
  • media model variables for image, video, audio, or speech

Keep the OpenAI compatible request shape until there is a documented reason to change it.

3. Isolate Provider Choices

Do not scatter model IDs across product code. Put them in one adapter, config file, or environment mapping.

Good boundaries:

  • aiClient.ts
  • modelConfig.ts
  • llmGateway.ts
  • services/ai/routerbase.ts

Poor boundaries:

  • hard coded model IDs in every route
  • retries implemented differently in every feature
  • media polling mixed into UI code
  • provider errors returned directly to users

Quick Start Example

import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.ROUTERBASE_API_KEY,
  baseURL: process.env.ROUTERBASE_BASE_URL || "https://routerbase.com/v1",
});

export async function summarizeReleaseNote(text: string) {
  const completion = await client.chat.completions.create({
    model: process.env.ROUTERBASE_CHAT_MODEL || "openai/gpt-5.4-mini",
    messages: [
      { role: "system", content: "Summarize clearly for product engineers." },
      { role: "user", content: text },
    ],
  });

  return completion.choices[0]?.message?.content || "";
}

Routing Checklist

Before choosing models, answer these questions:

  • What is the workload: chat, JSON output, streaming, tools, embeddings, image, video, audio, or speech?
  • What matters most: latency, output quality, cost, context length, availability, or modality support?
  • Does the fallback model return the same output shape?
  • Can the feature tolerate degraded quality, or should it fail closed?
  • Are user prompts, uploaded files, or generated assets subject to privacy rules?
  • What telemetry is needed: model ID, request ID, latency, status code, retry count, and fallback used?
  • What should the user see when the primary model fails?

Fallback Pattern

Use fallbacks for availability, not to hide every error.

async function runWithFallback(messages: OpenAI.Chat.Completions.ChatCompletionMessageParam[]) {
  const primary = process.env.ROUTERBASE_CHAT_MODEL || "openai/gpt-5.4-mini";
  const fallback = process.env.ROUTERBASE_CHAT_FALLBACK_MODEL || "openai/gpt-5.4-mini";

  try {
    return await client.chat.completions.create({ model: primary, messages });
  } catch (error) {
    if (!isRetryableModelError(error)) throw error;

    return client.chat.completions.create({
      model: fallback,
      messages,
    });
  }
}

Fallback only when:

  • the error is temporary or provider specific
  • the fallback model supports the same output contract
  • the request does not require a provider that has a unique compliance rule
  • the user experience is better with degraded output than with a clear failure

Media Generation Flow

Treat long running media as a job workflow, not as a chat completion.

  • Validate the prompt and user permissions.
  • Create a media generation job through the RouterBase compatible endpoint for the selected modality.
  • Store the job ID, model ID, user ID, and requested output type.
  • Poll with backoff instead of holding one long request open.
  • Save generated assets to durable storage.
  • Return a stable URL or asset reference to the user.
  • Record failures with model ID, status code, and retry count.

Evaluation Rubric

Score the integration from 0 to 2 for each item.

| Area | 0 | 1 | 2 |

|---|---|---|---|

| Credential handling | key exposed or hard coded | key is server side but examples are unclear | key is server side, documented, and scanned |

| Model configuration | IDs scattered in code | central config for some workloads | central config for all workloads |

| Fallback design | no fallback or unsafe fallback | fallback exists without clear policy | fallback policy is explicit and tested |

| Error handling | provider errors leak to users | common errors mapped | auth, quota, rate, timeout, and model errors handled |

| Media workflow | synchronous long request | polling exists but storage is weak | job, polling, storage, and status are separate |

| Observability | no useful logs | basic latency and status logs | request ID, model ID, fallback, retry count, latency |

Recommended threshold before production: at least 10 out of 12.

Common Mistakes

  • Putting RouterBase keys in frontend environment variables that are bundled for users.
  • Hard coding one model ID in multiple product features.
  • Assuming streaming and non streaming responses fail in the same way.
  • Falling back to a model with a different JSON output contract.
  • Treating image or video generation as a simple request response call.
  • Logging full prompts, uploaded file contents, or generated private data.
  • Retrying authentication or quota errors that should fail immediately.
  • Returning raw provider error messages to end users.

Output Expectations

When completing a RouterBase task, provide:

  • files changed
  • environment variables required
  • primary and fallback model IDs
  • test or smoke check performed
  • privacy notes for prompts, files, and generated assets
  • any unsupported features or assumptions

Keep the final recommendation concise. Include code only where it changes the integration boundary.

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take cosmicstack-labs/routerbase-model-gateway from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.