/** * `adapters skill [args] [--global|--project]` * * Skills are file-convention only — no underlying harness command. * We copy/remove skill folders into per-agent locations. */ import type { AgentMuxClient } from '@a5c-ai/comm-adapter'; import type { ParsedArgs, FlagDef } from '../parse-args.js'; export declare const SKILL_FLAGS: Record; export declare function skillCommand(_client: AgentMuxClient, args: ParsedArgs): Promise;