Skip to content

axm — shared SDK and command launcher

axm provides the shared contracts used by AXM packages and the axm command that discovers their installed tools. It ships no tool of its own. Its only runtime dependency is cyclopts; ecosystem packages are optional.

Start here

Installation

Bash
uv add axm
uv add 'axm[init]'
uv run axm --help
uv run axm init_check --help

The init extra installs axm-init. Other extras are audit, bib, and mcp; all installs these four optional packages, not the whole ecosystem. Quote extras in shells such as zsh.

Python entry point

Python
from axm import ToolResult

result = ToolResult(success=True, data={"count": 3}, text="3 items")
assert result.data["count"] == 3

The package root re-exports the shared SDK contracts. The CLI delegates domain operations to providers; MCP transport belongs to axm-mcp, and DAG scheduling belongs to axm-dag / axm-loom. See the architecture for those boundaries.

This page is the MkDocs home page and is included in the wheel. The repository README is a separate entry point; the complete site is built from docs/.