Compare commits

...

1 Commits

Author SHA1 Message Date
github-actions[bot]
1eb84f9660 docs: auto-update documentation based on changes in next branch
This PR was automatically generated to update documentation based on recent changes.

  Original commit: fix: remove deprecated generateTaskFiles calls from MCP tools (#1277)\n\nCo-authored-by: Ralph Khreish <Crunchyman-ralph@users.noreply.github.com>\nCo-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>\nResolves issue #1271 - MCP Connection Closed Error After Upgrading to v0.27.3\n\n

  Co-authored-by: Claude <claude-assistant@anthropic.com>
2025-10-06 10:02:21 +00:00
2 changed files with 53 additions and 4 deletions

View File

@@ -85,7 +85,7 @@ The CLI is organized into a series of commands, each with its own set of options
### 4. Project and Configuration ### 4. Project and Configuration
- **`init`**: Initializes a new project. - **`init`**: Initializes a new project.
- **`generate`**: Generates individual task files. - **`generate`**: Generates individual task files from tasks.json. Run this manually after task operations to create readable text files for each task.
- **`migrate`**: Migrates a project to the new directory structure. - **`migrate`**: Migrates a project to the new directory structure.
- **`research`**: Performs AI-powered research. - **`research`**: Performs AI-powered research.
- `--query <query>`: The research query. - `--query <query>`: The research query.
@@ -123,7 +123,7 @@ The core functionalities can be categorized as follows:
### 1. Task and Subtask Management ### 1. Task and Subtask Management
These functions are the bread and butter of the application, allowing for the creation, modification, and deletion of tasks and subtasks. These functions are the bread and butter of the application, allowing for the creation, modification, and deletion of tasks and subtasks. Note: As of v0.27.3, these operations no longer automatically generate individual task files - use the `generate` command manually when needed.
- **`addTask(prompt, dependencies, priority)`**: Creates a new task using an AI-powered prompt to generate the title, description, details, and test strategy. It can also be used to create a task manually by providing the task data directly. - **`addTask(prompt, dependencies, priority)`**: Creates a new task using an AI-powered prompt to generate the title, description, details, and test strategy. It can also be used to create a task manually by providing the task data directly.
- **`addSubtask(parentId, existingTaskId, newSubtaskData)`**: Adds a subtask to a parent task. It can either convert an existing task into a subtask or create a new subtask from scratch. - **`addSubtask(parentId, existingTaskId, newSubtaskData)`**: Adds a subtask to a parent task. It can either convert an existing task into a subtask or create a new subtask from scratch.
@@ -167,7 +167,7 @@ These functions are crucial for managing the relationships between tasks.
These functions are for managing the project and its configuration. These functions are for managing the project and its configuration.
- **`generateTaskFiles()`**: Generates individual task files from `tasks.json`. - **`generateTaskFiles()`**: Generates individual task files from `tasks.json`. This is now a manual operation - task management operations no longer automatically generate these files.
- **`migrateProject()`**: Migrates the project to the new `.taskmaster` directory structure. - **`migrateProject()`**: Migrates the project to the new `.taskmaster` directory structure.
- **`performResearch(query, options)`**: Performs AI-powered research with project context. - **`performResearch(query, options)`**: Performs AI-powered research with project context.
@@ -225,7 +225,7 @@ The MCP tools can be categorized in the same way as the core functionalities:
### 5. Project and Configuration ### 5. Project and Configuration
- **`initialize_project`**: Initializes a new project. - **`initialize_project`**: Initializes a new project.
- **`generate`**: Generates individual task files. - **`generate`**: Generates individual task files from tasks.json. Run this manually when you want to create readable text files for each task.
- **`models`**: Manages AI model configurations. - **`models`**: Manages AI model configurations.
- **`research`**: Performs AI-powered research. - **`research`**: Performs AI-powered research.

49
output.txt Normal file

File diff suppressed because one or more lines are too long