🎉 gald3r v5.0.58 is out — gald3r 5.0.58 — choose one recommended download for your computer..See release notes →

Get Started

Quickstart

From zero to your first verified task in under 10 minutes.

Total: ~8 minutes· No external services required

Before you begin — checklist

  • Git installed
  • A project directory (any language)
  • Cursor, Claude Code, Gemini CLI, Codex, or OpenCode installed
1
1 min

Install the signed binary

One signed Go binary per machine — no Python, no clone. Windows and macOS installers are signed as Gald3r Labs LLC; Linux ships a tarball.

bash
# Windows — download gald3r-windows-x86_64.msi from
# github.com/Gald3r-Labs/gald3r_core/releases, run it, open a new terminal, then:
gald3r --version

# macOS — download gald3r-macos-arm64.pkg from the same releases page, double-click, then:
gald3r --version

# Linux
curl -LO https://github.com/Gald3r-Labs/gald3r_core/releases/latest/download/gald3r-linux-x86_64.tar.gz
tar xzf gald3r-linux-x86_64.tar.gz && cd gald3r-*-linux-x86_64 && ./install.sh
2
1 min

Check the install, then scaffold your project

Run these from your project root. The doctor never fabricates a green result; the dry run shows what setup would write before it writes anything.

bash
gald3r doctor
gald3r setup --dry-run
gald3r setup
3
1 min

Project it into your IDE (optional)

The same commands become native slash commands in your AI coding tool — /g-task-add in Claude Code, @g-task-add in Cursor.

bash
gald3r platform install claude-code   # or cursor, codex, copilot, ...

Confirm everything loaded with gald3r status.

bash
gald3r status
4
1 min

Create your first task

Pick something small and concrete — a bug fix, a new endpoint, a UI component. Pass it as an argument.

chat
@g-task-new Fix the broken 404 page styling

Gald3r creates .gald3r/tasks/task001_fix_404_page_styling.md with acceptance criteria. Review it — edit the criteria if needed.

5
2 min

Implement the task

Run the implementation command. The agent reads the task, implements it, checks each acceptance criterion, and marks the task [🔍].

chat
@g-go-code
Important: [🔍]means "awaiting verification" — it is NOT done yet. The task stays in this state until a separate verification pass confirms it.
6
1 min

Verify in a new session

Open a new chat window (new agent session). Run the review command. This is the adversarial gate — a structurally separate agent checks the implementation.

chat
@g-go-review

If all criteria pass: the task is marked [✅] complete. If something fails: it goes back to pending with a FAIL note, and you repeat from step 5.

🎉 You just completed your first gald3r cycle

Create → Implement → Verify → Complete. That's the core loop. Everything else in gald3r — constraints, WPAC topology, vault memory, skill packs — builds on top of this foundation.

Next steps