Route compatible LLM traffic across accounts you control.
  • Rust 89.8%
  • HTML 7.8%
  • Shell 1.1%
  • Dockerfile 0.7%
  • Python 0.6%
Find a file
2026-09-09 07:55:58 +00:00
.forgejo/workflows ci: publish metadata-only RC1 evidence bundle 2026-09-05 00:35:49 +02:00
.github ci: isolate multi-arch release smoke pulls 2026-09-09 02:38:38 +02:00
docs docs: record rc13 live canary 2026-09-09 09:46:47 +02:00
examples fix: separate client auth from OAuth refresh ownership 2026-09-08 12:34:22 +02:00
schema chore: move public home to IggyGG 2026-09-08 09:58:10 +02:00
scripts ci: isolate multi-arch release smoke pulls 2026-09-09 02:38:38 +02:00
src fix(admin): embed branded favicon 2026-09-09 06:18:08 +02:00
tests fix(admin): embed branded favicon 2026-09-09 06:18:08 +02:00
.dockerignore docs: publish operator and adoption handbook 2026-09-04 12:24:56 +02:00
.gitignore docs: establish public project contract 2026-09-04 11:01:13 +02:00
AGENTS.md docs: state release provenance precisely 2026-09-08 11:51:06 +02:00
Cargo.lock chore: prepare v0.1.0-rc.13 2026-09-09 06:26:03 +02:00
Cargo.toml chore: prepare v0.1.0-rc.13 2026-09-09 06:26:03 +02:00
CODE_OF_CONDUCT.md docs: establish public project contract 2026-09-04 11:01:13 +02:00
CONTRIBUTING.md docs: establish public project contract 2026-09-04 11:01:13 +02:00
deny.toml security: repair public supply-chain gates 2026-09-04 16:47:33 +02:00
Dockerfile fix: disable PIE for static container binary 2026-09-09 01:31:34 +02:00
LICENSE docs: establish public project contract 2026-09-04 11:01:13 +02:00
README.md docs: state release provenance precisely 2026-09-08 11:51:06 +02:00
rust-toolchain.toml security: repair public supply-chain gates 2026-09-04 16:47:33 +02:00
SECURITY.md docs: establish public project contract 2026-09-04 11:01:13 +02:00

LLM Multiaccount Proxy

Forgejo CI

LLM Multiaccount Proxy (llmap) gives teams one Anthropic-compatible endpoint for the Claude accounts and compatible providers they already control.

The project is being extracted from Triform's production Claude proxy into a standalone, provider-neutral Rust service. The first general-availability release targets a secure single-node deployment with:

  • configurable client authentication (off, observe, or enforce);
  • sticky session routing across multiple accounts;
  • Claude OAuth, Anthropic API key, Amazon Bedrock, and configurable Anthropic-compatible upstreams;
  • account-scoped residential proxy chains with explicit failover;
  • a branded browser control plane and operational API;
  • SQLite-backed encrypted state, metrics, health checks, and audit history;
  • both reverse-proxy and HTTPS forward-proxy entry points.

Status

The public repository is in release-candidate development toward its first GA release. The Rust 1.88 service, encrypted account store, reverse data plane, branded control plane, and opt-in HTTPS MITM listener are implemented. Do not place a development snapshot in front of untrusted traffic until the security checklist and soak requirements in GA readiness are complete.

Quick start

cp examples/llmap.toml llmap.toml
export LLMAP_MASTER_KEY="$(openssl rand -base64 32)"
export LLMAP_ADMIN_PASSWORD="$(openssl rand -base64 24)"
llmap config check --config llmap.toml
llmap serve --config llmap.toml

Open http://127.0.0.1:8080/admin/login, add an account, then point an Anthropic-compatible client at http://127.0.0.1:8080. In enforce mode the client sends the current token of any active configured account; that proves membership in the pool, while routing may select a different eligible account.

Start with the quick-start guide, then read configuration, client authentication, and provider adapters.

Existing Claudeproxy operators can import the legacy env-file safely with llmap migrate claudeproxy-env; see the migration guide.

Why it exists

A growing team often has several legitimate Claude or compatible-provider accounts, but every tool still needs one reliable endpoint. llmap turns that fragmented capacity into an observable pool: sticky agent sessions, least-loaded eligible routing, explicit account pause/revoke controls, per-account residential egress, and one control plane. Read the full product story and deployment proposal.

Responsible use

llmap is for routing accounts and provider capacity that you are authorized to use. It is not designed or marketed to bypass provider limits, access controls, terms, or regional restrictions. Operators remain responsible for their provider agreements and for the traffic sent through the proxy.

Source and mirrors

GitHub under IggyGG is the canonical public home. Forgejo is the protected integration authority; reviewed main commits and annotated release tags are published to GitHub, where public releases build checksummed binaries and a keyless-Cosign-signed OCI image with SBOM and provenance.

Documentation

License

Licensed under the Apache License, Version 2.0. See LICENSE.