Adjusts width of command names in help menu
This commit is contained in:
39
README.md
39
README.md
@@ -1,40 +1,7 @@
|
|||||||
# Task Master
|
# Task Master
|
||||||
### by [@eyaltoledano](https://x.com/eyaltoledano)
|
### by [@eyaltoledano](https://x.com/eyaltoledano)
|
||||||
|
|
||||||
A task management system for AI-driven development with Claude.
|
A task management system for AI-driven development with Claude, designed to work seamlessly with Cursor AI.
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm install -g task-master-ai
|
|
||||||
```
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
### Initialize a new project
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Navigate to your project directory
|
|
||||||
mkdir my-new-project
|
|
||||||
cd my-new-project
|
|
||||||
|
|
||||||
# Initialize the project
|
|
||||||
task-master-init
|
|
||||||
```
|
|
||||||
|
|
||||||
This will create the necessary file structure for your project, including:
|
|
||||||
|
|
||||||
- `.cursor/rules/dev_workflow.mdc` - Cursor rules for AI-driven development
|
|
||||||
- `scripts/dev.js` - Task management script
|
|
||||||
- `scripts/README.md` - Documentation for the script
|
|
||||||
- `scripts/example_prd.txt` - Example PRD template
|
|
||||||
- `.env.example` - Example environment variables
|
|
||||||
- `.gitignore` - Git ignore file
|
|
||||||
- `package.json` - Project configuration
|
|
||||||
- `tasks.json` - Empty tasks file
|
|
||||||
- `tasks/` - Directory for task files
|
|
||||||
|
|
||||||
# Documentation
|
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
@@ -561,7 +528,3 @@ Can you analyze the complexity of our tasks to help me understand which ones nee
|
|||||||
```
|
```
|
||||||
Can you show me the complexity report in a more readable format?
|
Can you show me the complexity report in a more readable format?
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
MIT
|
|
||||||
|
|||||||
@@ -2938,7 +2938,7 @@ function displayHelp() {
|
|||||||
));
|
));
|
||||||
|
|
||||||
const commandTable = new Table({
|
const commandTable = new Table({
|
||||||
colWidths: [20, 40, 50],
|
colWidths: [25, 40, 45],
|
||||||
chars: {
|
chars: {
|
||||||
'top': '', 'top-mid': '', 'top-left': '', 'top-right': '',
|
'top': '', 'top-mid': '', 'top-left': '', 'top-right': '',
|
||||||
'bottom': '', 'bottom-mid': '', 'bottom-left': '', 'bottom-right': '',
|
'bottom': '', 'bottom-mid': '', 'bottom-left': '', 'bottom-right': '',
|
||||||
|
|||||||
Reference in New Issue
Block a user