Files
oh-my-opencode/src/config/schema/commands.ts
T
2026-05-06 14:20:50 +09:00

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>