/** * MCP tool definitions for the team orchestration surface. * * 12 tools matching the CC agent-teams tool surface with generic names: * create_team, delete_team, spawn_teammate, send_message, read_inbox, * create_task, update_task, list_tasks, get_task, * check_teammate, force_kill_teammate, process_shutdown * * Descriptions are structured for AI agent consumption — focused on * behavior, parameters, and usage patterns. No internal implementation * details (signals, file paths, algorithms). */ import { type ToolDefinition } from '../types.js'; /** * Build team tool definitions. * Called after server construction; definitions are static. */ export declare function getTeamToolDefinitions(): ToolDefinition[]; //# sourceMappingURL=team-definitions.d.ts.map