From 9d98f47733be95e171f9da2caef0b28625bd3d31 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sat, 30 May 2026 19:12:03 +0900 Subject: [PATCH] test(config): batch 14 (3 files) --- src/config/schema/agent-names.test.ts | 9 ++++++--- src/config/schema/agent-names.ts | 3 ++- src/config/schema/commands.ts | 1 - 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/config/schema/agent-names.test.ts b/src/config/schema/agent-names.test.ts index d6b80a29b..e3212ae22 100644 --- a/src/config/schema/agent-names.test.ts +++ b/src/config/schema/agent-names.test.ts @@ -1,11 +1,13 @@ +/// + import { describe, expect, test } from "bun:test" import { OhMyOpenCodeConfigSchema } from "./oh-my-opencode-config" describe("OhMyOpenCodeConfigSchema disabled_skills", () => { - test("accepts review-work and ai-slop-remover", () => { + test("accepts review-work, remove-ai-slops, and init-deep", () => { // given const config = { - disabled_skills: ["review-work", "ai-slop-remover"], + disabled_skills: ["review-work", "remove-ai-slops", "init-deep"], } // when @@ -16,7 +18,8 @@ describe("OhMyOpenCodeConfigSchema disabled_skills", () => { if (result.success) { expect(result.data.disabled_skills).toEqual([ "review-work", - "ai-slop-remover", + "remove-ai-slops", + "init-deep", ]) } }) diff --git a/src/config/schema/agent-names.ts b/src/config/schema/agent-names.ts index 7fefdadce..fdb587f24 100644 --- a/src/config/schema/agent-names.ts +++ b/src/config/schema/agent-names.ts @@ -21,7 +21,8 @@ export const BuiltinSkillNameSchema = z.enum([ "frontend-ui-ux", "git-master", "review-work", - "ai-slop-remover", + "remove-ai-slops", + "init-deep", "team-mode", ]) diff --git a/src/config/schema/commands.ts b/src/config/schema/commands.ts index ea2a11287..1844284c0 100644 --- a/src/config/schema/commands.ts +++ b/src/config/schema/commands.ts @@ -1,7 +1,6 @@ import { z } from "zod" export const BuiltinCommandNameSchema = z.enum([ - "init-deep", "ralph-loop", "ulw-loop", "cancel-ralph",