Skip to content
Download for Mac

Agents

Each agent bundles a system prompt, a curated tool set, a model assignment, a context strategy, and LLM parameters into a self-contained execution unit. Agents are composable — an orchestrator agent dispatches specialist sub-agents, each running its own model and tools, with the full execution trace visible at every depth level.

Every conversation dispatches through an agent. If no agent is explicitly assigned, the default agent applies. Custom agents override any part of that baseline.

  • System prompt — the directive that shapes behavior, with append or replace modes
  • Tool access — built-in tools, MCP server tools, or other agents exposed as callable tools
  • Model assignment — a specific model and provider, or inherited from conversation defaults
  • Context strategy — how the agent manages token budgets, compaction, and memory across turns
  • Input/output schemas — typed parameters and return values when the agent operates as a tool for other agents
Agent gallery showing agents with custom icons, colors, and category groupings

Agents can be configured with default skills — filesystem-based packages that give agents specialized knowledge, workflows, and executable scripts. Skills follow the open Agent Skills specification and use a three-tier injection pattern to load knowledge on demand. See Skills for the full documentation.