Public beta — not for production use. Data may be wiped at any time. Questions? Contact us.
Documentation menu

Documentation

Everything you need to build on Axiom: install the CLI, write a node in any language, publish a package, compose a type-safe flow in the canvas, and invoke it via API.

Using an AI coding agent? Point it at /llms.txt (index) or /llms-full.txt (full corpus); every page is also raw markdown at the same URL with .md appended.

Getting started

Concepts

Guides

Create a node in Python
Scaffold a Python package, define protobuf messages, implement a typed node function with AxiomContext, test it with pytest, and push it to Axiom.
Create a node in Go
Scaffold a Go node with the Axiom CLI, implement the handler against generated protobuf types, test it, and run it locally with hot reload.
Create a node in TypeScript
Scaffold, implement, test, and push a TypeScript node with the Axiom CLI, using google-protobuf message classes and AxiomContext.
Create a node in Rust
Scaffold a Rust node package, implement the handler against the AxiomContext trait, run cargo-based tests with axiom test, and push it to the platform.
Create a node in Java
Scaffold a Java package and node with the Axiom CLI, implement the handler against AxiomContext, test it with Maven, and push it to the platform.
Create a node in C#
Scaffold a C# package, implement a unary or pipeline node against IAxiomContext, and run xUnit tests with axiom test — codegen happens at dotnet build via Grpc.Tools.
Import message types from another package
Find a published package with axiom search and axiom info, pull its message types into your package with axiom import, and use them as node inputs and outputs.
Manage secrets in a flow
Store an API key on the console's Secrets page, read it from node code with ax.secrets.get, and know exactly what is and is not encrypted.
Set per-flow config values
Create flow config profiles in the console — node timeout and secret overrides — pick one in the Run dialog or via config_id, and see how resolved values reach nodes.
Publish a flow to the marketplace
Compile a flow.yaml with axiom flow compile, then promote the artifact to the public marketplace with axiom flow publish so other tenants can fork it or import it as a subflow.
Debug a flow
Start a debug session with breakpoints and pause/step controls, inspect each node's input and output on the canvas, and replay any past execution on its detail page.
Use the interactive API docs
Open generated, interactive OpenAPI docs for any flow from the inspector's API section, send test requests from the browser, and fetch the raw openapi.json for codegen.
Build a client SDK
Bundle marketplace nodes and flows into a client in Console → Client Builder, build it into a typed SDK in up to six languages, and call it with an API key from the environment.
Create and manage API keys
Mint, use, and revoke API keys in Console → API Keys, understand what a key can access, and read the Usage page's execution stats.
Inspect agent memory
List, inspect, search, close, and delete agent memory sessions for your flows with the axiom memory CLI commands.
Author packages and flows with Claude Code
Install Axiom's authoring Skills into Claude Code with axiom skills install so your agent knows the create→validate→push→publish loop and drives the axiom CLI through the shell.

Reference