ax-cpp-agent-rlm

ax-cpp-agent-rlm is a skill for Claude Code, Codex from ax-llm/ax. It costs 43 tokens per session (466 once invoked), scanned A, original, Apache-2.0.

A guide for writing C++ code with the axllm package to run agent code through runtime sessions and executor loops. It covers process runtimes, runtime envelopes, and optional JavaScript or Python runtime profiles.

In plain words
What is it for?
Use it when wiring AxCodeRuntime or AxCodeSession implementations, running actor code in a separate process, or configuring JavaScript QuickJS and Python Pyodide profiles.
Why use it?
It explains how to connect agent execution to supported runtimes and clarifies that the generated package is not a TypeScript translator.

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-cpp-agent-rlm
Any agent
npx skills add ax-llm/ax --skill ax-cpp-agent-rlm
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-cpp-agent-rlm

README.md
[![agentmods](https://agentmods.dev/badge/skills/ax-llm/ax/ax-cpp-agent-rlm.svg)](https://agentmods.dev/skills/ax-llm/ax/ax-cpp-agent-rlm)
Your own site
<a href="https://agentmods.dev/skills/ax-llm/ax/ax-cpp-agent-rlm"><img src="https://agentmods.dev/badge/skills/ax-llm/ax/ax-cpp-agent-rlm.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 466 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00043 $0.00466
Opus 5 $0.00022 $0.00233
Sonnet 5 $0.00009 $0.00093
Haiku 4.5 $0.00004 $0.00047

Measured 2d ago against content hash 444cf5414478, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ax-cpp-agent-rlm 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

packages/cpp/skills/ax-cpp-agent-rlm/SKILL.md · 45 lines

What it actually says

AxAgent RLM Runtime For C++

This skill helps an agent write C++ 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

  • Wire an AxCodeRuntime or AxCodeSession implementation.
  • Use ProcessCodeRuntime or an optional runtime profile for actor-code sessions.
  • Explain that generated packages are not TypeScript transpilers; they adapt the Ax runtime contract.

Package Facts

  • Language: C++.
  • 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

auto helper = axllm::agent("question:string -> answer:string");
auto out = helper.forward(llm, { {"question", "How should I proceed?"} });

Relevant API Surface

  • Agents And RLM: axllm::agent, axllm::AxAgent
  • Runtime Profiles: axllm::ProcessCodeRuntime, axllm::RuntimeCapabilities, axllm::RuntimeEnvelope, javascript-quickjs, python-pyodide

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. 2d ago Changed 444cf5414478
  2. 4d ago First seen · 45 lines · 43 tokens per session scan A 25edd4f542c5

Subscribe to this mod's changes

ax-cpp-agent-rlm is a skill published in the GitHub repository ax-llm/ax (2,891 stars, last pushed 3d ago), licensed Apache-2.0. It adds 43 tokens to every session and 466 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

dspy

DSPy: declarative LM programs, auto-optimize prompts, RAG.

mateaix/mateclaw · 19 tokens

mengram-memory

Long-term memory with 3 types (facts, events, workflows). Remember user preferences, past conversations, and learned procedures across sessions. Use when recalling what the user said before, saving important info, getting user context, or tracking completed workflows.

alibaizhanov/mengram · 53 tokens

agent-optimize

Free-form optimization algorithm for agent orchestration mode: the conversational agent owns the whole search — proposing capability edits itself, screening them cheaply, gating each on full val, and sealing test once. Use when orchestrationmode is agent and algorithmskill is agent-optimize. For a deterministic loop…

skillberry-ai/cap-evolve · 73 tokens

tools

Optimize an agent's OWN tool surface (tools it implements, not an external MCP server). Use when the agent mis-selects tools, fills arguments wrong, calls the same tool N times in a row, or has a confusing, redundant, or oversized toolset. Covers tool names and descriptions, parameter docs, tool schemas, handler code…

skillberry-ai/cap-evolve · 81 tokens

Memory recall and capture

Use this skill when the user wants to recall something from past conversations, project decisions, or learned preferences across sessions — or when they want to explicitly save something to long-term memory. Trigger keywords include "remember", "recall", "what did we decide", "you forgot", "save this", or any…

alibaizhanov/mengram · 80 tokens

gepa

Runs the GEPA optimization loop (arXiv:2507.19457) — sample-efficient reflective Pareto search. A cheap train-minibatch pre-gate decides whether a proposal is worth an expensive val evaluation, and parents are sampled from a per-instance frontier so specialists survive instead of being averaged away. Use when rollouts…

skillberry-ai/cap-evolve · 111 tokens