Skip to content
@axonpush

axonpush

Real-time event infrastructure for AI agent systems — publish, subscribe, and trace agent activity with sub-100ms latency.

axonpush

Real-time event infrastructure for AI agent systems.

Agents emit events. Those events land durably, fan out to subscribers in real time and to outbound webhooks, and stay searchable and traceable afterwards.

Sending events

Point an existing setup at axonpush rather than rewriting your instrumentation. Three ingest dialects are supported:

  • the native REST API
  • OTLP/HTTP, at /v1/traces and /v1/logs
  • Sentry SDK envelopes, pointed at an axonpush DSN
from axonpush import AxonPush

with AxonPush() as client:
    client.events.publish(
        identifier="research.step",
        channel_id=CHANNEL_ID,
        payload={"query": "who cited this paper", "tokens": 412},
    )

Subscribe to the same channel over MQTT and the event arrives as it is written.

SDKs

Package Registry Install
@axonpush/sdk npm npm install @axonpush/sdk
axonpush PyPI pip install axonpush
AxonPush NuGet dotnet add package AxonPush

All three live in sdks and generate from one OpenAPI contract.

The generated client is the floor, not the product. On top of it sit resource classes, a realtime client, and a shared error tree. Integrations cover LangChain, LangGraph, OpenAI Agents, Anthropic, CrewAI, Mastra, LlamaIndex, Vercel AI, Semantic Kernel, OpenTelemetry, and the usual logging libraries.

Cross-language drift is checked rather than hoped for. CI compares the resource surfaces across languages, so a method that exists in one SDK and not another fails the build.

Wiring it into an existing project

npx @axonpush/wizard

This installs skills into your coding agent. The agent then reads your project, picks the right integration, provisions credentials, and writes .env. It finishes by publishing a test event and reading it back, so you find out immediately if the path is wrong.

Works in Claude Code, Cursor, Codex, and around fifty other agents.

Links

Pinned Loading

  1. ts-sdk ts-sdk Public archive

    Moved to axonpush/sdks (packages/typescript). Archived.

    TypeScript

  2. python-sdk python-sdk Public archive

    Moved to axonpush/sdks (packages/python). Archived.

    Python

  3. wizard wizard Public

    AI-powered CLI (via Claude Code) that installs the AxonPush SDK and wires it into Python or TypeScript agent projects.

    JavaScript

Repositories

Showing 7 of 7 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…