585ad6d8d5
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
16 lines
304 B
TypeScript
16 lines
304 B
TypeScript
import { z } from "zod"
|
|
|
|
export const BuiltinCommandNameSchema = z.enum([
|
|
"init-deep",
|
|
"ralph-loop",
|
|
"ulw-loop",
|
|
"cancel-ralph",
|
|
"refactor",
|
|
"start-work",
|
|
"stop-continuation",
|
|
"remove-ai-slops",
|
|
"hyperplan",
|
|
])
|
|
|
|
export type BuiltinCommandName = z.infer<typeof BuiltinCommandNameSchema>
|