Files
oh-my-opencode/src/config/schema/commands.ts
T

14 lines
268 B
TypeScript
Raw Normal View History

import { z } from "zod"
export const BuiltinCommandNameSchema = z.enum([
"init-deep",
"ralph-loop",
"ulw-loop",
"cancel-ralph",
"refactor",
"start-work",
"stop-continuation",
])
export type BuiltinCommandName = z.infer<typeof BuiltinCommandNameSchema>