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

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

  Original commit: feat: reintroduce  command for task file generation (#1446)\n\n\n

  Co-authored-by: Claude <claude-assistant@anthropic.com>
This commit is contained in:
github-actions[bot]
2025-11-25 17:34:50 +00:00
parent 2316e94b28
commit 4306b78361
3 changed files with 77 additions and 0 deletions

View File

@@ -86,7 +86,21 @@ sidebarTitle: "CLI Commands"
```bash
# Generate individual task files from tasks.json
task-master generate
# Generate files from a specific tag (useful when working with multiple tag contexts)
task-master generate --tag=feature-auth
# Generate files to a custom output directory
task-master generate --output=./custom-tasks
# Generate files in JSON format instead of text
task-master generate --format=json
# Combine options: generate from specific tag to custom directory
task-master generate --tag=v2-features --output=./v2-tasks
```
Generated files are now in Markdown format (`.md`) and follow markdownlint standards. By default, files are generated in the `.taskmaster/tasks/` directory. The command also automatically removes orphaned task files that no longer have corresponding tasks in your `tasks.json`.
</Accordion>
<Accordion title="Set Task Status">

View File

@@ -85,7 +85,21 @@ description: "A comprehensive reference of all available Task Master commands"
```bash
# Generate individual task files from tasks.json
task-master generate
# Generate files from a specific tag (useful when working with multiple tag contexts)
task-master generate --tag=feature-auth
# Generate files to a custom output directory
task-master generate --output=./custom-tasks
# Generate files in JSON format instead of text
task-master generate --format=json
# Combine options: generate from specific tag to custom directory
task-master generate --tag=v2-features --output=./v2-tasks
```
Generated files are now in Markdown format (`.md`) and follow markdownlint standards. By default, files are generated in the `.taskmaster/tasks/` directory. The command also automatically removes orphaned task files that no longer have corresponding tasks in your `tasks.json`.
</Accordion>
<Accordion title="Set Task Status">

49
output.txt Normal file

File diff suppressed because one or more lines are too long