ax-agent

Create AI agents with AxAgent supporting tool integration and recursive language model processing.

Updated Feb 15, 2026
One-click install
npx skills add https://github.com/eycjur/wandb_agent_hackathon --skill ax-agent-eycjur
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ax-agent
Source: https://github.com/eycjur/wandb_agent_hackathon/tree/main/llm-as-a-judge-mvp/.claude/skills/ax-agent
Command: npx skills add https://github.com/eycjur/wandb_agent_hackathon --skill ax-agent-eycjur

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill simplifies the creation and management of AI agents, enabling complex agent hierarchies, tool integration, and efficient handling of long contexts.

Core Features & Use Cases

  • Agent Creation: Define agents with structured inputs and outputs using a fluent API.
  • Tool & Child Agent Integration: Seamlessly incorporate external tools and compose agents into sophisticated hierarchies.
  • RLM Mode: Process arbitrarily long documents by breaking them down into manageable code execution and LLM queries.
  • Use Case: Develop a multi-agent system where one agent handles user queries, another performs web searches using a tool, and a third summarizes the findings, all orchestrated by the AxAgent framework.

Quick Start

Use the ax-agent skill to create a new agent named 'myAgent' that takes a string input 'userQuestion' and returns a string output 'responseText'.

Frequently Asked Questions about ax-agent

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a multi-agent system for handling complex workflows?

You can build a multi-agent system by using a fluent API to define agents with structured inputs and outputs, then composing them into hierarchies with shared fields and integrated external tools for orchestrated execution.

What is recursive language model processing for long contexts?

Recursive language model (RLM) processing handles arbitrarily long documents by breaking them down into manageable code execution and LLM queries, enabling efficient long context processing without losing information.

How do I integrate external tools into an AI agent framework?

You integrate external tools into an AI agent framework by defining agents with a fluent API and incorporating external tools directly, allowing agents to perform actions like web searches and return structured outputs.

Can I run sandboxed code execution within an AI agent?

Yes, you can run sandboxed code execution environments within agents, which is specifically used during recursive language model processing to safely execute code when breaking down long documents.

Does this AI agent framework support shared fields across multiple agents?

Yes, the framework supports shared fields across multiple agents, enabling global agents within sophisticated hierarchies to access common data and coordinate complex multi-agent workflows effectively.

What is the best way to process arbitrarily long documents with AI agents?

The best way to process arbitrarily long documents is using RLM mode, which breaks down long texts into manageable code execution and LLM queries to handle extensive context efficiently.