fix: 리뷰 파일 cutoff 600초로 확장

This commit is contained in:
2026-03-06 22:27:21 +09:00
parent 8140f75c7f
commit ee71d7713d

View File

@@ -136,9 +136,9 @@ class TaskPipeline:
for i, output in enumerate(code_outputs): for i, output in enumerate(code_outputs):
agent_reports.append(f"--- Agent {i+1} 보고 ---\n{output[:1000]}") agent_reports.append(f"--- Agent {i+1} 보고 ---\n{output[:1000]}")
# 최근 변경된 파일 읽기 (60초 이내) # 최근 변경된 파일 읽기 (10분 이내)
recent_files = [] recent_files = []
cutoff = _time.time() - 60 cutoff = _time.time() - 600
project_root = Path(self.project_path) project_root = Path(self.project_path)
skip_dirs = {".git", "__pycache__", "node_modules", ".venv", "venv"} skip_dirs = {".git", "__pycache__", "node_modules", ".venv", "venv"}