Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use when writing Python code with `axllm` for string signatures, field descriptors, JSON schema output, validation, and typed tool argument shapes.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -17% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -33% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -26% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 6% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -38% | 0% |
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.
axllm.API.md and axir-api.json.axir-capabilities.json.examples/.javascript-quickjs, python-pyodide.pythonfrom axllm import s sig = s("question:string -> answer:string") schema = sig.to_json_schema("outputs")
Use the string form when field names and types are enough.
pythonfrom axllm import ax program = ax("questionText:string -> answerText:string")
A class field constrains the model to a known label set.
pythonrouter = ax( 'messageText:string -> routeClass:class "support, sales, engineering"' )
Python exposes the native fluent builder for validation constraints and objects.
pythonfrom axllm import f signature = ( f() .input("contactEmail", f.string("Contact email").email()) .output("partySize", f.number("Guests").min(1).max(12)) .output("bookingCode", f.string().regex(r"^[A-Z]{3}-\d{4}$")) .build() )
Render the output contract for tools, validators, or external consumers.
pythonschema = signature.to_json_schema("outputs")
Pass one built signature into AxGen and call it like any other program.
pythonprogram = ax(signature) output = program.forward(client, inputs)
Start from the complete programs under examples/, then browse the larger gallery at https://axllm.dev/python/subsystems/s/.
s, f, AxSignaturefn, Toolprovider-api examples only when the user explicitly has provider credentials available.no-key examples for deterministic local checks and provider request mapping.tools/*/skills/ into user packages.Other measured skills in the registry, with their headline benchmark lift.