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.
22 lines
591 B
TypeScript
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'; |