chore: untrack generated review builtin files from git index

Files are still present on disk and generated by build:review-builtin.
.gitignore rules prevent them from being re-committed.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
kingboung 2026-05-07 11:49:07 +08:00
parent 3beeaa545e
commit a1d3a3db2d
2 changed files with 0 additions and 32 deletions

View File

@ -1,10 +0,0 @@
// This file is auto-generated by scripts/generate-review-builtin.ts
// Do not edit manually
// Agents are downloaded from zgsm-ai/costrict-review repository
import type { BuiltInAgentDefinition } from '@claude-code-best/builtin-tools/tools/AgentTool/loadAgentsDir.js'
export const REVIEW_AGENTS: BuiltInAgentDefinition[] = []
export const PRIMARY_REVIEW_AGENT = ''
export const SUB_REVIEW_AGENT = ''

View File

@ -1,22 +0,0 @@
// This file is auto-generated by scripts/generate-review-builtin.ts
// Do not edit manually
export const SKILL_FILES: Record<string, Record<string, Record<string, string>>> = {}
export const SKILL_VERSIONS: Record<string, string> = {}
export function listBuiltinSkills(): string[] {
return []
}
export function getBuiltinSkillVersion(skillName: string): string | undefined {
return SKILL_VERSIONS[skillName]
}
export function listSkillFiles(skillName: string, locale: string): string[] {
return Object.keys(SKILL_FILES[locale]?.[skillName] || {})
}
export async function extractBundledSkill(skillName: string, targetDir: string, locale: string): Promise<void> {
throw new Error(`Skill not found: ${skillName}`)
}