feat(builtin-skills): batch 56 (4 files)

This commit is contained in:
YeonGyu-Kim
2026-05-30 19:12:09 +09:00
parent bdb2b7b8ba
commit 110a4e17d4
4 changed files with 477 additions and 0 deletions
@@ -0,0 +1,9 @@
import { loadSharedSkillTemplate } from "../skill-file-loader"
import type { BuiltinSkill } from "../types"
export const initDeepSkill: BuiltinSkill = {
name: "init-deep",
description: "(builtin) Initialize hierarchical AGENTS.md knowledge base",
template: loadSharedSkillTemplate("init-deep"),
argumentHint: "[--create-new] [--max-depth=N]",
}
@@ -0,0 +1,9 @@
import { loadSharedSkillTemplate } from "../skill-file-loader"
import type { BuiltinSkill } from "../types"
export const removeAiSlopsSkill: BuiltinSkill = {
name: "remove-ai-slops",
description:
'Remove AI-generated code smells (slop) from branch changes or an explicit file list. Locks behavior with regression tests FIRST, then runs categorized cleanup via parallel `deep` agents in batches of 5, then verifies with quality gates. Covers 10 slop categories including performance equivalences, excessive complexity (object annotations, if/elif variant chains), and oversized modules (250+ pure LOC with mandatory modular refactoring). MUST USE when the user asks to "remove slop", "clean AI code", "deslop", "clean up AI-generated code", "remove AI slop", or wants to clean up AI-generated patterns from recent changes. Triggers - "remove ai slops", "clean ai code", "deslop", "cleanup AI generated", "remove AI slop", "clean up AI-generated code", "strip slop", "ai-slop cleanup".',
template: loadSharedSkillTemplate("remove-ai-slops"),
}