import { parseOtherArgs } from "@/cli-helpers"; import { Command } from "commander"; export const debug = new Command() .name("debug") .description("Debug internal state") .option("--inputs ", "comma separated key=value format") .action(async (options) => { console.log("other inputs", parseOtherArgs(options.inputs)); });