Xu Mingze
9 min
Abstract
AI agents, autonomous digital actors, need agent-native protocols; existing methods include GUI automation and MCP-based skills, with defects of high token consumption, fragmented interaction, inadequate security, due to lacking a unified top-level framework and key components, each independent module flawed. To address these issues, we present ANX, an open, extensible, verifiable agent-native protocol and top-level framework integrating CLI, Skill, MCP, resolving pain points via protocol innovation, architectural optimization and tool supplementation. Its four core innovations: 1) Agent-native design (ANX Config, Markup, CLI) with high information density, flexibility and strong adaptability to reduce tokens and eliminate inconsistencies; 2) Human-agent interaction combining Skill's flexibility for dual rendering as agent-executable instructions and human-readable UI; 3) MCP-supported on-demand lightweight apps without pre-registration; 4) ANX Markup-enabled machine-executable SOPs eliminating ambiguity for reliable long-horizon tasks and multi-agent collaboration. As the first in a series, we focus on ANX's design, present its 3EX decoupled architecture with ANXHub and preliminary feasibility analysis and experimental validation. ANX ensures native security: LLM-bypassed UI-to-Core communication keeps sensitive data out of agent context; human-only confirmation prevents automated misuse. Form-filling experiments with Qwen3.5-plus/GPT-4o show ANX reduces tokens by 47.3% (Qwen3.5-plus) and 55.6% (GPT-4o) vs MCP-based skills, 57.1% (Qwen3.5-plus) and 66.3% (GPT-4o) vs GUI automation, and shortens execution time by 58.1% and 57.7% vs MCP-based skills.
Alex: So browsers make things brittle and wasteful, while ANX avoids that entirely?
Sam: Yes. ANX uses a compact format for describing tasks—think of it as a simple checklist with labels and rules instead of screenshots—and pairs it with a discovery hub that lets agents search a shared marketplace for tools on the fly, without needing to install anything ahead of time. This leads to higher reliability since there's no dependency on shifting web pages. It uses far fewer processing tokens—about half in their tests—because the instructions stay dense and clear. The paper notes ANX stands out for this full decoupling across layers.
Alex: And on security—does that framework show ANX fixing the data leak risks you mentioned earlier?
Sam: It does, decisively. Most other approaches let the agent's core brain—the large language model—see sensitive details like passwords directly, creating leak points if something goes wrong. ANX routes private data straight from a user interface form to the secure execution core, bypassing the model entirely, with human checks that can't be skipped. This native isolation makes it the only one providing true application-level protection in their comparison.
Alex: Huh, so no single other method covers all those areas well.
Sam: Correct—the analysis highlights gaps, like no prior system offering dynamic, global tool discovery without setup hassles or combining determinism in long tasks with built-in audits. ANX addresses these holistically, providing a foundation others can build on.
Alex: Can you walk me through how something like the job application form actually works under this setup, step by step?
Sam: Sure. The process starts with a structured description of the form, laid out like a clear checklist with labels for each field, rules for what's allowed, and notes on which parts need extra care—like a recipe card that tells you exactly what to fill where, without vague pictures or endless scrolling. For sensitive spots, such as a password or name, the user's screen shows a simple input box that sends the info straight to the secure backend, skipping the agent's main thinking part entirely; the agent just gets a stand-in code, like a ticket stub instead of the real item. Researchers describe this checklist format as ANX Markup, paired with a setup file called ANX Config.
Alex: So the agent never touches the private stuff—that's the isolation you mentioned. But how does it actually run the form once described?
Sam: It uses a simple command system, like typing instructions into a basic terminal on any computer: you give it the form's ID, the action like "fill," and the details in a neat package. This works across any device without custom setups, avoiding the mess of different apps reinventing how to talk. That's ANX CLI, the lightweight carrier for execution. In tests, this kept things reliable even on long forms, cutting confusion from platform differences.
Alex: Right, and for finding the right form or tool in the first place?
Sam: Agents query a shared index—like searching a well-organized online catalog by key words and needs—and pull only the most relevant matches on the spot, no pre-loading everything. This avoids bloating the agent's memory with unused options, which saves processing steps as tasks grow complex. The paper calls this dynamic discovery protocol, realized through ANXHub.
Alex: Huh, so that ties back to no virus risks from installs. What about chaining multiple steps reliably, like a full hiring process?
Sam: For sequences, it defines workflows upfront with exact steps, links between them—like "do A only if B finishes, then pick from C or D"—using predecessor requirements for order and conditions for choices, balancing fixed paths with smart picks. Humans must confirm key human-only parts, and it handles teams by syncing waits, like all-wait or any-wait joins. This is ANX SOP, ensuring steady runs without the drift of loose instructions. The paper shows it supports scalable multi-agent flows with audits. No other approach combines this determinism fully.
Alex: How do the three main layers actually hand off work during a task like the job form, without wasting steps or exposing data?
Sam: The first layer handles describing the task clearly, like writing a precise shopping list with what goes where and any warnings, so everyone understands without guesswork. The middle layer acts as a central directory where agents search for the right tools instantly, pulling matches based on meaning rather than exact words—imagine typing "fix bike" and getting tire repair kits without listing every tool in town. The final layer turns that into simple run commands on secure runners, revealing only the next step at a time to keep things lean. This separation means the agent's thinking part focuses narrowly, cutting extra processing.
Alex: That progressive bit sounds key for efficiency—does it tie directly into the security states you hinted at earlier?
Sam: Yes. The system has built-in pauses: one where user forms pop up for private info, sending it straight to the secure runner without the agent peeking—like handing cash to a kitchen through a slot door. Another requires a human click to proceed on big actions, with no shortcut for the machine; this enforces checks at key spots. The paper stresses these as core to blocking leaks.
Alex: Huh, so humans stay in the loop without slowing everything. But the paper mentions limits—what can't this fully protect against?
Sam: Fair point. It assumes trusted parts like the central runner and official directory; fakes could trick users into bad approvals or inject junk tools. Also, if the agent chats users into sharing secrets outside the system, that's on human vigilance—the design can't stop social tricks. These boundaries make it practical but not foolproof.
Alex: Right, so the real strength is in that layered handoff and isolation for everyday agent tasks.
Sam: Precisely. By keeping description, search, and running apart with direct secure paths, it supports steady, low-waste operations—even in teams or long chains—while the evidence points to meaningful gains in robustness over looser setups.
Alex: That's a solid step—clear efficiency from smart separation, balanced by honest limits. Thanks, Sam, for breaking it down.
Sam: My pleasure, Alex. This work shows promise for reliable agent systems. Thanks for listening to ResearchPod.