
A general-purpose agent that plans, calls tools and completes multi-step work across the MADX stack.
AGI is the orchestration layer that turns a single instruction into a completed task — plan the steps, call the right internal tool or API for each one, and report back what changed. Every run keeps a full trace: what it planned, which tool it called, what came back, and where it stopped if it needed a human. Tasks queue and run in the background, so a request doesn't block on a slow step, and each agent's toolset is scoped per system so it can only touch what it's meant to.
- Plans a task into steps before touching anything
- Routes each step to the right internal tool or API
- Full run trace — plan, calls, results, and where it stopped
- Background task queue so slow steps don't block a request
- Per-agent scoped permissions — only touches what it's meant to
- Escalates to a human when a step needs approval
- Next.js
- Task queue
- Tool routing
- Run tracing
- Scoped permissions
- Background workers