chore: adjusts changesets and an import.

This commit is contained in:
Eyal Toledano
2025-05-23 17:41:25 -04:00
parent 8c69c0aafd
commit 91fc779714
6 changed files with 11 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
--- ---
'task-master-ai': patch 'task-master-ai': minor
--- ---
Adds and updates supported AI models with costs: Adds and updates supported AI models with costs:

View File

@@ -1,8 +1,8 @@
--- ---
'task-master-ai': patch 'task-master-ai': minor
--- ---
Add `--research` flag to parse-prd command, enabling enhanced task generation from PRD files. When used, Taskmaster leverages the Perplexity AI research model to: Add `--research` flag to parse-prd command, enabling enhanced task generation from PRD files. When used, Taskmaster leverages the research model to:
- Research current technologies and best practices relevant to the project - Research current technologies and best practices relevant to the project
- Identify technical challenges and security concerns not explicitly mentioned in the PRD - Identify technical challenges and security concerns not explicitly mentioned in the PRD

View File

@@ -1,5 +1,5 @@
--- ---
'task-master-ai': patch 'task-master-ai': minor
--- ---
This change significantly enhances the `add-task` command's intelligence. When you add a new task, Taskmaster now automatically: This change significantly enhances the `add-task` command's intelligence. When you add a new task, Taskmaster now automatically:

View File

@@ -1,5 +1,7 @@
--- ---
'task-master-ai': patch 'task-master-ai': minor
--- ---
Enhance analyze-complexity to support analyzing specific task IDs. Users can now analyze individual tasks or selected task groups by using the new `--id` option with comma-separated IDs, or `--from` and `--to` options to specify a range of tasks. The feature intelligently merges analysis results with existing reports, allowing incremental analysis while preserving previous results. Enhance analyze-complexity to support analyzing specific task IDs.
- You can now analyze individual tasks or selected task groups by using the new `--id` option with comma-separated IDs, or `--from` and `--to` options to specify a range of tasks.
- The feature intelligently merges analysis results with existing reports, allowing incremental analysis while preserving previous results.

View File

@@ -1,5 +1,5 @@
--- ---
'task-master-ai': patch 'task-master-ai': minor
--- ---
Add move command to enable moving tasks and subtasks within the task hierarchy. This new command supports moving standalone tasks to become subtasks, subtasks to become standalone tasks, and moving subtasks between different parents. The implementation handles circular dependencies, validation, and proper updating of parent-child relationships. Add move command to enable moving tasks and subtasks within the task hierarchy. This new command supports moving standalone tasks to become subtasks, subtasks to become standalone tasks, and moving subtasks between different parents. The implementation handles circular dependencies, validation, and proper updating of parent-child relationships.

View File

@@ -21,7 +21,7 @@ import {
getBaseUrlForRole, getBaseUrlForRole,
isApiKeySet isApiKeySet
} from './config-manager.js'; } from './config-manager.js';
import { log, resolveEnvVariable, isSilentMode } from './utils.js'; import { log, resolveEnvVariable, findProjectRoot } from './utils.js';
import * as anthropic from '../../src/ai-providers/anthropic.js'; import * as anthropic from '../../src/ai-providers/anthropic.js';
import * as perplexity from '../../src/ai-providers/perplexity.js'; import * as perplexity from '../../src/ai-providers/perplexity.js';
@@ -323,8 +323,7 @@ async function _unifiedServiceRunner(serviceType, params) {
}); });
} }
const { findProjectRoot: detectProjectRoot } = await import('./utils.js'); const effectiveProjectRoot = projectRoot || findProjectRoot();
const effectiveProjectRoot = projectRoot || detectProjectRoot();
const userId = getUserId(effectiveProjectRoot); const userId = getUserId(effectiveProjectRoot);
let sequence; let sequence;