ax-go-agent-observability

ax-go-agent-observability is a skill for Claude Code, Codex from ax-llm/ax. It costs 50 tokens per session (1,139 once invoked), scanned A, original, Apache-2.0.

Go guidance for using the Ax package to observe language-model agents in production. It covers traces, usage accounting, action logs, runtime diagnostics, replay, and debugging.

In plain words
What is it for?
Tracing agent runs, attributing usage by tenant or request, recording model and tool activity, inspecting runtime state, replaying behavior, and diagnosing agent loops.
Why use it?
Agent runs can be difficult to understand and bill across users or tenants without centralized records of model calls, actions, and runtime progress.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Tracing agent runs, attributing usage by tenant or request, recording model and tool activity, inspecting runtime state, replaying behavior, and diagnosing agent loops.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ax-llm/ax/ax-go-agent-observability
About the project

Ax is a TypeScript-first programming framework for building applications with large language models through typed generation, agents, workflows, and optimization tools. It is intended for developers who want one model for LLM programs across TypeScript, Python, Java, C++, Go, Rust, and other runtimes.

ax-llm/ax · 2,894 stars · on GitHub · axllm.dev

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ax-llm/ax --skill ax-go-agent-observability
Clone the repo
git clone --depth 1 https://github.com/ax-llm/ax

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ax-go-agent-observability

README.md
[![agentmods](https://agentmods.dev/badge/skills/ax-llm/ax/ax-go-agent-observability/github.svg)](https://agentmods.dev/skills/ax-llm/ax/ax-go-agent-observability)
Your own site
<a href="https://agentmods.dev/skills/ax-llm/ax/ax-go-agent-observability"><img src="https://agentmods.dev/badge/skills/ax-llm/ax/ax-go-agent-observability/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ax-go-agent-observability

Your own site · 80×15
<a href="https://agentmods.dev/skills/ax-llm/ax/ax-go-agent-observability"><img src="https://agentmods.dev/badge/skills/ax-llm/ax/ax-go-agent-observability.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,139 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.01139
Opus 5 $0.00025 $0.00570
Sonnet 5 $0.00010 $0.00228
Haiku 4.5 $0.00005 $0.00114

Measured today against content hash ec0c82e16c51, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

ax-go-agent-observability scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/go/skills/ax-go-agent-observability/SKILL.md · 68 lines

How it starts

The opening of the file, as written. The whole thing — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AxAgent Observability For Go

This skill helps an agent write Go code with the generated Ax package github.com/ax-llm/ax/packages/go. Use the generated package API, examples, and manifests; do not import TypeScript-only APIs unless you are editing the TypeScript package.

When To Use

  • Inspect agent traces, runtime envelopes, usage, or action logs.
  • Register the process-wide usage observer and attribute model calls by tenant, user, request, run, or feature.
  • Attach callbacks for model/tool activity and runtime progress.
  • Debug agent loops through generated package state and examples.

Package Facts

  • Language: Go.
  • Package: github.com/ax-llm/ax/packages/go.
  • Package API docs: API.md and axir-api.json.
  • Capability manifest: axir-capabilities.json.
  • Runnable examples: examples/.
  • Real network support: yes.
  • Scripted no-key transport support: yes.
  • Runtime profiles: javascript-goja.

Core Pattern

helper := ax.NewAgent("question:string -> answer:string", nil)
out := helper.Forward(llm, map[string]ax.Value{"question": "How should I proceed?"}, nil)

Centralized Usage Observer

Use the process-wide usage observer for application accounting across many agents, API routes, tenants, and users. Keep per-agent usage accessors for inspecting one agent instance after a run.

axllm.SetUsageObserver(func(event axllm.AxUsageEvent) {
    usageQueue.Enqueue(event)
})
// Later: axllm.SetUsageObserver(nil)
  • The observer receives one normalized event for each completed chat or embedding call that reports provider usage. A fully consumed stream emits once; an unconsumed or cancelled stream may not emit.
  • Events include the operation, AI/provider name, model, normalized tokens, streaming flag, optional usage context, and available session or remote request IDs.
  • Attach usageContext in AI service options for stable application or environment defaults. Attach it in call or agent-forward option maps for tenant, user, request, run, and feature attribution.
  • Per-call context overrides service defaults. Nested attributes are shallow-merged.
  • The observer is process-wide, best-effort, and fail-open. Registering again replaces the previous observer. Clear it during test teardown or shutdown when appropriate.
  • The observer runs on the request path. Production callbacks should synchronously enqueue into a bounded concurrent queue and return immediately, then persist or aggregate out of band. Use a shared durable pipeline across processes or serverless instances.
  • Keep identifiers opaque and attributes low-cardinality. Do not attach prompts, responses, secrets, or other sensitive payloads.
  • Calculate currency cost downstream against a versioned provider/model pricing table.
  • Runnable provider example: src/examples/go/generation/usage_observer.go.

Read the full file on GitHub · 68 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed ec0c82e16c51
  2. yesterday Changed 5e3efda66aaa
  3. 3d ago Changed db0d9f7b7ffe
  4. 8d ago Changed a2c7bc6670cb
  5. 10d ago First seen · 68 lines · 50 tokens per session scan A 95bf29c3cd6f

Subscribe to this mod's changes

ax-go-agent-observability is a skill published in the GitHub repository ax-llm/ax (2,894 stars, last pushed yesterday), licensed Apache-2.0. It adds 50 tokens to every session and 1,139 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.