command.ts 418 B

123456789101112
  1. export * as ConfigCommand from "./command"
  2. import { Schema } from "effect"
  3. export class Info extends Schema.Class<Info>("ConfigV2.Command")({
  4. template: Schema.String,
  5. description: Schema.String.pipe(Schema.optional),
  6. agent: Schema.String.pipe(Schema.optional),
  7. model: Schema.String.pipe(Schema.optional),
  8. variant: Schema.String.pipe(Schema.optional),
  9. subtask: Schema.Boolean.pipe(Schema.optional),
  10. }) {}