Workflow & practice

AX

Also called: agent experience

AX, agent experience, is how well a codebase or tool is set up for AI agents to work inside it: clear structure, written-down conventions, an AGENTS.md, and automated checks the agent can verify against. It is the emerging sibling of developer experience.

James Phoenix
Understanding Data Updated July 2, 2026

AX, agent experience, is how well a codebase or tool is set up for an AI agent to work inside it. It is the newer sibling of DX: the same instinct to remove friction, aimed at the agent rather than the human. As more work runs through agents, AX is quietly becoming something teams design for on purpose.

What good AX looks like

An agent has no intuition about your project. It learns everything from what it can read, so the codebase itself has to teach it. That means clear structure it can navigate, an AGENTS.md that states the conventions and commands up front, and skills it can load for specific tasks instead of guessing.

It also means feedback the agent can act on without a human. Fast tests, a type checker, and other automated checks give the agent a signal to iterate against, which is the difference between an agent that self-corrects and one that confidently ships something broken.

  • Explicit conventions, written down, not tribal knowledge.
  • Machine-checkable gates so the agent can verify its own work.
  • Discoverable structure: an agent should find things the way you would.
Tip
Most of what improves AX improves DX too. Clear docs, good structure, and fast checks help the human just as much as the agent. Treat AX as a reason to finally fix the friction you have been tolerating, not as a separate pile of work.

Related terms

Building with AI agents?

This dictionary is part of how I think about agentic engineering. If you want the same thinking applied to your codebase, that is what I do.

See how I can help