axi

Routes agent tasks to agent-ergonomic AXI command-line tools across domains.

31|5|Updated Mar 12, 2026
One-click install
npx skills add https://github.com/MoizIbnYousaf/marketing-cli --skill axi-moizibnyousaf
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: axi
Source: https://github.com/MoizIbnYousaf/marketing-cli/tree/main/skills/axi
Command: npx skills add https://github.com/MoizIbnYousaf/marketing-cli --skill axi-moizibnyousaf

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Agents waste tokens and fail tasks when using raw CLIs or eager MCP servers for domains like GitHub, browser automation, and databases. This Skill routes each task to the right Agent eXperience Interface (AXI) tool, which benchmarks show beats raw CLI and MCP on success rate, cost, duration, and turns. ## Core Features & Use Cases - Domain-based routing: Maps needs like GitHub PR triage, browser automation, Slack, Notion, AWS, Docker, Kubernetes, and databases to the correct official or community AXI (e.g. gh-axi, chrome-devtools-axi, glab-axi). - Zero-install execution: Runs AXIs via npx -y with content-first invocation, following the help[] next-step templates each AXI emits. - CLI build and review guidance: Applies the 10 AXI principles (TOON output, minimal schemas, structured errors, ambient hooks) when designing or reviewing agent-facing CLIs. - Use Case: When asked to investigate a failing CI run, the Skill selects gh-axi instead of raw gh or GitHub MCP, explains the choice, and runs the triage with fewer tokens and higher success. ## Quick Start Ask the agent to check open pull requests or automate a browser task and let it route through the appropriate AXI tool.

Frequently Asked Questions about axi

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

FAQPage Schema
How do I choose between AXI, MCP, and raw CLI for agent tasks?▼

Prefer the AXI when a catalog entry exists for the domain, since benchmarks show higher success and lower cost than raw CLI or MCP. Fall back to raw CLI when no AXI exists, and reserve MCP for domains with no AXI and no decent CLI.

How do I run gh-axi or chrome-devtools-axi without installing them?▼

Run them with npx -y, for example npx -y gh-axi or npx -y chrome-devtools-axi, which requires no global install. GitHub tasks need gh auth login first; global install plus setup hooks is an optional later step.

What is the difference between gh-axi and the GitHub MCP server?▼

gh-axi achieved 100% success at about $0.050 per task versus roughly 82-87% for GitHub MCP variants, with about 57% fewer input tokens. MCP schema overhead adds cost every turn, so the AXI is preferred for GitHub work.

When should I not use chrome-devtools-axi for web tasks?▼

Avoid it for static URL fetches or open-ended web search, where firecrawl, exa-contents, or exa-search are cheaper. Use chrome-devtools-axi for interactive browsing like clicking, form filling, and table extraction.

How do I build a CLI that agents can use reliably?▼

Follow the 10 AXI principles: TOON output, minimal default schemas, truncation with --full, pre-computed aggregates, definitive empty states, structured errors, ambient hooks, content-first no-args views, contextual help templates, and per-subcommand --help.

Why does an AXI command fail with an unknown flag error?▼

AXIs reject unknown flags with exit code 2 and list the valid flags so the agent self-corrects in one turn. Run the subcommand with --help or follow the inline valid-flag list instead of guessing flags.