Skip to content

Coordinator Tools Reference

The coordinator session has 30 built-in tools it uses to orchestrate workers, manage tasks and teams, author artifacts, and control loops. These are NOT slash commands — they are LLM-callable functions the coordinator invokes autonomously. Source: src/coordinator/toolHandlers.ts → domain builders in src/coordinator/tools/.

Generated for agents-fleet v0.52.0 · 30 coordinator tools.


Worker Management

ToolParametersDescription
spawn_workername, agent_type, prompt, task_id, model, cwd, role, skills, skill, permissionOverrides, mergeOnSuccessSpawn a new worker agent to handle a specific task.
send_messageto, message, summarySend a message to a running worker agent or use "*" to broadcast to all team members.
stop_workeragent_idStop a running worker agent
list_workersstatusList all worker agents and their current status

Task Management

ToolParametersDescription
task_createsubject, description, owner, blocked_by, dod_idsCreate a new task with subject, description, and optional dependencies
task_updatetask_id, status, subject, owner, result, add_blocks, add_blocked_by, dod_idsUpdate a task status, owner, result, or dependencies
task_liststatus, ownerList all tasks with their status and dependency information
task_gettask_idGet detailed information about a specific task
task_stoptask_idStop a running task
get_ready_tasksGet tasks that are ready to start (all dependencies completed)

Team Management

ToolParametersDescription
team_createteam_name, descriptionCreate a named team for organized multi-agent collaboration
team_deleteteam_nameDelete a team.
team_add_memberteam_name, member_name, agent_type, prompt, modelAdd a specialized agent as a member of a team
team_list_membersteam_nameList all members of a team with their status
broadcastmessage, summarySend a message to all team members

Memory & Definition of Done

ToolParametersDescription
dod_updatedod_id, passed, evidenceRecord a Definition of Done item as passed or failed.
fleet_remembernote, sourcePersist a learning, pattern, or important observation to project memory (.fleet/context/memory.md).

Authoring

ToolParametersDescription
save_rolename, description, agentType, systemPrompt, model, whenToUse, outputFilePersist a v2 Role artifact to the project tier (.fleet/roles/<name>.role.md).
save_skillname, description, systemPrompt, tags, allowOverridePersist a reusable atomic skill (knowledge pack) to the project tier under .fleet/skills/.
save_crewname, description, topology, workflow, coordinator, members, synthesis, mcpServers, tierPersist a v2 Crew (workflow + coordinator + agents) to disk as a *.crew.md file under the project (or user) tier.
save_workflowname, content, tier, descriptionPersist an authored .workflow.md (full markdown content) to disk under the project (or user) tier, after validating it with the workflow linter.
activate_crewnameActivate a saved crew by name.
reload_registryRe-read all workflows, crews, roles, skills, and gates from disk (bundled + user + project tiers).

Discovery

ToolParametersDescription
list_featureskindList the fleet capabilities registered in this session: workflows, roles, atomic skills, crews, built-in slash commands, and coordinator tools.
describe_featurename, kindDescribe a single fleet feature by name (workflow, role, atomic skill, crew, built-in command, or coordinator tool).

Loop & Workflow Control

ToolParametersDescription
signal_loop_completereasonSignal that the active loop should stop.
signal_workflow_abortreason, runIdAbort a workflow (e.g. /feature or /github-issue-worker-autopilot).

Channels

ToolParametersDescription
send_attachmentpath, caption, kindSend a file attachment (photo, audio, video, voice, or document) to all paired remote chats.

Other

ToolParametersDescription
dod_generateitems, plan_slug, modeAuthor the Definition of Done for the active plan.
dod_coverageplan_slugReport DoD coverage for the active plan: which tasks lack a DoD mapping (dod_ids) and which DoD items have no task, then apply the soft execute gate (AGENTS_FLEET_DOD_GATE: off|warn|enforce, default warn).