providers

A set of rules for implementing integrations with AI model providers such as Anthropic, OpenAI, and Google. It defines how each provider package should be structured and how it should implement the shared provider interface.

In plain words
What is it for?
Use it when adding or reviewing a provider implementation, checking its folders and schemas, validating dependencies and exports, and confirming that the package builds in both supported module formats.
Why use it?
It helps keep different provider integrations consistent, type-safe, buildable, and compatible with the surrounding codebase. It also sets expectations for provider-specific error handling and package exports.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/adaline/gateway/providers
Clone the repo
git clone --depth 1 https://github.com/adaline/gateway

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,667 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.01667
Opus 5 $0.00000 $0.00834
Sonnet 5 $0.00000 $0.00333
Haiku 4.5 $0.00000 $0.00167

Measured yesterday against content hash f4a67ed4a6b2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

providers scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/providers.mdc · 215 lines

How it starts

The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Core Providers Module Rules

Module Overview

The core providers module contains concrete implementations of AI provider integrations (Anthropic, OpenAI, Google, etc.) that implement the provider interfaces defined in the provider package.

Provider Implementation Rules

1. Provider Structure

  • ALWAYS create a dedicated directory for each provider: core/providers/{provider-name}/
  • ALWAYS implement the ProviderV1 interface from @adaline/provider
  • ALWAYS use the naming pattern: Provider{ProviderName} (e.g., Anthropic, OpenAI)
  • ALWAYS export the provider class as the default export
  • ALWAYS include proper TypeScript generics for configuration types

2. Provider Class Implementation

  • ALWAYS implement readonly version = "v1" as const
  • ALWAYS implement readonly name = "{ProviderName}"
  • ALWAYS use static constants for base URLs and endpoints
  • ALWAYS implement private model factories for both chat and embedding models
  • ALWAYS use proper type constraints for model factories

3. Model Factory Pattern

  • ALWAYS create a private chatModelFactories record mapping model names to factories
  • ALWAYS create a private embeddingModelFactories record mapping model names to factories
  • ALWAYS each factory should include: model class, options schema, and model schema
  • ALWAYS use the pattern:
private readonly chatModelFactories: Record<string, {
  model: { new (options: any): ChatModelV1 };
  modelOptions: z.ZodType<any>;
  modelSchema: ChatModelSchemaType;
}> = {
  [ModelLiteral]: {
    model: ModelClass,
    modelOptions: ModelOptionsSchema,
    modelSchema: ModelSchema,
  },
};

Model Implementation Rules

1. Chat Model Implementation

  • ALWAYS extend or implement the appropriate base chat model class
  • ALWAYS implement all required methods from ChatModelV1
  • ALWAYS provide proper model schemas with capabilities and limits
  • ALWAYS implement provider-specific API integration methods
  • ALWAYS handle provider-specific response formats and errors

Read the full file on GitHub · 215 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 215 lines · 0 tokens per session scan A f4a67ed4a6b2

Subscribe to this mod's changes

providers is a cursor rule published in the GitHub repository adaline/gateway (605 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,667 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.