Skip to content
nod v0.0.1

A coding agent that feels like a shell.

Describe the task. nod reads your code, edits the files and runs the tests, and checks before anything risky. Open source.

$ curl -fsSL https://nod.anturno.cloud/setup.sh | bash

macOS and Linux. Then nod login codex or nod login grok. Read the docs

nod fixing a bug and running the tests
$ nod
> add() returns the wrong result. Fix it and run the tests.

 Read src/math.ts
   return a - b;
 Ran bun test
 1 fail, 13 pass
 Edited src/math.ts
 -  return a - b;
 +  return a + b;
 Ran bun test
 14 pass, 0 fail

add() subtracted instead of adding. Fixed; all 14 tests pass.