fix: 리뷰 파일 cutoff 600초로 확장
This commit is contained in:
@@ -136,9 +136,9 @@ class TaskPipeline:
|
||||
for i, output in enumerate(code_outputs):
|
||||
agent_reports.append(f"--- Agent {i+1} 보고 ---\n{output[:1000]}")
|
||||
|
||||
# 최근 변경된 파일 읽기 (60초 이내)
|
||||
# 최근 변경된 파일 읽기 (10분 이내)
|
||||
recent_files = []
|
||||
cutoff = _time.time() - 60
|
||||
cutoff = _time.time() - 600
|
||||
project_root = Path(self.project_path)
|
||||
skip_dirs = {".git", "__pycache__", "node_modules", ".venv", "venv"}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user