AI Coding Agents
Zuplo ships version-matched documentation inside the zuplo npm package,
allowing AI coding agents to reference accurate, up-to-date APIs and patterns.
An AGENTS.md file at the root of your project directs agents to these bundled
docs instead of their training data.
For task-specific playbooks and Zuplo capabilities beyond documentation lookup, see:
- Agent Skills — install the official skills from
zuplo/tools. - Docs MCP Server — real-time search and Q&A across the full Zuplo documentation.
- Developer API MCP Server — manage your Zuplo account programmatically from agents.
How it works
Installing zuplo bundles the full Zuplo documentation at
node_modules/zuplo/docs/. The bundled docs cover policies, handlers, concepts,
guides, CLI reference, and more:
Code
This means agents always have access to docs that match your installed version with no network request or external lookup required.
The AGENTS.md file at the root of your project tells agents to read these
bundled docs before writing any code. Most AI coding agents — including Claude
Code, Cursor, GitHub Copilot, Windsurf, and others — automatically read
AGENTS.md when they start a session.
Getting started
New projects
Creating a new project with create-zuplo-api generates the AGENTS.md and
CLAUDE.md files automatically. No additional setup is needed:
Code
Existing projects
Ensure you are on zuplo version 0.66.0 or later, then add the following
files to the root of your project.
AGENTS.md contains the instructions that agents read:
AGENTS.md
CLAUDE.md uses the @ import syntax to include AGENTS.md, so
Claude Code users get the same
instructions without duplicating content:
CLAUDE.md
Understanding AGENTS.md
The default AGENTS.md contains a single, focused instruction: read the
bundled docs before writing code. This is intentionally minimal — the goal is
to redirect agents from stale training data to the accurate, version-matched
documentation in node_modules/zuplo/docs/.
The bundled docs include guides, API references, policy schemas, and handler documentation. When an agent encounters a task involving routing, policies, authentication, rate limiting, or any other Zuplo feature, it can look up the correct configuration in the bundled docs rather than relying on potentially outdated training data.
You can add your own project-specific instructions to AGENTS.md or CLAUDE.md
alongside the Zuplo defaults.
Going further
Once AGENTS.md is in place, layer on the rest of Zuplo's agent tooling:
- Install the official skills for task-specific playbooks on project setup, policies, handlers, monetization, and more.
- Add the Docs MCP server for real-time search and Q&A across the full documentation.
- Add the Developer API MCP server to let agents drive your Zuplo account — deploy, manage API keys, inspect logs, and more.
Summary
The recommended setup, in priority order:
- Bundled docs — always available at
node_modules/zuplo/docs/, version-matched, no setup required beyondAGENTS.md. - Agent skills — task-specific guidance from
zuplo/tools. - MCP servers — real-time docs search and programmatic gateway management.