92d70cff5b
Embed user-level skills into the plugin's built-in system so they ship with the product rather than requiring per-user configuration. - review-work: 5-agent parallel post-implementation review orchestrator - ai-slop-remover: per-file AI-generated code smell detector and remover - /remove-ai-slops: command that orchestrates parallel ai-slop-remover runs
15 lines
289 B
TypeScript
15 lines
289 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",
|
|
])
|
|
|
|
export type BuiltinCommandName = z.infer<typeof BuiltinCommandNameSchema>
|