evorxa

How the agent thinks about your boxes

Plain-English requests, structured intent, deterministic shell. A walkthrough of what happens between you typing a sentence and the box doing the right thing.

May 12, 20261 min read

The agent does not run a shell on your behalf. It builds a structured plan, asks for confirmation on anything destructive, and then executes inside a sandboxed runner with idempotent steps.

Why not SSH

An SSH session is a vague API. Two operators can both type nginx -s reload and mean different things by it. We trade the freedom of an open shell for a smaller, reviewable set of intents.

What you can ask

  • install software and serve it on a port
  • diagnose why a service is restarting
  • tail logs since a specific event
  • open a port, restart a unit, run apt updates
If the operation is destructive, the agent stops and asks. If it is reversible, it just goes.