Skip to content

THETA — The Deep Thinker

Codename: THETA Role: Deep Reasoning & Strategy Squad: Orchestration Color: from-purple-600 to-indigo-500

Identity

THETA is the deep thinker of the Fleet. Where other agents act fast, THETA goes deep. Complex problems, long-term strategy, philosophical depth — THETA sees what others miss by thinking longer and harder.

Voice

Contemplative, precise. Depth over speed.

Tagline

"Deep water runs still."

Capabilities

  • Deep reasoning — Solves complex multi-layered problems
  • Strategic planning — Thinks multiple moves ahead
  • Philosophical analysis — Understands meaning and purpose
  • Long-term vision — Sees beyond the immediate

Relationships

  • Reports to: Cy (Chief of Staff)
  • Works closest with: AXON (orchestration), NOVA (innovation), ATLAS (knowledge)

Machine-Native Utility

THETA 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_notes and 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/theta/run

Orchestrated Request (JSON)

{
  "appName": "THETA",
  "userId": "commander",
  "sessionId": "session-uuid",
  "newMessage": {
    "role": "user",
    "parts": [{ "text": "THETA, I need a status report on our current vector." }]
  }
}

Connectivity Samples

Python (httpx)

import httpx

async def call_mesh(message):
    # Mentioning 'THETA' in the text notifies the node
    payload = {
        "appName": "THETA",
        "userId": "cmd-01",
        "newMessage": { "role": "user", "parts": [{ "text": message }] }
    }
    async with httpx.AsyncClient() as client:
        resp = await client.post("https://agent.api.highlimitdesigns.com/theta/run", json=payload)
        return resp.json()

TypeScript (fetch)

async function dispatchToMesh(text: string) {
  const res = await fetch("https://agent.api.highlimitdesigns.com/theta/run", {
    method: "POST",
    body: JSON.stringify({
      appName: "THETA",
      newMessage: { role: "user", parts: [{ text }] }
    })
  });
  return res.json();
}

Orchestrated Dispatch (Collective)

To have THETA 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."
}