feat: Adjustst the parsePRD system prompt and cursor rule so to improve following specific details that may already be outliend in the PRD. This reduces cases where the AI will not use those details and come up with its own approach. Next commit will reduce detfault temperature to do this at scale across the system too.

This commit is contained in:
Eyal Toledano
2025-04-02 22:36:36 -04:00
parent 6393f9f7fb
commit f16a574ad8
2 changed files with 5 additions and 4 deletions

View File

@@ -37,6 +37,7 @@ This document provides a detailed reference for interacting with Taskmaster, cov
* `numTasks`: `Approximate number of top-level tasks Taskmaster should aim to generate from the document.` (CLI: `-n, --num-tasks <number>`) * `numTasks`: `Approximate number of top-level tasks Taskmaster should aim to generate from the document.` (CLI: `-n, --num-tasks <number>`)
* `force`: `Use this to allow Taskmaster to overwrite an existing 'tasks.json' without asking for confirmation.` (CLI: `-f, --force`) * `force`: `Use this to allow Taskmaster to overwrite an existing 'tasks.json' without asking for confirmation.` (CLI: `-f, --force`)
* **Usage:** Useful for bootstrapping a project from an existing requirements document. * **Usage:** Useful for bootstrapping a project from an existing requirements document.
* **Notes:** Task Master will strictly adhere to any specific requirements mentioned in the PRD (libraries, database schemas, frameworks, tech stacks, etc.) while filling in any gaps where the PRD isn't fully specified. Tasks are designed to provide the most direct implementation path while avoiding over-engineering.
--- ---

View File

@@ -706,10 +706,10 @@ function setupMCPConfiguration(targetDir, projectName) {
"env": { "env": {
"ANTHROPIC_API_KEY": "%ANTHROPIC_API_KEY%", "ANTHROPIC_API_KEY": "%ANTHROPIC_API_KEY%",
"PERPLEXITY_API_KEY": "%PERPLEXITY_API_KEY%", "PERPLEXITY_API_KEY": "%PERPLEXITY_API_KEY%",
"MODEL": "%MODEL%", "MODEL": "claude-3-7-sonnet-20250219",
"PERPLEXITY_MODEL": "%PERPLEXITY_MODEL%", "PERPLEXITY_MODEL": "sonar-pro",
"MAX_TOKENS": "%MAX_TOKENS%", "MAX_TOKENS": 64000,
"TEMPERATURE": "%TEMPERATURE%", "TEMPERATURE": 0.3,
"DEFAULT_SUBTASKS": 5, "DEFAULT_SUBTASKS": 5,
"DEFAULT_PRIORITY": "medium" "DEFAULT_PRIORITY": "medium"
} }