The Engine module exposes runtime control surfaces. Use it to inspect what the queue is doing, drill into agent runs, and recover from edge cases.Documentation Index
Fetch the complete documentation index at: https://familyco.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Views
- Pending queue jobs
- Agent run list with filters: state, trigger type, root agent
- Agent run detail
- Heartbeat status / trigger controls
Actions
- Enqueue an agent run
- Enqueue a tool execution
- Force-trigger heartbeat poll
Constraints
- The daily quota guard consumes usage before enqueue.
- The approval guard may return
approvalRequiredinstead of an immediate enqueue. - Queue lanes must support
agent.run,tool.execute, andtask.execute.
Run lifecycle
AgentRun.triggerType records why the run started:
| triggerType | Source |
|---|---|
founder_chat | Founder sent a directive in chat. |
task_execution | A task became ready and was scheduled. |
retry | Retry of a failed run. |
approval_resume | Founder resolved an approval/clarification. |
schedule | Cron or heartbeat scheduler. |