docs: auto-update documentation based on changes in next branch

This PR was automatically generated to update documentation based on recent changes.

  Original commit: chore: prepare for release\n\n

  Co-authored-by: Claude <claude-assistant@anthropic.com>
This commit is contained in:
github-actions[bot]
2025-11-27 19:33:24 +00:00
parent 9e934650b7
commit 3eea155b90
4 changed files with 127 additions and 1 deletions

View File

@@ -86,7 +86,12 @@ sidebarTitle: "CLI Commands"
```bash
# Generate individual task files from tasks.json
task-master generate
# Generate files with a specific tag
task-master generate --tag=<tag-name>
```
Generated files are now created as `.md` files instead of `.txt` files and follow markdownlint formatting standards. Use the `--tag` parameter to generate files from a specific tag when you're on an active tag but want to generate from another tag.
</Accordion>
<Accordion title="Set Task Status">
@@ -204,6 +209,24 @@ sidebarTitle: "CLI Commands"
```bash
# Initialize a new project with Task Master structure
task-master init
# Initialize project with specific rules
task-master init --rules cursor,windsurf,vscode
```
</Accordion>
<Accordion title="Rules Management">
```bash
# Set up IDE-specific rules and configuration files
task-master rules
# Set rules for specific IDEs
task-master rules cursor
task-master rules windsurf
task-master rules vscode
task-master rules hamster
```
The rules command creates IDE-specific configuration files that help AI assistants understand your project structure and development workflow. Available rule sets include Cursor, Windsurf, VS Code, and Hamster configurations.
</Accordion>
</AccordionGroup>

View File

@@ -78,6 +78,7 @@ Loads 15 commonly used tools. Balances functionality with context efficiency.
- `add_subtask` - Add subtasks manually
- `remove_task` - Remove tasks
- `generate` - Generate task markdown files
- `rules` - Set up IDE-specific configuration files
- `add_task` - Create new tasks
- `complexity_report` - View complexity analysis
@@ -174,7 +175,8 @@ The MCP tools can be categorized in the same way as the core functionalities:
### 5. Project and Configuration
- **`initialize_project`**: Initializes a new project.
- **`generate`**: Generates individual task files.
- **`generate`**: Generates individual task files. Files are created as `.md` format with markdownlint standards. Supports `--tag` parameter to generate from specific tags.
- **`rules`**: Creates IDE-specific rules and configuration files for AI assistants.
- **`models`**: Manages AI model configurations.
- **`research`**: Performs AI-powered research.

View File

@@ -85,7 +85,12 @@ description: "A comprehensive reference of all available Task Master commands"
```bash
# Generate individual task files from tasks.json
task-master generate
# Generate files with a specific tag
task-master generate --tag=<tag-name>
```
Generated files are now created as `.md` files instead of `.txt` files and follow markdownlint formatting standards. Use the `--tag` parameter to generate files from a specific tag when you're on an active tag but want to generate from another tag.
</Accordion>
<Accordion title="Set Task Status">
@@ -203,9 +208,27 @@ description: "A comprehensive reference of all available Task Master commands"
```bash
# Initialize a new project with Task Master structure
task-master init
# Initialize project with specific rules
task-master init --rules cursor,windsurf,vscode
```
</Accordion>
<Accordion title="Rules Management">
```bash
# Set up IDE-specific rules and configuration files
task-master rules
# Set rules for specific IDEs
task-master rules cursor
task-master rules windsurf
task-master rules vscode
task-master rules hamster
```
The rules command creates IDE-specific configuration files that help AI assistants understand your project structure and development workflow. Available rule sets include Cursor, Windsurf, VS Code, and Hamster configurations.
</Accordion>
<Accordion title="TDD Workflow (Autopilot)">
```bash
# Start autonomous TDD workflow for a task

78
output.txt Normal file

File diff suppressed because one or more lines are too long