Migrating to 0.10
Breaking change: Smart agents are removed
fast-agent 0.10 removes Smart agents, the model-visible smart tool, and the
--smart flag. type: smart remains as a deprecated 0.10 compatibility alias
and will be removed in 0.11. It is treated as:
Loading the alias emits a warning. Explicit subagents or harness_tools
values take precedence, which supports incremental migration. The alias does
not restore the legacy Smart tool or its mutation commands.
AgentCards and ToolCards remain the way to define configured specialists. Use a ToolCard when a parent should have a stable specialist with its own instructions, tools, or model.
The former Smart agent's harness-facing tools are now an independent opt-in on basic agents:
This adds the allow-listed slash_command and get_resource tools without
changing the agent type. Combine it with subagents: true when both harness
inspection and temporary delegation are wanted.
Replace dynamic delegation
The built-in subagent tool is now opt-in:
Set subagents: true on each parent AgentCard that should delegate temporary
work. Tool-only cards and built-in child agents do not receive the tool.
To force every built-in child to use one model, add subagent_model:
From the CLI, use --subagents. -xx is shorthand for shell access plus
subagents, and --subagent-model <model> enables subagents while forcing the
child model:
Use -x alone when shell access is needed without delegation.
For repository-level activation, add an exact standalone directive to
AGENTS.md:
The directive is removed from the model-visible instruction. It only applies
when subagents is unset; --no-subagents and subagents: false take
precedence.
Update cards and automation
For every former Smart card:
- Replace
type: smartwithtype: agentbefore the compatibility alias is removed in 0.11. - Keep
shell: true, function tools, MCP servers, skills, and other normal AgentCard fields as needed. - Add
subagents: trueonly when the former agent needs temporary delegation. - Add
harness_tools: truewhen the former agent usedslash_commandorget_resource. - Move durable specialist definitions into AgentCards or ToolCards rather than creating them dynamically.
Do not retain --smart or Smart prompt resources. Migrate deprecated
type: smart cards during the 0.10 release series.