"Not a browser for humans that AI can use. A browser built for AI that humans can watch." Quick Start • Benchmarks • Architecture • Security • Documentation Traditional browsers (Chrome, Firefox) and automation tools (Playwright, Selenium) were built for human retinas and pixels. Treating a web page as an XML document or an Accessibility Tree is the wrong abstraction for intelligence. Axon is enti
Add this skill
npx mdskills install rennaisance-jomt/axonComprehensive AI-native browser documentation with strong technical depth and clear value proposition
AXON
"Not a browser for humans that AI can use. A browser built for AI that humans can watch."
Quick Start • Benchmarks • Architecture • Security • Documentation
Traditional browsers (Chrome, Firefox) and automation tools (Playwright, Selenium) were built for human retinas and pixels. Treating a web page as an XML document or an Accessibility Tree is the wrong abstraction for intelligence.
Axon is entirely different. It is not an automation library; it is a fundamental integration layer—a sensory cortex for LLMs. It translates the chaotic visual web into a Semantic Intent Space.
Think of Axon as a core LEGO block in your AI infrastructure. It plugs seamlessly into your agent frameworks (via MCP or SDKs) and gives them native, structured understanding of the web.
The biggest bottleneck in AI agent adoption is API cost—spending dollars in tokens just to read a single webpage. Axon guarantees the economic survival of agents.
| Scenario | Standard Browser (Raw HTML) | Axon (Semantic Space) |
|---|---|---|
| Summarize Hacker News | ~50,000 tokens ($2.00) | ~150 tokens ($0.02) |
| Find & Post a Tweet | ~85,000 tokens ($3.40) | ~350 tokens ($0.05) |
| Login to GitHub | ~120,000 tokens ($4.80) | ~500 tokens ($0.08) |
Axon is fundamentally more efficient than standard browser automation. Verified against real-world targets:
| Metric | Axon Performance | Standard Headless | Result |
|---|---|---|---|
| Token Usage | ~100 tokens | ~8,000+ tokens | 98% Reduction |
| Page Latency | 1.2s | 2.7s | 55.5% Faster |
| Boot Time | ~15ms | ~800ms | Sub-50ms Sessions |
| Memory Footprint | ~10MB | ~200MB+ | Massive Density |
Benchmarks verified on Wikipedia and CNN.com (March 2026).
Standard "Agent Browsers" wrap heavy QA-testing tools like Playwright in Node.js or Python, resulting in massive dependency chains, slow boot times, and sluggish execution.
Axon changes the rules of the game at the lowest level:
.woff2), images, video strings, trackers, and ad-networks before they ever hit browser memory. We strip the visual web away, making page loads virtually instantaneous.time.Sleep() or guess when a page is ready. Axon listens to native C++ DOMNodeInserted and AnimationCanceled rendering events. When an agent clicks a button, Axon waits synchronously at the engine level until the element is perfectly stable.There are many great tools in the AI browser space. Here is how Axon compares to other popular approaches:
| Feature | Axon | Stagehand | Lightpanda | Vercel Agent | Skyvern |
|---|---|---|---|---|---|
| Core Tech | Go (Native) | TS/Node.js | Zig (Native) | Rust (Native) | Python/Vision |
| Engine | Optimized Chromium | Standard Chromium | Custom (Unique) | Headless Chrome | Computer Vision |
| Logic | Semantic Graphs | Hybrid/Playwright | Pure Runtime | Snapshot JSON | Visual Analysis |
| Security | Built-in Vault | App Layer | Sandbox | CLI-based | System-level |
| Main Advantage | Native Efficiency | Ease of Use | Ultra-Low RAM | Developer Speed | Adaptability |
Axon is built in pure Go with a unique modular architecture designed for agents:
graph TD
V[Layer 6: Visual Debugger
Real-time Perception Overlay] --> A
A[Layer 5: Agent Interface
REST API / MCP / Python / Node.js] --> B
B[Layer 4: Axon Intelligence
Semantic Graphs / Intent Classifier] --> C
C[Layer 3: Axon Security
SSRF Guard / Action Classifier] --> D
D[Layer 2: Control Server
Session Pool / State Management] --> E
E[Layer 1: Browser Runtime
Optimized Chromium / Go-Rod]
style V fill:#333333,stroke:#ffffff,stroke-width:2px,color:#ffffff
style A fill:#333333,stroke:#ffffff,stroke-width:2px,color:#ffffff
style B fill:#333333,stroke:#ffffff,stroke-width:2px,color:#ffffff
style C fill:#333333,stroke:#ffffff,stroke-width:2px,color:#ffffff
style D fill:#333333,stroke:#ffffff,stroke-width:2px,color:#ffffff
style E fill:#333333,stroke:#ffffff,stroke-width:2px,color:#ffffff
Axon provides a complete toolkit to bring production-grade browser capabilities to your agents:
Currently, AI is strapped to a browser designed for humans. We are wasting compute parsing pixels, flexboxes, and Javascript UI state. The internet is built for human consumption. Axon creates an invisible, machine-to-machine version of the internet that LLMs can naturally perceive, without losing the ability to interact with dynamic web apps. Read the full manifesto in docs/VISION.md.
Because Axon makes interactions 98% cheaper and 10x more stable, entirely new agent architectures become possible:
Read more examples in docs/USE_CASES.md.
Requires Go 1.22+.
# Clone the vault
git clone https://github.com/rennaisance-jomt/axon.git
cd axon
# Build the binary
make build
./bin/axon
Axon speaks pure REST. Any language can control it.
# Create a session
curl -X POST http://localhost:8020/api/v1/sessions -d '{"id": "demo"}'
# Navigate & Analyze
curl -X POST http://localhost:8020/api/v1/sessions/demo/navigate -d '{"url": "https://news.ycombinator.com"}'
curl -X POST http://localhost:8020/api/v1/sessions/demo/snapshot
Axon is designed to slip perfectly into your existing reasoning loop:
from axon.langchain import AxonBrowserToolkit
from langchain.agents import initialize_agent
# Give the agent its sensory organs
tools = AxonBrowserToolkit(session="x_main").get_tools()
# Let it loose
agent = initialize_agent(tools, llm)
agent.run("Go to Hacker News, find the top AI post, and summarize the comments.")
Standard headless tools force agents to parse miles of useless HTML or accessibility nodes. Axon collapses the web into pure semantic reality.
[new](/new)
[past](/past)
...
Total tokens: ~8,000+. High hallucination risk. Massive API cost.
PAGE: news.ycombinator.com | State: ready
TITLE: Hacker News
NAV:
[n1] new [n2] past [n3] comments [n4] ask [n5] show [n6] jobs [n7] submit
FEED:
[e1] "Show HN: Axon - An AI-native browser" (link)
[e2] "96% token reduction is real" (link)
[e3] "Why traditional browsers fail agents" (link)
ACTIONS:
[a1] login (link) — auth.login
[a2] search (textbox) — search.query
Total tokens: ~85. Ready for immediate LLM reasoning.
Axon is built for the hostile web. It includes native defenses that standard automation lacks:
Axon includes a military-grade secret vault built directly into the engine. Unlike standard browsers where agents might "see" and "leak" credentials, Axon's vault ensures secrets are only injected into the correct domains.
github.com cannot be used on evil-phish.com, even if the agent is tricked.******) from visual snapshots and stream replays.| Guide | Description |
|---|---|
| The Vision | Why the AI-native web matters for the future. |
| Real-World Use Cases | What agents can actually do with Axon. |
| Getting Started | Step-by-step installation and first session. |
| Architecture | Deep technical dive into the 5-layer stack. |
| API Reference | Full REST API specification. |
| Security Model | How we keep your agents (and data) safe. |
Axon Project | 2026
An AI-native browser built with for AI agents.
Install via CLI
npx mdskills install rennaisance-jomt/axonAXON is a free, open-source AI agent skill. "Not a browser for humans that AI can use. A browser built for AI that humans can watch." Quick Start • Benchmarks • Architecture • Security • Documentation Traditional browsers (Chrome, Firefox) and automation tools (Playwright, Selenium) were built for human retinas and pixels. Treating a web page as an XML document or an Accessibility Tree is the wrong abstraction for intelligence. Axon is enti
Install AXON with a single command:
npx mdskills install rennaisance-jomt/axonThis downloads the skill files into your project and your AI agent picks them up automatically.
AXON works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Codex, Gemini Cli, Amp, Roo Code, Goose, Opencode, Trae, Qodo, Command Code. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.