Types

loom-builder-solsourcetypescript
Path: loom-builder-sol/src/types.tsRelative: src/types.tsSubproject: loom-builder-solCategory: dispatch-system-sol
Lines: 186Bytes: 6,050Imports: 0Exports: 13

Content Preview

  1. /** Contract types for loom-builder dispatches. */
  2. export interface ModelRef {
  3. provider: string;
  4. id: string;
  5. }
  6. export interface ValidationCmd {
  7. /** Human label, e.g. "bun test" */
  8. label: string;
  9. cmd: string[];
  10. cwd: string;
  11. }
  12. export interface DispatchSpec {
  13. /** Stable id, e.g. "sprint-1-loop3-harness" */
  14. id: string;
  15. /** Absolute path to prompt markdown file. */
  16. promptFile: string;
  17. /** Mission invariant injected verbatim into every agent prompt when present. */
  18. purpose?: