14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
|
|
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>
|