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.
This commit is contained in:
22
packages/ion/src/format/index.ts
Normal file
22
packages/ion/src/format/index.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* 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';
|
||||
Reference in New Issue
Block a user