From 7777ca1ba73af17b51329c55a7d8f8e173101865 Mon Sep 17 00:00:00 2001 From: CD Date: Fri, 6 Mar 2026 22:28:50 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A6=AC=EB=B7=B0=EC=96=B4=EC=97=90?= =?UTF-8?q?=EA=B2=8C=20=EC=A0=84=EC=B2=B4=20=EB=82=B4=EC=9A=A9=20=EC=A0=84?= =?UTF-8?q?=EB=8B=AC=20-=20=EB=AA=A8=EB=93=A0=20truncation=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/task_pipeline.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/task_pipeline.py b/core/task_pipeline.py index 316402f..2dc4506 100644 --- a/core/task_pipeline.py +++ b/core/task_pipeline.py @@ -134,7 +134,7 @@ class TaskPipeline: # 에이전트 보고 요약 agent_reports = [] 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}") # 최근 변경된 파일 읽기 (10분 이내) recent_files = [] @@ -151,7 +151,7 @@ class TaskPipeline: rel = fpath.relative_to(project_root) content = fpath.read_text(encoding="utf-8", errors="replace") recent_files.append( - f"### {rel}\n```\n{content[:3000]}\n```" + f"### {rel}\n```\n{content}\n```" ) except (OSError, UnicodeDecodeError): continue @@ -164,7 +164,7 @@ class TaskPipeline: "issues": [], } - files_section = "\n\n".join(recent_files[:10]) # 최대 10개 + files_section = "\n\n".join(recent_files) prompt = ( f"## 요청된 태스크\n{chr(10).join(task_summaries)}\n\n"