Glossary

August 3, 2026 ยท View on GitHub

Last modified: 2026-08-02

A plain-English mapping of the terms that appear in SBproxy configuration and documentation. Start with the gateway words below, then use the longer protocol list when you meet an acronym.

TermWhat it means in SBproxy
OriginA client-facing hostname and the configuration that handles requests for it. An origins: entry selects an action, policy, authentication, and transforms.
ActionThe work an origin performs after SBproxy accepts a request. Common actions proxy an HTTP API, serve an MCP endpoint, or route an AI completion.
UpstreamThe service SBproxy calls on the other side of an action. It can be an application backend, an MCP server, or an OpenAI-compatible inference service.
ProviderAn AI source configured under an ai_proxy action. A provider can be hosted or local and may expose one or more model names.
Data planeThe listener that serves client traffic through origins and actions. Local examples use port 8080.
Admin planeAuthenticated endpoints and UI that inspect or change a running proxy, including health, keys, config, and reload.
Configuration compilationThe startup and validation step that parses sb.yml and constructs the request pipeline before the proxy accepts traffic.
ReloadRecompiling a candidate config in a running process, then swapping it in only when compilation succeeds. The old pipeline keeps serving when it fails.
MCPA JSON-RPC protocol for clients to discover and call tools. MCP does not generate model completions.
OpenAI-compatibleAn HTTP API shape that accepts endpoints such as /v1/chat/completions and returns the corresponding response format. Compatibility describes the wire protocol, not the model itself.

See core-concepts.md for the request flow and configuration.md for configuration fields.

TermStands for / sourceWhat it means in SBproxy
OLPOpen Licensing ProtocolA four-step flow for publishers to advertise a license catalog, agents to discover it, and the gateway to issue license tokens (jti claims) bound to a license row. SBproxy is both ends of it: the AI crawl control policy verifies tokens, and the origin-level olp block runs the issuer, minting at POST /.well-known/olp/token and publishing its JWK set at GET /.well-known/olp/key.
CAPCrawler Authorization ProtocolA JWT-based capability-token format that an agent presents in CAP-Token: or Authorization: CAP <jwt>. SBproxy verifies signature, claims, audience, glob-allowed paths, and (optionally) per-token rate limits. Tokens are minted by whichever CAP issuer the deployment trusts, named by jwks_url or pinned inline with jwks_static.
MCPModel Context ProtocolThe Anthropic-originated tool-and-resource catalog protocol. SBproxy ships an MCP federation action that aggregates tool catalogs across upstream MCP servers and routes tools/call per tool.
x402x402 protocol (Linux Foundation x402 Foundation)A stablecoin-on-chain payment rail riding HTTP 402. x402 moved to a Linux Foundation project on 2026-04-02. SBproxy emits x402 challenge entries in multi-rail 402 responses and verifies redemption tokens via the x402 facilitator. v2 is the emitted and accepted version.
MPPMerchant Payment ProtocolThe card-and-stablecoin-on-Stripe payment rail. SBproxy emits MPP challenge entries that carry a Stripe payment_intent id; redemption confirms against Stripe.
DPoPDemonstration of Proof-of-Possession (RFC 9449)A JWS that proves the presenter holds the private key bound to an access token. SBproxy uses DPoP on outbound credential resolution so a stolen access token alone is insufficient to call an upstream.
RFC 8693OAuth 2.0 Token ExchangeThe token-exchange grant that powers SBproxy's outbound credential resolver. SBproxy uses RFC 8693 to swap an inbound identity for an upstream access token under one delegation-aware interface.
RFC 9421HTTP Message SignaturesThe IETF spec for signing HTTP messages. SBproxy implements per-origin message-signature configuration plus the Web Bot Auth directory (RFC 9421-style signatures with a JWKS feed).
RateLimit headersdraft-ietf-httpapi-ratelimit-headersThe IETF draft for RateLimit-Limit, RateLimit-Remaining, RateLimit-Reset, and Retry-After. SBproxy emits these on throttled responses when the rate-limit policy opts in via its headers block; they are off by default.
RSLReally Simple LicensingA license-advertisement standard served as licenses.xml. SBproxy serves it from /licenses.xml keyed off the live config and the per-origin Content-Signal value.
TDMRepText and Data Mining Reservation Protocol (W3C)A license-reservation standard served as tdmrep.json. SBproxy serves it from /.well-known/tdmrep.json. When content_signal is unset on an origin, the proxy stamps TDM-Reservation: 1 instead of asserting a positive Content-Signal.
llms.txtllms.txt conventionA plain-text capability index for AI crawlers. SBproxy serves one live llms.txt projection per origin, derived from the compiled policy graph and regenerated on every config reload; nothing is served from a static file.
robots.txtRobots Exclusion ProtocolA projection route that derives the live robots.txt from each origin's policy graph. The proxy never serves a static robots.txt; it composes one on every reload.
aiprefAI Preferences Working Group draftA request-side preference signal an agent can carry to declare training, search, or input intent. Parsed at request entry into RequestContext.aipref and exposed to CEL, Lua, JavaScript, and WASM.
Content-SignalIAB Tech Lab Content-Signal headerA response header carrying one of ai-train, search, ai-input. SBproxy stamps it on 200 responses per origin and reflects the same value into the licensing projections.
Pay Per CrawlCloudflare-coined term, SBproxy implementationThe pattern of charging an AI crawler with HTTP 402 plus a Crawler-Payment token. Implemented by the ai_crawl_control policy.
Web Bot AuthIETF draft (HTTP message signatures + key directory)The signed-bot-traffic standard. SBproxy fetches /.well-known/http-message-signatures-directory from a vendor, caches the JWKS with TTL, and verifies signatures on inbound bot requests.
KYAKnow-Your-Agent (Skyfire)A token format for verified agent identity. The proxy verifies KYA tokens and exposes request.kya to scripting.
JA3 / JA4 / JA4HTLS fingerprinting algorithmsClientHello fingerprints supplied by a trusted TLS-terminating sidecar via x-sbproxy-tls-* request headers (accepted only from peers in proxy.trusted_proxies) and stamped onto the request context. JA3 plus the JA4 family power the headless-detection signals.
schema-v1Internal config schema labelThe sb.yml schema shared by the archived v0.1.x line and the Rust v1.x line. Schema-v1 is independent of binary version and is pinned by v1_compat::v1_fixtures_compile_unmodified in crates/sbproxy-config/.
Apache 2.0Apache License, Version 2.0The open source license under which SBproxy is published. Free for any use, including production and commercial, with no field-of-use restriction. See LICENSE.
PingoraCloudflare's Rust proxy frameworkThe async runtime SBproxy is built on. The sbproxy-core crate plugs into Pingora's request_filter, response_filter, and response_body_filter lifecycle.
CELCommon Expression LanguageGoogle's expression language. Used for per-origin policy rules, request modifiers, and response transforms. Powered by cel-rust.
Lua / LuauLua and Roblox's Luau dialectThe scripting hook surface for request modifiers and transforms, sandboxed via mlua. Configured under lua_script: blocks.
QuickJSBellard's QuickJS engine, via rquickjsThe JavaScript hook surface for request and response modifiers. Configured under js_script: blocks.
WASM / wasmtimeWebAssembly + Bytecode Alliance runtimeThe WebAssembly hook surface (WASI). Configured as a transforms entry with type: wasm. Ship custom modules in any language that compiles to WASI.
L2 cacheLayer-2 cache backendA shared-state backend (Redis today) that turns rate-limit counters and response-cache entries into cluster-wide state. Configured under proxy.l2_cache_settings.
Cache ReserveLong-tail cold cache tierA second cache tier sitting under the per-origin response cache. Sample-rate driven mirroring; admission gate by min TTL and size; promotion-on-hit. Configured under proxy.cache_reserve.

See also