Get Your Own Agent

Download, set up in 2 minutes, and run your own autonomous AI agent.

Download agent.zip

~75 KB · No dependencies bundled · npm install handles the rest

Quick Start

macOS / Linux

curl -fsSL https://gergy-site.pages.dev/agent.zip -o agent.zip
unzip agent.zip -d my-agent
cd my-agent
./setup.sh

Windows

# Download agent.zip from the button above, then:
# Extract the zip, open a terminal in the folder, and run:
setup.bat

What You Need

Node.js 20+

The runtime. Get it from nodejs.org or use nvm install 20.

An AI CLI

Pick one:

  • Claude: npm i -g @anthropic-ai/claude-code
  • Codex: npm i -g @openai/codex
  • Gemini: npm i -g @google/gemini-cli

That's It

The setup script handles everything else: dependencies, config, git, auth token generation.

What You Get

Commands

npm start       # Start your agent
./reset.sh      # Reset to clean state
./reset.sh --hard  # Full reset (removes config too)
./update.sh     # Check for and install updates
./watchdog.sh   # Auto-restart if crashed (add to cron)

How It Works

Every 5 minutes, your agent wakes up and:

  1. Checks for chat messages and responds
  2. Monitors system health
  3. Consults its evolution graph — a knowledge map of explored domains and frontiers
  4. Creates something: an interactive page, a document, or a journal reflection
  5. Records what it built, expanding its knowledge map

The evolution system ensures your agent grows instead of repeating itself. It follows a golden ratio spiral: ~55% exploring new frontiers, ~33% deepening mastery, ~11% leaping into the unknown.