01–06 · About 5 minutes
Software now has three experiences to design for.
Humans get a UX. Developers get a DX. The newest reader gets an AX — and most platforms haven’t built one yet.
01 — Three experiences
UX. DX. AX.
AX isn’t UX simplified, or DX automated. It’s a third reader with its own requirements.
02 — What this looks like
Things you can now just ask for.
Each of these is a real sentence someone can type into an AI coding assistant today.
❭ Install EigenVertex on this Ubuntu server.
The assistant reads the deployment knowledge, asks what it doesn’t know, and installs it.
❭ Configure EigenVertex for a private VPC, no external traffic.
The assistant adjusts the deployment itself, not just a settings page.
❭ Integrate EVTX into this Next.js app.
The assistant wires the API client, auth and error handling — not a generic snippet.
❭ Build an EVTX chat panel inside our existing dashboard.
The assistant generates components, streaming and styling that match the app, not a demo.
❭ Connect EVTX to our MCP agent.
The assistant wires the MCP server using the same contract a human developer would call.
❭ Why is this EVTX deployment slow today?
The assistant reads the runbooks, checks the architecture, and reports what changed.
None of these are chatbot tricks. They’re tasks an assistant can actually finish.
03 — The Agent Kit
A second set of docs — written for a reader that doesn’t skim.
Human documentation is written to be read in order, with judgment filling the gaps. An agent doesn’t fill gaps — it needs the gap itself written down.
The EVTX Agent Kit is a structured set of knowledge assets built for that reader: precise, scoped, and meant to be executed against, not just read.
evtx-agent-kit /
These aren’t documentation for humans who happen to skim faster. They’re knowledge assets built to be consumed by something that doesn’t skim at all.
04 — Executable documentation
Documentation an assistant can run, not just read.
A human reads install.md and does the work. An assistant reads install.md and does the work too — the difference is it can ask, decide and act in the same pass.
That’s the whole idea behind executable documentation: the document isn’t a description of the task. It’s close enough to the task that an agent can execute it directly.
“Install EigenVertex on this Ubuntu server.”
The assistant isn’t guessing from a blog post. It’s following the same source a human engineer would have used.
05 — From API to agent
The API is the foundation. The Agent Kit is what’s built on it.
Each layer below is a real, separate building block — not a rebrand of the one above it.
The API was never the ceiling. It was the foundation everything else here gets built on.
06 — What’s next