Fix: Improve 'parse-prd' command and CLI help consistency#15
Merged
eyaltoledano merged 3 commits intomainfrom Mar 24, 2025
Merged
Fix: Improve 'parse-prd' command and CLI help consistency#15eyaltoledano merged 3 commits intomainfrom
eyaltoledano merged 3 commits intomainfrom
Conversation
…, colored deps status, help output, expand cmd clarity, init instructions, version bump to 0.9.18
…ll cases). Fixes an issue preventing analyzeTaskComplexity to work as designed. Fixes an issue that prevented parse-prd from working. Stubs in the test for analyzeTaskComplexity to be done later.
…tion in the complexity-report. Makes the table fill the width of the terminal as well.
ProdByBuddha
pushed a commit
to ProdByBuddha/claude-task-master
that referenced
this pull request
Apr 9, 2025
Fix: Improve 'parse-prd' command and CLI help consistency Fixed an issue with analyzeTaskComplexity implementation. Stubs 3 tests for analyzeTaskComplexity, to be done later Fixes issues with table displays Fixes an issue which incorrectly used an outdated Perplexity model by default Fixes the interpolation of the suggested task expansion prompt in the complexity-report command.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit improves the 'parse-prd' command and ensures consistency in CLI help messages across different entry points.
Changes:
fileargument optional for theparse-prdcommand in bothcommands.jsandbin/task-master.js.parse-prdis called without a PRD file, instead of showing a generic error.bin/task-master.jsto directly use thedisplayHelp()anddisplayBanner()functions fromui.js, ensuring consistent help output withscripts/dev.js.commands.jsto display the banner and help message whentask-masterordev.jsis run without any arguments.showcommand inbin/task-master.jsto precisely match the description incommands.js.expandcommand to take in a --research flag which now hits the Perplexity API to figure out the complexity of each task and determine the correct amount of sub tasks needed..Also closes issues #12 #13
These changes enhance the user experience by providing better guidance for the
parse-prdcommand and ensuring consistent help information throughout the CLI, regardless of the entry point used.