revert: AI 코드 검토 기능 제거 (85ae82f 되돌림)

통짜 코드 전송 방식이 토큰 비효율·부정확해, 검색 기반(grep으로 좁힌 뒤 관련
스니펫만 판정) 방식으로 재설계하기 위해 일괄 제거. 추후 개선안으로 재작업 예정.

This reverts commit 85ae82f.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-20 17:56:43 +09:00
parent e72e6aee83
commit 9bcbc1564f
14 changed files with 11 additions and 543 deletions
-13
View File
@@ -1,6 +1,5 @@
import { useApi } from './useApi'
import type {
ChecklistReviewResult,
ConversationDetail,
ConversationSummary,
SendResult,
@@ -56,17 +55,6 @@ export function useAi() {
})) as unknown as SuggestChecklistResult
}
// 코드 검토 — 체크리스트 구현 여부 판정(서버가 체크리스트에 반영). 코드 양에 따라 오래 걸림
async function reviewChecklist(payload: {
repoId: string
taskSeq: number
}): Promise<ChecklistReviewResult> {
return (await api.post('/ai/review-checklist', payload, {
silent: true,
timeout: 90_000,
})) as unknown as ChecklistReviewResult
}
return {
listConversations,
getConversation,
@@ -74,6 +62,5 @@ export function useAi() {
sendMessage,
deleteConversation,
suggestChecklist,
reviewChecklist,
}
}