-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Welcome to the gald3r wiki - the user guide for the gald3r framework.
gald3r is an AI-agent project operating system. You install it into any code project, and it gives
your AI coding assistant (Claude Code, Cursor, Copilot, Codex, and 20+ other platforms) a shared,
file-based control plane for tasks, plans, bugs, features, constraints, and cross-project
coordination - all stored as plain markdown under a .gald3r/ folder in your repo.
The goal: turn ad-hoc "vibe coding" into a repeatable, auditable workflow. Every piece of work is a task with acceptance criteria. Every change can be reviewed by a fresh independent agent. Every decision leaves a trail in git.
gald3r is built from six kinds of building blocks. Each has its own index page in this wiki:
| Concept | What it is | Index page |
|---|---|---|
| Tasks | The atomic unit of work. Each task is a markdown file with acceptance criteria, status, and history. Managed via @g-task-* commands. |
(see Commands -> Task Management) |
| Commands |
@g-* slash commands you invoke to do things - create a task, run a code review, plan a release, check status. |
Commands |
| Skills | Reusable capability modules that commands and agents load on demand (e.g. git commits, bug tracking, web crawling). | Skills |
| Agents | Specialized personas (@g-agnt-*) that own a slice of the workflow - task manager, code reviewer, verifier, planner. |
Agents |
| Hooks | Lifecycle scripts that fire automatically (session start, agent complete, pre-commit) to inject context and enforce gates. | Hooks |
| Rules | Always-on guidance loaded every session - git workflow, documentation standards, enforcement gates. | Rules |
-
Session start - a hook injects your project's
.gald3r/context (mission, active tasks, constraints) so the agent knows where things stand. -
Create work -
@g-task-add "Add OAuth login"files a task with acceptance criteria. -
Implement -
@g-go-code(or@g-go) drives implementation against the task spec. - Review - a fresh independent reviewer agent verifies the work against the acceptance criteria (PASS / FAIL), with no access to the implementer's reasoning.
-
Commit -
@g-git-commitproduces a structured, convention-following commit. -
Track -
@g-statusand@g-reportshow where every task stands.
New to gald3r? Start with the Quickstart - it walks through installing gald3r in a project and running your first commands.
- Quickstart - installation and first steps
-
Commands - every
@g-*command, grouped by category - Skills - reusable capability modules
- Agents - specialized agent personas
- Rules - always-on conventions and enforcement gates
- Hooks - lifecycle automation scripts
This wiki is the user-facing guide ("how to use gald3r"). For framework internals and contributor docs, see the source repository at https://github.com/wrm3/gald3r.
Last updated: 2026-05-30 (gald3r v1.7.0)