ax-python-playbook

A guide for writing Python programs with axllm's playbook system, which stores and improves reusable instructions for an agent or program. It covers verified updates, feedback-based refinement, and rendering the playbook into program context.

In plain words
What is it for?
Use it to create a playbook, attach it to an agent, learn bounded rules from run results, refine it from examples or feedback, and save or inject it into a program.
Why use it?
It helps developers use the package's documented Python interfaces without mixing them with APIs from another language.

Skill for Claude CodeCodex

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.

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

Made for: Claude Code, Codex.

Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 487 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 86% copy Near-identical to another mod 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 $0.00047 $0.00487
Opus 5 $0.00023 $0.00244
Sonnet 5 $0.00009 $0.00097
Haiku 4.5 $0.00005 $0.00049

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

Security

Grade A, and why

ax-python-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 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.

Origin

This is a copy

86% identical to ax-cpp-playbook — 22 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

packages/python/skills/ax-python-playbook/SKILL.md · 49 lines

What it actually says

Ax Playbook For Python

This skill helps an agent write Python code with the generated Ax package axllm. Use the generated package API, examples, and manifests; do not import TypeScript-only APIs unless you are editing the TypeScript package.

When To Use

  • Grow an evolving context playbook for a program or agent stage with playbook().
  • Attach a seed playbook to an agent and learn bounded avoidance rules from run-end failure signals.
  • Use the agent-bound playbook evolve method to mine grounded weaknesses with verification and exact rollback.
  • Refine a playbook online from live feedback or offline from labeled examples.
  • Render or persist a playbook and inject it into a program context.

Package Facts

  • Language: Python.
  • Package: axllm.
  • 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-quickjs, python-pyodide.

Core Pattern

from axllm import ax, playbook

program = ax("question:string -> answer:string")
pb = playbook(program, {"studentAI": llm})
pb.evolve(examples, metric_fn)

Relevant API Surface

  • Optimizers: optimize, playbook, AxPlaybook, AxBootstrapFewShot, AxGEPA, OptimizerEngine, OptimizerEvaluator

Guardrails

  • Start from package examples for exact native syntax before inventing a new call shape.
  • Use provider-api examples only when the user explicitly has provider credentials available.
  • Use no-key examples for deterministic local checks and provider request mapping.
  • Treat AxIR as the source of generated package truth: if package docs disagree with source code, update the compiler and regenerate packages.
  • Do not copy repo-maintainer skills from tools/*/skills/ into user packages.
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 dd24ddee48d0
  2. 2d ago First seen · 49 lines · 47 tokens per session scan A 9bc62e8fcfa5

Subscribe to this mod's changes

ax-python-playbook is a skill published in the GitHub repository ax-llm/ax (2,890 stars, last pushed yesterday), licensed Apache-2.0. It adds 47 tokens to every session and 487 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to ax-cpp-playbook, differing in 22 lines, and is treated as a copy.

Related

Other skills, from other repositories

adr-skill

Create and maintain Architecture Decision Records (ADRs) optimized for agentic coding workflows. Use when you need to propose, write, update, accept/reject, deprecate, or supersede an ADR; bootstrap an adr folder and index; consult existing ADRs before implementing changes; or enforce ADR conventions. This skill uses…

vercel/ai · 89 tokens

add-harness-package

Guide for adding new AI SDK harness packages. Use when creating a new @ai-sdk/harness- package that adapts a coding-agent runtime to HarnessV1.

vercel/ai · 41 tokens

add-provider-package

Guide for adding first-party AI provider packages to the AI SDK. Use when creating a provider package under packages/ to integrate an external AI service.

vercel/ai · 33 tokens

update-provider-models

Add new or remove obsolete model IDs for existing AI SDK providers. Use when adding a model to a provider, removing an obsolete model, or processing a list of model changes from an issue. Triggers on "add model", "remove model", "new model ID", "obsolete model", "update model IDs".

vercel/ai · 68 tokens

develop-ai-functions-example

Develop examples for AI SDK functions. Use when creating, running, or modifying examples under examples/ai-functions/src to validate provider support, demonstrate features, or create test fixtures.

vercel/ai · 40 tokens

migrate-ai-sdk-v6-to-v7

Migrate applications from AI SDK 6.x to AI SDK 7.0. Use when upgrading Vercel AI SDK packages, fixing v7 migration errors, or when the user mentions AI SDK v6, v7, upgrade, migration, breaking changes, system to instructions, fullStream, telemetry, tool context, or finalStep.

vercel/ai · 79 tokens