import { Command } from "commander"; /** * Create the `skaile flow` command group. * * Browses flows discovered across every content root via {@link discoverFlows} * (the project's `.skaile/` install root, bundled factory-assets when installed / * the monorepo tree in dev, user libraries, and the global `~/.skaile/` install * root). Subcommands: `list` (print all available flows with their IDs, names, * and descriptions) and `show ` (print the flow's metadata and its skill * nodes in execution order, marking optional nodes). * * Both take `--project-dir` and forward it to discovery, so they list exactly the * flows `skaile run --project-dir ` can start. * * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/flow#make-flow-command */ export declare function makeFlowCommand(): Command; //# sourceMappingURL=flow.d.ts.map