// Pi package extension entry. Pi discovers extensions from this `extensions/` directory // (or the `pi.extensions` manifest paths) and loads each file's default export as the // extension factory `(pi) => void`. // // The default export is makePiWorkflowExtension() with default options: register the // `/workflow` command against the default workflows dir (~/.pi/workflows or // $PI_WORKFLOWS_DIR). Consumers who want to configure it (a custom dir, default model, // concurrency) import { makePiWorkflowExtension } from the package root instead. export { default } from "../src/extension.ts";