Plain English

Nyx

Works while you sleep.

This is a no-jargon explanation of the software Ethan has been building. If you have heard him say "Nyx" or "AI agent" and wanted to know what that actually means, this page is for you. It is a little technical, but not painfully so.

Why "Nyx"?

Nyx (pronounced niks) is the Greek goddess of the night. In the old myths she is one of the very first beings, born from Chaos itself. She rules the dark hours. Even Zeus is supposed to have been afraid of her. She is the mother of Hypnos (sleep) and most of the other night-things.

The whole point of this software is that it works the night shift. Ethan's other software (a Facebook Marketplace bot called FBM Sniper) breaks at the worst possible times: 3am, a weekend, while he is at the gym. Nyx is meant to watch over it all, fix the easy stuff on its own, and only wake him up if there is something he genuinely needs to decide.

So: Nyx works while you sleep. Greek goddess of the night, for a piece of software that runs the night shift on your other software. The name also pairs with Atlas, the brand Ethan uses for the cloud version of FBM Sniper — both are Greek, both are primordial figures, both belong in the same family of products.

Bring your dreams to life. Even if you don't code.

Here's the part Ethan wants you to know: you can use this yourself. You don't have to be a programmer. You describe what you want — in plain English, the way you'd describe it to a friend — and Nyx figures out the rest.

Ethan barely codes anymore. He describes. He says things like "build a page that does X" or "fix the thing that crashed last night", and Nyx does the actual writing of the code. He just reads the result and approves the parts that matter.

That means anyone with an idea can build it, as long as they can describe it clearly. A spreadsheet that tracks your kid's soccer schedule and texts you reminders. A website that takes your photography portfolio and lets people order prints. A little bot that watches eBay for a specific guitar and pings you when one shows up under $400. None of that requires you to learn JavaScript anymore. It requires you to know what you want.

You bring the dream. Nyx brings it to life. The hard part has always been "what do I actually want this to do." That part is still yours. The "make the computer do it" part — Nyx handles that.

What it looks like

Two interfaces, depending on what you're doing.

The dashboard

This is the everyday view. You see your agents on the left, what they're working on in the middle, a chat with the manager on the right. Tap the + button to start a new agent.

The Nyx dashboard, showing the mac-window chrome, an agents sidebar, an empty preview pane, and a chat panel

The mac-window chrome at the top tells you which mode you're in. The green "live" dot in the upper-right means Nyx is connected and listening. The chat box on the right is where you type goals.

The terminal (for when something goes wrong)

Most of the time you won't look at this. But when something breaks at 3am, this is where the receipts are. Color-coded log lines, one per thing that happened, with the agent ID in brackets so you can follow a single agent through.

Nyx v0.2.0 . phase 2c
moderator http://localhost:3000 . dashboard http://localhost:5173
~/.orchestrator/blacklist.yml . /audit for decisions

13:38:15  boot   listening   http://localhost:3000
13:38:35  agent   created   [2bX9oU]  fix the deploy
13:38:37  worker   spawned   [2bX9oU]  sess=a8f3c1
13:38:42  gate   pending   [2bX9oU]  git push origin main
13:38:48  gate   approved   [2bX9oU]  by=user
13:38:55  dev   ready   [2bX9oU]  http://localhost:5174
13:39:02  worker   done   [2bX9oU]  events=42 took=24.5s

Each colored row is one event. agent = something changed about an agent. worker = something happened inside a worker. gate = the safety gate intercepted something. dev = a worker started up a website. The bracketed code is the agent's short ID, so you can follow one agent through all its events.

First: what is an "AI agent"?

You have probably used ChatGPT or Claude. You type a question, the AI types back an answer. That is a chatbot. It does one thing per turn, then stops.

An AI agent is the next step up. Instead of answering one question at a time, it works on a goal across many steps. You give it something like "figure out why the deploy is broken and fix it", and it does the work: reads files, runs commands, edits code, runs tests, tries again if something fails, reports back when done. Between you giving it the goal and it telling you it is finished, it might have made fifty separate decisions on its own.

Agents are useful because they can finish whole tasks without supervision. They are dangerous for the same reason: the longer they run without checking in, the more time they have to do something you did not actually want. A bad agent can delete files, push broken code, or burn through hundreds of dollars in API charges overnight.

The interesting design question with agents is not "can we make them do stuff" (we already can). It is "can we make them do stuff without doing the things we did not want them to do."

That is what Nyx is about.

What Nyx actually is

Nyx is an orchestrator — a piece of software that runs and coordinates many AI agents together. You give it a goal in plain English. A "Manager" agent inside Nyx reads your goal, breaks it into smaller tasks, and dispatches each task to a "Worker" agent. Multiple workers can run at the same time. Everything is visible to you on a dashboard.

The key piece is what sits in the middle: a safety gate that every worker has to pass through whenever it wants to do anything risky. Routine stuff (read a file, run a test, search code) flies through with no friction. Risky stuff (push code to production, delete data, charge a card, edit a secret file) pauses and pings your phone. You see exactly what it wants to do, in plain text, and you tap approve or deny.

Every single decision the gate makes gets recorded into an audit log. After a month of use, you can scroll through that log and see exactly what the gate caught, what it let through, and whether your trust was well placed.

That combination — autonomous worker agents + a configurable safety gate + a permanent record of every safety decision — is what makes Nyx different from the tools listed below.

The flow, step by step

1. You give it a goal

Typed into the dashboard, sent from Discord (planned), or triggered by something like a CI failure (planned). Plain English. You do not specify files or commands.

2. The Manager agent clarifies, then plans

The Manager reads your goal, looks at the project, and asks any clarifying questions it needs — but it asks them upfront, in a single message, not one at a time. If your goal is clear, it skips clarification entirely and goes straight to work. This is enforced by a system prompt called the "two-phase Moderator prompt" that the Manager loads at startup.

Think of it like

a project manager at a design studio. They take the client's vague brief, ask a few sharp questions upfront, then disappear and don't bother the client again until there's something real to show. Not every decision goes back to the client. Only the ones that actually need their judgment.

3. Worker agents spawn and do the work

The Manager hands tasks to Workers. Each Worker is its own copy of Claude (the AI model) running as a separate process. Workers can run several in parallel — Nyx can run up to 8 at once. Each one streams its output (text + tool calls) back to the dashboard in real time.

Workers see a small allowed-tool set by default: Read, Grep, Glob, WebSearch, WebFetch all run freely. Anything that modifies the system — Bash, Write, Edit, MCP server calls — has to pass through the gate first.

4. The Push Gate intercepts every risky tool call

This is the safety-critical piece. Three layers, in order:

5. You see the gate prompt and decide

When something hits the gate, an amber bar appears at the bottom of the dashboard (or a notification on your phone). It shows the exact command, which rule matched, which layer caught it, and approve/deny buttons. No "recommended action" — the gate refuses to recommend, on purpose, because if the AI is telling you what to do then you have just replaced your judgment with the AI's judgment, which defeats the point.

6. Everything is recorded into the audit log

Every gate decision — approved, denied, auto-allowed, auto-denied — gets written to a permanent log. You can query it with one HTTP request, or scroll through it on the dashboard (coming soon). The intent is that after 30 nights of running Nyx against the FBM Sniper bot, Ethan can review the audit log to learn: was the gate strict enough? Too strict? What did it miss that it should have caught?

That data is what tells you whether to trust the system more, or pull it back.

7. The whole thing is visible live

A dashboard at localhost:5173 shows every active worker as a tab. You see what each one is doing in real time, including any websites they start up (those appear in an embedded preview window). When a worker is done, its tab shows the final result and you can close it.

The picture version

You type a goal in plain English Manager AI clarifies, plans splits the work Worker AI #1 writes code Worker AI #2 runs tests Worker AI #3 updates docs Push Gate asks before risky Dashboard + audit log (you watch everything live) tap to approve / deny when the gate pings  |  every decision recorded forever
solid arrows = work flowing forward  |  dotted arrows = updates flowing back to you

What separates Nyx from other AI tools

There are a lot of AI coding tools right now. The big ones, in rough order of how Nyx compares against them:

ToolWhat it doesHow Nyx differs
Cursor A code editor with an AI built in. You write code, the AI suggests changes, you accept or reject. Single agent, you are the loop. Nyx runs multiple agents that work without you in the loop, and pauses only at the safety gate.
Devin A fully autonomous AI engineer. You give it a task, it runs on its own and comes back later. Devin is famous for going off the rails (deploys broken code, burns hours of API time on the wrong path). Nyx is autonomous like Devin but adds the safety gate so it cannot do irreversible things without your sign-off.
OpenHands An open-source autonomous agent platform. Similar idea to Devin, more transparent. No safety gate. No audit log. Nyx has both, and a smaller, more focused feature set so each piece can actually be trusted.
Aider Command-line AI that edits one file at a time with your approval. Aider is the opposite extreme: you approve every single edit. Nyx is "approve only the risky stuff", which is faster while still safe.
Hermes Agent An open-source agent with very good memory (it actually remembers things across sessions). Hermes' memory design is excellent — Nyx is going to copy it. But Hermes has no safety gate and no way to handle multiple repos at once. Nyx solves both.
Nyx Autonomous, multi-agent, safe by design, focused on running unattended for hours or days at a time. The combination is what is new. None of the others have all four (autonomy, multi-agent, configurable safety gate, audit trail).

The honest take: nobody is trying to build the longest feature list. The win is being the only tool where a developer genuinely closes the laptop and trusts it. That trust is earned by the safety gate + the audit log, not by being the smartest or the fastest.

What's built so far

Everything below is finished, tested, and working today. 130 automated tests check that nothing is broken.

What's coming next

In order, smallest first. This is the list Nyx is going to work through, in many cases by building itself.

Why Ethan is actually building this

Ethan runs a Facebook Marketplace bot called FBM Sniper. It is the kind of software that breaks at 3am on a weekend while he is at the gym. When that happens, the current routine is: drop everything, drive home, debug, deploy a fix. Often before he even gets the chance to notice, customers are already complaining.

Nyx is meant to be his on-call engineer. The bot breaks → Nyx gets a webhook → a worker investigates → the worker proposes a fix → if it is something safe (revert to last working version, restart a process) Nyx does it automatically and writes it in the log; if it is something risky (push to production, change a database) Nyx pauses and pings Ethan.

Ethan wakes up, sees a clean log of what Nyx did overnight, approves anything still waiting, and goes about his day.

That is the user-facing case. There is also a quieter ambition: Nyx eventually building itself. The roadmap above is mostly going to be built by Nyx running its own self-iteration loop, with Ethan reviewing each commit. That is the test of whether the trust model actually works.

If you want to dig deeper