/** * /dir command handler — view or change the agent workspace directory. * * /dir → print current workspace * /dir /some/path → set workspace to /some/path */ import type { CommandHandler } from "./commands-types.js"; export declare const handleDirCommand: CommandHandler;