fix: pass full PRD to COO without truncation

Made-with: Cursor
This commit is contained in:
2026-03-10 16:36:47 -07:00
parent 99c1a83b9f
commit cff5cd6014

View File

@@ -75,7 +75,8 @@ Operating principles:
// PRD or discovery phases
if (prd) {
lines.push(`\n## Product Requirements Document\n${prd.slice(0, 2500)}${prd.length > 2500 ? '\n[truncated — ask the founder for more detail]' : ''}`);
// Claude Sonnet has a 200k token contextpass the full PRD, no truncation needed
lines.push(`\n## Product Requirements Document\n${prd}`);
} else if (phaseRows.length > 0) {
lines.push(`\n## Discovery phases completed (${phaseRows.length})`);
for (const p of phaseRows) {