Adjusts width of command names in help menu

This commit is contained in:
Eyal Toledano
2025-03-22 03:36:12 -04:00
parent 2be58d76e5
commit 12ff8b60f2
2 changed files with 3 additions and 40 deletions

View File

@@ -1,40 +1,7 @@
# Task Master
### by [@eyaltoledano](https://x.com/eyaltoledano)
A task management system for AI-driven development with Claude.
## 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
A task management system for AI-driven development with Claude, designed to work seamlessly with Cursor AI.
## Requirements
@@ -560,8 +527,4 @@ Can you analyze the complexity of our tasks to help me understand which ones nee
### Viewing complexity report
```
Can you show me the complexity report in a more readable format?
```
## License
MIT
```

View File

@@ -2938,7 +2938,7 @@ function displayHelp() {
));
const commandTable = new Table({
colWidths: [20, 40, 50],
colWidths: [25, 40, 45],
chars: {
'top': '', 'top-mid': '', 'top-left': '', 'top-right': '',
'bottom': '', 'bottom-mid': '', 'bottom-left': '', 'bottom-right': '',