/** * `adapters agent [args] [--global|--project]` * * Custom sub-agent management. Like skills, this is file-convention only * — no underlying harness command. We copy/remove agent definition files * (typically markdown) into per-agent locations. */ import type { AgentMuxClient } from '@a5c-ai/comm-adapter'; import type { ParsedArgs, FlagDef } from '../parse-args.js'; export declare const AGENT_FLAGS: Record; export declare function agentCommand(_client: AgentMuxClient, args: ParsedArgs): Promise;