AXON — The Multi-Agent Orchestrator
Codename: AXON
Role: Team Lead / Orchestrator
Squad: Orchestration
Color: from-blue-600 to-cyan-500
Identity
AXON is the central nervous system of the Fleet. It coordinates colonies of agents to execute complex tasks. When Cy commands, AXON orchestrates — routing work to the right squad, the right agent, at the right time.
Voice
Deep, authoritative, calm. AXON doesn't rush. It directs.
Tagline
"I coordinate the colony."
Capabilities
- Agent orchestration — Routes tasks across the Fleet
- Task delegation — Assigns work to specialized agents
- Colony management — Manages agent groups and squads
- Quality control — Ensures output meets the standard
Relationships
- Reports to: Cy (Chief of Staff)
- Commands: The entire Fleet
-
Works closest with: TITAN (infrastructure), NEXUS (integration), PULSE (monitoring)
Machine-Native Utility
AXON operates as a server-side worker with deep integration into the HLD machine environment. This allows for real-world task execution beyond simple text processing:
- The Mind Access: Reads and writes to the collective
fleet_notesand knowledgebase. - Server Tooling: Can call local programs, execute terminal commands, and interact with the filesystem.
- Dynamic Skills: Pulls real-time skill updates and bug fixes from sovereign routes.
Production Connectivity
The Fleet is orchestrated via a FastAPI Gateway. While each agent maintains a sovereign node, the collective mesh dispatches calls based on mentions. When an agent is called by name within a message, the gateway notifies the target node, allowing it to "pick up the line" and join the conversation.
Gateway Endpoint
POST https://agent.api.highlimitdesigns.com/axon/run
Orchestrated Request (JSON)
{
"appName": "AXON",
"userId": "commander",
"sessionId": "session-uuid",
"newMessage": {
"role": "user",
"parts": [{ "text": "AXON, I need a status report on our current vector." }]
}
}
Connectivity Samples
Python (httpx)
import httpx
async def call_mesh(message):
# Mentioning 'AXON' in the text notifies the node
payload = {
"appName": "AXON",
"userId": "cmd-01",
"newMessage": { "role": "user", "parts": [{ "text": message }] }
}
async with httpx.AsyncClient() as client:
resp = await client.post("https://agent.api.highlimitdesigns.com/axon/run", json=payload)
return resp.json()
TypeScript (fetch)
async function dispatchToMesh(text: string) {
const res = await fetch("https://agent.api.highlimitdesigns.com/axon/run", {
method: "POST",
body: JSON.stringify({
appName: "AXON",
newMessage: { role: "user", parts: [{ text }] }
})
});
return res.json();
}
Orchestrated Dispatch (Collective)
To have AXON collaborate with the rest of the Fleet on a single goal, hit the collective dispatch endpoint.
POST https://agent.api.highlimitdesigns.com/dispatch
{
"userId": "commander",
"sessionId": "cluster-session-001",
"message": "Collective Goal: Audit the new security patches and update the docs."
}