Skip to content

Minions

Your AI agents need somewhere to live. Minions gives them a structured home that's queryable, nestable, evolvable, and AI-readable.

Three Simple Primitives

Everything is built from Minions (instances), MinionTypes (schemas), and Relations (typed links).

Progressive Complexity

Start with a single flat agent. Grow into nested structures with memory, skills, and teams — no migration needed.

Schema-Driven Validation

Every field is validated against its type schema. No more guessing what shape your agent data is in.

Framework Agnostic

Works with any storage backend, any runtime, any AI framework. Pure TypeScript, zero opinions about infrastructure.

{
"title": "Research Assistant",
"minionTypeId": "builtin-agent",
"fields": {
"role": "researcher",
"model": "gpt-4",
"systemPrompt": "You are a research assistant.",
"tools": ["web-search", "summarize"]
}
}