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.
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.
npx skills add ax-llm/ax --skill ax-playbookgit clone --depth 1 https://github.com/ax-llm/axWrote 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.
[](https://agentmods.dev/skills/ax-llm/ax/ax-playbook)<a href="https://agentmods.dev/skills/ax-llm/ax/ax-playbook"><img src="https://agentmods.dev/badge/skills/ax-llm/ax/ax-playbook/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.
<a href="https://agentmods.dev/skills/ax-llm/ax/ax-playbook"><img src="https://agentmods.dev/badge/skills/ax-llm/ax/ax-playbook.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00070 | $0.01811 |
| Opus 5 | $0.00035 | $0.00905 |
| Sonnet 5 | $0.00014 | $0.00362 |
| Haiku 4.5 | $0.00007 | $0.00181 |
Grade A, and why
ax-playbook 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 2d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 126 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Playbook Codegen Rules (@ax-llm/ax)
Use this skill to generate context-playbook code. A playbook grows an evolving body of task knowledge and renders it into a program's context. The evolution engine (ACE — Agentic Context Engineering) is hidden behind playbook(...), exactly as optimize(...) hides its optimizer. Prefer the playbook(...) concept; only reach for AxACE directly when the user explicitly wants the low-level engine.
Use These Defaults
- Create with
playbook(program, { studentAI, teacherAI? }); it returns anAxPlaybookhandle. - Grow offline with
await pb.evolve(examples, metric)— returns{ bestScore, playbook }. - Grow online with
await pb.update({ example, prediction, feedback })— no metric needed. - Apply with
pb.applyTo(program)(defaults to the bound program). - Persist with
pb.toJSON()and restore withplaybook(program, opts).load(snapshot). - Inspect with
pb.render()(markdown) andpb.getState()({ playbook, artifact }). - For agents use
agent.playbook({ target: 'actor' | 'responder' }); default target is'actor'. - Use a cheaper
studentAIto run the program and an optional strongerteacherAIto reflect/curate. - Prefer
ai(),ax(), andagent()for new code.
Critical Rules
playbook(...)binds to anAxGenprogram;evolve/updateneed that program's signature.evolve()returns only{ bestScore, playbook }. There is no Pareto front and nooptimizedProgram— that isoptimize(...)'s shape, not a playbook's.update({ example, prediction, feedback })requires the full{ example, prediction };examplemust match the program's input fields (plus any expected output). Do not pass bare input fields at the top level.update()works without a priorevolve()/load()— the handle hydrates lazily on first use.applyTo()injects a## Context Playbookblock into the program description; calling it repeatedly recomposes from the original base (no stacking).- Keep the offline
metricdeterministic and cheap, like a GEPA metric. - A playbook is plain JSON. Persist
pb.toJSON()andload(...)it into a fresh program for production. - The playbook engine, construction-time agent attachment, failure harvesting, and verified agent evolution are available in TypeScript and the generated Python, Java, C++, Go, and Rust packages. Use each package's native casing and callback types.
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.
- 2d ago Changed db1a1aaa2115
- 6d ago First seen · 126 lines · 70 tokens per session scan A 23c83109dd81
ax-playbook is a skill published in the GitHub repository ax-llm/ax (2,894 stars, last pushed today), licensed Apache-2.0. It adds 70 tokens to every session and 1,811 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-09-03.
Other skills, from other repositories
output-dev-prompt-file
Create .prompt files for LLM operations in Output SDK workflows. Use when designing prompts, configuring LLM providers, or using Liquid.js templating.
output-dev-step-function
Create step functions in steps.ts for Output SDK workflows. Use when implementing I/O operations, error handling, HTTP requests, or LLM calls.
output-meta-project-context
Comprehensive guide to Output.ai Framework for building durable, LLM-powered workflows orchestrated by Temporal. Covers project structure, workflow patterns, steps, LLM integration, HTTP clients, CLI commands, and the full inventory of available agents and skills.
output-dev-eval-testing
Create offline evaluation tests for Output SDK workflows using @outputai/evals. Use when implementing test evaluators with verify(), creating dataset YAML files, building eval workflows, or running workflow tests via CLI.
output-eval-judge-prompt
Design effective LLM judge .prompt files for evaluators. Use when creating judgeVerdict/judgeScore/judgeLabel prompts, or when existing judges produce unreliable results.
output-eval-dataset-design
Design diverse eval datasets using dimension-based variation. Use when bootstrapping eval datasets, when real traces are sparse, or when existing datasets miss edge cases.