Types
Path:
loom-builder/src/types.tsRelative: src/types.tsSubproject: loom-builderCategory: dispatch-systemLines: 186Bytes: 6,050Imports: 0Exports: 13
Content Preview
- /** Contract types for loom-builder dispatches. */
- export interface ModelRef {
- provider: string;
- id: string;
- }
- export interface ValidationCmd {
- /** Human label, e.g. "bun test" */
- label: string;
- cmd: string[];
- cwd: string;
- }
- export interface DispatchSpec {
- /** Stable id, e.g. "sprint-1-loop3-harness" */
- id: string;
- /** Absolute path to prompt markdown file. */
- promptFile: string;
- /** Mission invariant injected verbatim into every agent prompt when present. */
- purpose?: