Skip to main content
If you build against Nomos with an AI agent (a coding assistant, an internal ops bot, an autonomous integration), you can hand it a skill that teaches it the API in one shot: the base URL, OAuth, versioning, pagination, filtering, error handling, and every endpoint grouped by the scope it needs. The agent then makes correct calls without you pasting docs into each prompt. The skill is scope-aware. It separates the read surface (every GET, available to a read:* token) from the write surface (mutating calls, which need write:*), so an agent holding a read-only key knows up front which endpoints it can use and treats the rest as unavailable.

Install the skill

The skill follows the Agent Skills format: a SKILL.md file with a name, a description, and a body the agent loads when the description matches the task.
1

Get the skill file

Copy the skill from the code block at the bottom of this page and save it as SKILL.md inside a folder named nomos-api.
2

Drop it where your agent looks for skills

For the Claude Agent SDK, point your agent at the same skills directory. For Cursor or another assistant, add the file to its rules or context directory.
3

Let the agent use it

The agent loads the skill when a task matches its description (building or debugging a Nomos integration). Ask it to call the API as usual; it now knows the endpoints and conventions.
Every page on this site can be sent straight to Claude, ChatGPT, or Cursor with the menu at the top right. The skill packages that knowledge into one reusable file instead.

What the skill knows, and what it defers

The skill carries the stable, conceptual knowledge: which endpoints exist, what they do, how auth and scopes work, and the shared conventions for pagination, filtering, and errors. It does not hard-code field-level request and response schemas, which change per version. Instead it points the agent at the live OpenAPI spec for the version it targets:
So the skill is the map and the spec is the source of truth for exact fields. An agent that follows it fetches the spec before constructing a call.
The skill defaults guidance to the latest stable version, 2026-05-27.curie. Earlier versions use different route names for invoices, meter readings, market partners, and usage; the skill calls out where version matters.

The skill

Save everything below as nomos-api/SKILL.md.
SKILL.md