diff --git a/core/task_pipeline.py b/core/task_pipeline.py index 2883382..316402f 100644 --- a/core/task_pipeline.py +++ b/core/task_pipeline.py @@ -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"}