Files
boocode/packages/ion/src/format/index.ts
indifferentketchup 02063072ab chore: add ion package, codesight wiki, work plans, ascli config
New @boocode/ion package (v0.0.1) for inference optimization network.
.codesight/ wiki artifacts for codebase documentation.
.omo/ work plans for openspec cleanup and enhanced file panel.
2026-06-07 22:16:45 +00:00

22 lines
591 B
TypeScript

/**
* Ion workflow engine — format module.
*
* Re-exports the SOP markdown parser, YAML converter, and file discovery
* utilities so consumers can import from a single entry point:
*
* ```ts
* import { parseSopContent, convertSopToWorkflowYaml, discoverSopFiles } from '@boocode/ion/format';
* ```
*/
export {
parseSopContent,
type SopDocument,
type SopParameter,
type SopStep,
} from './sop-parser.js';
export { convertSopToWorkflowYaml } from './sop-to-yaml.js';
export { discoverSopFiles } from './sop-discovery.js';
export type { GlobFn } from './sop-discovery.js';