// what it is
Your code agent — Claude Code, Cursor, Copilot, or your own — is a smart loop. It reads, thinks, writes. But every session starts from zero. NexusLayer changes that.
Eleven focused services, each solving one problem agents have in production: where do I store memory between sessions? which LLM should I call and how much did it cost? where are my API keys? how do I review code automatically? how do I control my agent from the other side of the world?
They share a single identity layer — one JWT, one login — and speak plain HTTP. Your agent calls them the same way it calls any API. No SDK required.
// the ecosystem
Routes all your LLM calls to Claude, Gemini, or Ollama through one local proxy. Swap providers without changing a single line of your agent code.
your agent sends →
# Anthropic Messages API — unchanged { "model": "claude-sonnet-4", "max_tokens": 1024, "system": "You are...", "messages": [{ "role": "user", "content": "..." }] } # Router picks the active provider # Your code never changes
// data flow guide
Real HTTP calls, real payloads. No SDK, no magic — just plain JSON over HTTP, authenticated with your shared JWT. Each card shows the minimal body your agent needs to send.
// product wiring
These are the built-in flows: when you use one product, it can automatically feed another. Your agent doesn't orchestrate this — the platform does.