fix: pass full PRD to COO without truncation
Made-with: Cursor
This commit is contained in:
@@ -75,7 +75,8 @@ Operating principles:
|
|||||||
|
|
||||||
// PRD or discovery phases
|
// PRD or discovery phases
|
||||||
if (prd) {
|
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 context — pass the full PRD, no truncation needed
|
||||||
|
lines.push(`\n## Product Requirements Document\n${prd}`);
|
||||||
} else if (phaseRows.length > 0) {
|
} else if (phaseRows.length > 0) {
|
||||||
lines.push(`\n## Discovery phases completed (${phaseRows.length})`);
|
lines.push(`\n## Discovery phases completed (${phaseRows.length})`);
|
||||||
for (const p of phaseRows) {
|
for (const p of phaseRows) {
|
||||||
|
|||||||
Reference in New Issue
Block a user