From 6ec892b2c11d1112ad1e053e8ceda242758c6bb9 Mon Sep 17 00:00:00 2001 From: Eyal Toledano Date: Wed, 9 Apr 2025 21:17:02 -0400 Subject: [PATCH] feat(parse-prd): Improves the numTasks param description to encourage the LLM agent to use a number of tasks to break down the PRD into that is logical relative to project complexity. --- mcp-server/src/tools/parse-prd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp-server/src/tools/parse-prd.js b/mcp-server/src/tools/parse-prd.js index a68675b8..e5e4732d 100644 --- a/mcp-server/src/tools/parse-prd.js +++ b/mcp-server/src/tools/parse-prd.js @@ -29,7 +29,7 @@ export function registerParsePRDTool(server) { .string() .optional() .describe( - 'Approximate number of top-level tasks to generate (default: 10)' + 'Approximate number of top-level tasks to generate (default: 10). As the agent, if you have enough information, ensure to enter a number of tasks that would logically scale with project complexity. Avoid entering numbers above 50 due to context window limitations.' ), output: z .string()