Command
Command
Represents a command with its metadata and middleware associations.
Signature
interface Command {
    id: string;
    name: string;
    path: string;
    relativePath: string;
    parentPath: string;
    middlewares: Array<string>;
    category: string | null;
}