Compare commits
8 Commits
task-maste
...
extension@
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7d564920b5 | ||
|
|
2737fbaa67 | ||
|
|
9feb8d2dbf | ||
|
|
8a991587f1 | ||
|
|
7ceba2f572 | ||
|
|
10565f07d3 | ||
|
|
f27ce34fe9 | ||
|
|
71be933a8d |
@@ -1,27 +0,0 @@
|
|||||||
---
|
|
||||||
"task-master-ai": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add cross-tag task movement functionality for organizing tasks across different contexts.
|
|
||||||
|
|
||||||
This feature enables moving tasks between different tags (contexts) in your project, making it easier to organize work across different branches, environments, or project phases.
|
|
||||||
|
|
||||||
## CLI Usage Examples
|
|
||||||
|
|
||||||
Move a single task from one tag to another:
|
|
||||||
```bash
|
|
||||||
# Move task 5 from backlog tag to in-progress tag
|
|
||||||
task-master move --from=5 --from-tag=backlog --to-tag=feature-1
|
|
||||||
|
|
||||||
# Move task with its dependencies
|
|
||||||
task-master move --from=5 --from-tag=backlog --to-tag=feature-2 --with-dependencies
|
|
||||||
|
|
||||||
# Move task without checking dependencies
|
|
||||||
task-master move --from=5 --from-tag=backlog --to-tag=bug-3 --ignore-dependencies
|
|
||||||
```
|
|
||||||
|
|
||||||
Move multiple tasks at once:
|
|
||||||
```bash
|
|
||||||
# Move multiple tasks between tags
|
|
||||||
task-master move --from=5,6,7 --from-tag=backlog --to-tag=bug-4 --with-dependencies
|
|
||||||
```
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
"extension": minor
|
|
||||||
"task-master-ai": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
"Add Kilo Code profile integration with custom modes and MCP configuration"
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
"task-master-ai": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add compact mode --compact / -c flag to the `tm list` CLI command
|
|
||||||
|
|
||||||
- outputs tasks in a minimal, git-style one-line format. This reduces verbose output from ~30+ lines of dashboards and tables to just 1 line per task, making it much easier to quickly scan available tasks.
|
|
||||||
- Git-style format: ID STATUS TITLE (PRIORITY) → DEPS
|
|
||||||
- Color-coded status, priority, and dependencies
|
|
||||||
- Smart title truncation and dependency abbreviation
|
|
||||||
- Subtask support with indentation
|
|
||||||
- Full backward compatibility with existing list options
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"task-master-ai": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Update Cursor one-click install link to new URL format
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"task-master-ai": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add CLI & MCP progress tracking for parse-prd command.
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"extension": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Display current task ID on task details page
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
"task-master-ai": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix `add-tag --from-branch` command error where `projectRoot` was not properly referenced
|
|
||||||
|
|
||||||
The command was failing with "projectRoot is not defined" error because the code was directly referencing `projectRoot` instead of `context.projectRoot` in the git repository checks. This fix corrects the variable references to use the proper context object.
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"task-master-ai": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add support for ollama `gpt-oss:20b` and `gpt-oss:120b`
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"task-master-ai": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Remove `clear` Taskmaster claude code commands since they were too close to the claude-code clear command
|
|
||||||
38
.github/workflows/claude-docs-updater.yml
vendored
38
.github/workflows/claude-docs-updater.yml
vendored
@@ -5,42 +5,41 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- next
|
- next
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'apps/docs/**'
|
- "apps/docs/**"
|
||||||
- '*.md'
|
- "*.md"
|
||||||
- '.github/workflows/**'
|
- ".github/workflows/**"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-docs:
|
update-docs:
|
||||||
# Only run if changes were merged (not direct pushes from bots)
|
# Only run if changes were merged (not direct pushes from bots)
|
||||||
if: github.event.pusher.name != 'github-actions[bot]' && github.event.pusher.name != 'dependabot[bot]'
|
if: github.actor != 'github-actions[bot]' && github.actor != 'dependabot[bot]'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
issues: write
|
issues: write
|
||||||
id-token: write
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 2 # Need previous commit for comparison
|
fetch-depth: 2 # Need previous commit for comparison
|
||||||
|
|
||||||
- name: Get changed files
|
- name: Get changed files
|
||||||
id: changed-files
|
id: changed-files
|
||||||
run: |
|
run: |
|
||||||
echo "Changed files in this push:"
|
echo "Changed files in this push:"
|
||||||
git diff --name-only HEAD^ HEAD | tee changed_files.txt
|
git diff --name-only HEAD^ HEAD | tee changed_files.txt
|
||||||
|
|
||||||
# Store changed files for Claude to analyze
|
# Store changed files for Claude to analyze
|
||||||
echo "changed_files<<EOF" >> $GITHUB_OUTPUT
|
echo "changed_files<<EOF" >> $GITHUB_OUTPUT
|
||||||
git diff --name-only HEAD^ HEAD >> $GITHUB_OUTPUT
|
git diff --name-only HEAD^ HEAD >> $GITHUB_OUTPUT
|
||||||
echo "EOF" >> $GITHUB_OUTPUT
|
echo "EOF" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
# Get the commit message and changes summary
|
# Get the commit message and changes summary
|
||||||
echo "commit_message<<EOF" >> $GITHUB_OUTPUT
|
echo "commit_message<<EOF" >> $GITHUB_OUTPUT
|
||||||
git log -1 --pretty=%B >> $GITHUB_OUTPUT
|
git log -1 --pretty=%B >> $GITHUB_OUTPUT
|
||||||
echo "EOF" >> $GITHUB_OUTPUT
|
echo "EOF" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
# Get diff for documentation context
|
# Get diff for documentation context
|
||||||
echo "commit_diff<<EOF" >> $GITHUB_OUTPUT
|
echo "commit_diff<<EOF" >> $GITHUB_OUTPUT
|
||||||
git diff HEAD^ HEAD --stat >> $GITHUB_OUTPUT
|
git diff HEAD^ HEAD --stat >> $GITHUB_OUTPUT
|
||||||
@@ -58,24 +57,27 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
||||||
timeout_minutes: "30"
|
timeout_minutes: "30"
|
||||||
mode: "auto"
|
mode: "agent"
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
experimental_allowed_domains: |
|
experimental_allowed_domains: |
|
||||||
.anthropic.com
|
.anthropic.com
|
||||||
.github.com
|
.github.com
|
||||||
api.github.com
|
api.github.com
|
||||||
.githubusercontent.com
|
.githubusercontent.com
|
||||||
registry.npmjs.org
|
registry.npmjs.org
|
||||||
prompt: |
|
.task-master.dev
|
||||||
|
base_branch: "next"
|
||||||
|
direct_prompt: |
|
||||||
You are a documentation specialist. Analyze the recent changes pushed to the 'next' branch and update the documentation accordingly.
|
You are a documentation specialist. Analyze the recent changes pushed to the 'next' branch and update the documentation accordingly.
|
||||||
|
|
||||||
Recent changes:
|
Recent changes:
|
||||||
- Commit: ${{ steps.changed-files.outputs.commit_message }}
|
- Commit: ${{ steps.changed-files.outputs.commit_message }}
|
||||||
- Changed files:
|
- Changed files:
|
||||||
${{ steps.changed-files.outputs.changed_files }}
|
${{ steps.changed-files.outputs.changed_files }}
|
||||||
|
|
||||||
- Changes summary:
|
- Changes summary:
|
||||||
${{ steps.changed-files.outputs.commit_diff }}
|
${{ steps.changed-files.outputs.commit_diff }}
|
||||||
|
|
||||||
Your task:
|
Your task:
|
||||||
1. Analyze the changes to understand what functionality was added, modified, or removed
|
1. Analyze the changes to understand what functionality was added, modified, or removed
|
||||||
2. Check if these changes require documentation updates in apps/docs/
|
2. Check if these changes require documentation updates in apps/docs/
|
||||||
@@ -86,7 +88,7 @@ jobs:
|
|||||||
- Add new documentation pages if new features were added
|
- Add new documentation pages if new features were added
|
||||||
- Update the changelog or release notes if applicable
|
- Update the changelog or release notes if applicable
|
||||||
4. If no documentation updates are needed, skip creating changes
|
4. If no documentation updates are needed, skip creating changes
|
||||||
|
|
||||||
Guidelines:
|
Guidelines:
|
||||||
- Focus only on user-facing changes that need documentation
|
- Focus only on user-facing changes that need documentation
|
||||||
- Keep documentation clear, concise, and helpful
|
- Keep documentation clear, concise, and helpful
|
||||||
@@ -94,7 +96,7 @@ jobs:
|
|||||||
- Maintain consistent documentation style with existing docs
|
- Maintain consistent documentation style with existing docs
|
||||||
- Don't document internal implementation details unless they affect users
|
- Don't document internal implementation details unless they affect users
|
||||||
- Update navigation/menu files if new pages are added
|
- Update navigation/menu files if new pages are added
|
||||||
|
|
||||||
Only make changes if the documentation truly needs updating based on the code changes.
|
Only make changes if the documentation truly needs updating based on the code changes.
|
||||||
|
|
||||||
- name: Check if changes were made
|
- name: Check if changes were made
|
||||||
@@ -122,7 +124,7 @@ jobs:
|
|||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
git push origin ${{ steps.create-branch.outputs.branch_name }}
|
git push origin ${{ steps.create-branch.outputs.branch_name }}
|
||||||
|
|
||||||
# Create PR using GitHub CLI
|
# Create PR using GitHub CLI
|
||||||
gh pr create \
|
gh pr create \
|
||||||
--title "docs: update documentation for recent changes" \
|
--title "docs: update documentation for recent changes" \
|
||||||
@@ -151,4 +153,4 @@ jobs:
|
|||||||
--base next \
|
--base next \
|
||||||
--head ${{ steps.create-branch.outputs.branch_name }} \
|
--head ${{ steps.create-branch.outputs.branch_name }} \
|
||||||
--label "documentation" \
|
--label "documentation" \
|
||||||
--label "automated"
|
--label "automated"
|
||||||
|
|||||||
108
CHANGELOG.md
108
CHANGELOG.md
@@ -1,5 +1,113 @@
|
|||||||
# task-master-ai
|
# task-master-ai
|
||||||
|
|
||||||
|
## 0.25.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#1088](https://github.com/eyaltoledano/claude-task-master/pull/1088) [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Add cross-tag task movement functionality for organizing tasks across different contexts.
|
||||||
|
|
||||||
|
This feature enables moving tasks between different tags (contexts) in your project, making it easier to organize work across different branches, environments, or project phases.
|
||||||
|
|
||||||
|
## CLI Usage Examples
|
||||||
|
|
||||||
|
Move a single task from one tag to another:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Move task 5 from backlog tag to in-progress tag
|
||||||
|
task-master move --from=5 --from-tag=backlog --to-tag=feature-1
|
||||||
|
|
||||||
|
# Move task with its dependencies
|
||||||
|
task-master move --from=5 --from-tag=backlog --to-tag=feature-2 --with-dependencies
|
||||||
|
|
||||||
|
# Move task without checking dependencies
|
||||||
|
task-master move --from=5 --from-tag=backlog --to-tag=bug-3 --ignore-dependencies
|
||||||
|
```
|
||||||
|
|
||||||
|
Move multiple tasks at once:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Move multiple tasks between tags
|
||||||
|
task-master move --from=5,6,7 --from-tag=backlog --to-tag=bug-4 --with-dependencies
|
||||||
|
```
|
||||||
|
|
||||||
|
- [#1040](https://github.com/eyaltoledano/claude-task-master/pull/1040) [`fc47714`](https://github.com/eyaltoledano/claude-task-master/commit/fc477143400fd11d953727bf1b4277af5ad308d1) Thanks [@DomVidja](https://github.com/DomVidja)! - "Add Kilo Code profile integration with custom modes and MCP configuration"
|
||||||
|
|
||||||
|
- [#1054](https://github.com/eyaltoledano/claude-task-master/pull/1054) [`782728f`](https://github.com/eyaltoledano/claude-task-master/commit/782728ff95aa2e3b766d48273b57f6c6753e8573) Thanks [@martincik](https://github.com/martincik)! - Add compact mode --compact / -c flag to the `tm list` CLI command
|
||||||
|
- outputs tasks in a minimal, git-style one-line format. This reduces verbose output from ~30+ lines of dashboards and tables to just 1 line per task, making it much easier to quickly scan available tasks.
|
||||||
|
- Git-style format: ID STATUS TITLE (PRIORITY) → DEPS
|
||||||
|
- Color-coded status, priority, and dependencies
|
||||||
|
- Smart title truncation and dependency abbreviation
|
||||||
|
- Subtask support with indentation
|
||||||
|
- Full backward compatibility with existing list options
|
||||||
|
|
||||||
|
- [#1048](https://github.com/eyaltoledano/claude-task-master/pull/1048) [`e3ed4d7`](https://github.com/eyaltoledano/claude-task-master/commit/e3ed4d7c14b56894d7da675eb2b757423bea8f9d) Thanks [@joedanz](https://github.com/joedanz)! - Add CLI & MCP progress tracking for parse-prd command.
|
||||||
|
|
||||||
|
- [#1124](https://github.com/eyaltoledano/claude-task-master/pull/1124) [`95640dc`](https://github.com/eyaltoledano/claude-task-master/commit/95640dcde87ce7879858c0a951399fb49f3b6397) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add support for ollama `gpt-oss:20b` and `gpt-oss:120b`
|
||||||
|
|
||||||
|
- [#1123](https://github.com/eyaltoledano/claude-task-master/pull/1123) [`311b243`](https://github.com/eyaltoledano/claude-task-master/commit/311b2433e23c771c8d3a4d3f5ac577302b8321e5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Remove `clear` Taskmaster claude code commands since they were too close to the claude-code clear command
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#1131](https://github.com/eyaltoledano/claude-task-master/pull/1131) [`3dee60d`](https://github.com/eyaltoledano/claude-task-master/commit/3dee60dc3d566e3cff650accb30f994b8bb3a15e) Thanks [@joedanz](https://github.com/joedanz)! - Update Cursor one-click install link to new URL format
|
||||||
|
|
||||||
|
- [#1088](https://github.com/eyaltoledano/claude-task-master/pull/1088) [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Fix `add-tag --from-branch` command error where `projectRoot` was not properly referenced
|
||||||
|
|
||||||
|
The command was failing with "projectRoot is not defined" error because the code was directly referencing `projectRoot` instead of `context.projectRoot` in the git repository checks. This fix corrects the variable references to use the proper context object.
|
||||||
|
|
||||||
|
## 0.25.0-rc.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#1088](https://github.com/eyaltoledano/claude-task-master/pull/1088) [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Add cross-tag task movement functionality for organizing tasks across different contexts.
|
||||||
|
|
||||||
|
This feature enables moving tasks between different tags (contexts) in your project, making it easier to organize work across different branches, environments, or project phases.
|
||||||
|
|
||||||
|
## CLI Usage Examples
|
||||||
|
|
||||||
|
Move a single task from one tag to another:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Move task 5 from backlog tag to in-progress tag
|
||||||
|
task-master move --from=5 --from-tag=backlog --to-tag=feature-1
|
||||||
|
|
||||||
|
# Move task with its dependencies
|
||||||
|
task-master move --from=5 --from-tag=backlog --to-tag=feature-2 --with-dependencies
|
||||||
|
|
||||||
|
# Move task without checking dependencies
|
||||||
|
task-master move --from=5 --from-tag=backlog --to-tag=bug-3 --ignore-dependencies
|
||||||
|
```
|
||||||
|
|
||||||
|
Move multiple tasks at once:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Move multiple tasks between tags
|
||||||
|
task-master move --from=5,6,7 --from-tag=backlog --to-tag=bug-4 --with-dependencies
|
||||||
|
```
|
||||||
|
|
||||||
|
- [#1040](https://github.com/eyaltoledano/claude-task-master/pull/1040) [`fc47714`](https://github.com/eyaltoledano/claude-task-master/commit/fc477143400fd11d953727bf1b4277af5ad308d1) Thanks [@DomVidja](https://github.com/DomVidja)! - "Add Kilo Code profile integration with custom modes and MCP configuration"
|
||||||
|
|
||||||
|
- [#1054](https://github.com/eyaltoledano/claude-task-master/pull/1054) [`782728f`](https://github.com/eyaltoledano/claude-task-master/commit/782728ff95aa2e3b766d48273b57f6c6753e8573) Thanks [@martincik](https://github.com/martincik)! - Add compact mode --compact / -c flag to the `tm list` CLI command
|
||||||
|
- outputs tasks in a minimal, git-style one-line format. This reduces verbose output from ~30+ lines of dashboards and tables to just 1 line per task, making it much easier to quickly scan available tasks.
|
||||||
|
- Git-style format: ID STATUS TITLE (PRIORITY) → DEPS
|
||||||
|
- Color-coded status, priority, and dependencies
|
||||||
|
- Smart title truncation and dependency abbreviation
|
||||||
|
- Subtask support with indentation
|
||||||
|
- Full backward compatibility with existing list options
|
||||||
|
|
||||||
|
- [#1048](https://github.com/eyaltoledano/claude-task-master/pull/1048) [`e3ed4d7`](https://github.com/eyaltoledano/claude-task-master/commit/e3ed4d7c14b56894d7da675eb2b757423bea8f9d) Thanks [@joedanz](https://github.com/joedanz)! - Add CLI & MCP progress tracking for parse-prd command.
|
||||||
|
|
||||||
|
- [#1124](https://github.com/eyaltoledano/claude-task-master/pull/1124) [`95640dc`](https://github.com/eyaltoledano/claude-task-master/commit/95640dcde87ce7879858c0a951399fb49f3b6397) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Add support for ollama `gpt-oss:20b` and `gpt-oss:120b`
|
||||||
|
|
||||||
|
- [#1123](https://github.com/eyaltoledano/claude-task-master/pull/1123) [`311b243`](https://github.com/eyaltoledano/claude-task-master/commit/311b2433e23c771c8d3a4d3f5ac577302b8321e5) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Remove `clear` Taskmaster claude code commands since they were too close to the claude-code clear command
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#1131](https://github.com/eyaltoledano/claude-task-master/pull/1131) [`3dee60d`](https://github.com/eyaltoledano/claude-task-master/commit/3dee60dc3d566e3cff650accb30f994b8bb3a15e) Thanks [@joedanz](https://github.com/joedanz)! - Update Cursor one-click install link to new URL format
|
||||||
|
|
||||||
|
- [#1088](https://github.com/eyaltoledano/claude-task-master/pull/1088) [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8) Thanks [@mm-parthy](https://github.com/mm-parthy)! - Fix `add-tag --from-branch` command error where `projectRoot` was not properly referenced
|
||||||
|
|
||||||
|
The command was failing with "projectRoot is not defined" error because the code was directly referencing `projectRoot` instead of `context.projectRoot` in the git repository checks. This fix corrects the variable references to use the proper context object.
|
||||||
|
|
||||||
## 0.24.0
|
## 0.24.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
3
apps/docs/CHANGELOG.md
Normal file
3
apps/docs/CHANGELOG.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# docs
|
||||||
|
|
||||||
|
## 0.0.1
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "docs",
|
"name": "docs",
|
||||||
"version": "0.0.0",
|
"version": "0.0.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Task Master documentation powered by Mintlify",
|
"description": "Task Master documentation powered by Mintlify",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,5 +1,29 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 0.24.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#1100](https://github.com/eyaltoledano/claude-task-master/pull/1100) [`30ca144`](https://github.com/eyaltoledano/claude-task-master/commit/30ca144231c36a6c63911f20adc225d38fb15a2f) Thanks [@vedovelli](https://github.com/vedovelli)! - Display current task ID on task details page
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8), [`fc47714`](https://github.com/eyaltoledano/claude-task-master/commit/fc477143400fd11d953727bf1b4277af5ad308d1), [`782728f`](https://github.com/eyaltoledano/claude-task-master/commit/782728ff95aa2e3b766d48273b57f6c6753e8573), [`3dee60d`](https://github.com/eyaltoledano/claude-task-master/commit/3dee60dc3d566e3cff650accb30f994b8bb3a15e), [`e3ed4d7`](https://github.com/eyaltoledano/claude-task-master/commit/e3ed4d7c14b56894d7da675eb2b757423bea8f9d), [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8), [`95640dc`](https://github.com/eyaltoledano/claude-task-master/commit/95640dcde87ce7879858c0a951399fb49f3b6397), [`311b243`](https://github.com/eyaltoledano/claude-task-master/commit/311b2433e23c771c8d3a4d3f5ac577302b8321e5)]:
|
||||||
|
- task-master-ai@0.25.0
|
||||||
|
|
||||||
|
## 0.24.0-rc.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#1040](https://github.com/eyaltoledano/claude-task-master/pull/1040) [`fc47714`](https://github.com/eyaltoledano/claude-task-master/commit/fc477143400fd11d953727bf1b4277af5ad308d1) Thanks [@DomVidja](https://github.com/DomVidja)! - "Add Kilo Code profile integration with custom modes and MCP configuration"
|
||||||
|
|
||||||
|
- [#1100](https://github.com/eyaltoledano/claude-task-master/pull/1100) [`30ca144`](https://github.com/eyaltoledano/claude-task-master/commit/30ca144231c36a6c63911f20adc225d38fb15a2f) Thanks [@vedovelli](https://github.com/vedovelli)! - Display current task ID on task details page
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [[`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8), [`fc47714`](https://github.com/eyaltoledano/claude-task-master/commit/fc477143400fd11d953727bf1b4277af5ad308d1), [`782728f`](https://github.com/eyaltoledano/claude-task-master/commit/782728ff95aa2e3b766d48273b57f6c6753e8573), [`3dee60d`](https://github.com/eyaltoledano/claude-task-master/commit/3dee60dc3d566e3cff650accb30f994b8bb3a15e), [`e3ed4d7`](https://github.com/eyaltoledano/claude-task-master/commit/e3ed4d7c14b56894d7da675eb2b757423bea8f9d), [`04e11b5`](https://github.com/eyaltoledano/claude-task-master/commit/04e11b5e828597c0ba5b82ca7d5fb6f933e4f1e8), [`95640dc`](https://github.com/eyaltoledano/claude-task-master/commit/95640dcde87ce7879858c0a951399fb49f3b6397), [`311b243`](https://github.com/eyaltoledano/claude-task-master/commit/311b2433e23c771c8d3a4d3f5ac577302b8321e5)]:
|
||||||
|
- task-master-ai@0.25.0-rc.0
|
||||||
|
|
||||||
## 0.23.1
|
## 0.23.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -3,15 +3,23 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"displayName": "TaskMaster",
|
"displayName": "TaskMaster",
|
||||||
"description": "A visual Kanban board interface for TaskMaster projects in VS Code",
|
"description": "A visual Kanban board interface for TaskMaster projects in VS Code",
|
||||||
"version": "0.23.1",
|
"version": "0.24.0",
|
||||||
"publisher": "Hamster",
|
"publisher": "Hamster",
|
||||||
"icon": "assets/icon.png",
|
"icon": "assets/icon.png",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.93.0"
|
"vscode": "^1.93.0"
|
||||||
},
|
},
|
||||||
"categories": ["AI", "Visualization", "Education", "Other"],
|
"categories": [
|
||||||
|
"AI",
|
||||||
|
"Visualization",
|
||||||
|
"Education",
|
||||||
|
"Other"
|
||||||
|
],
|
||||||
"main": "./dist/extension.js",
|
"main": "./dist/extension.js",
|
||||||
"activationEvents": ["onStartupFinished", "workspaceContains:.taskmaster/**"],
|
"activationEvents": [
|
||||||
|
"onStartupFinished",
|
||||||
|
"workspaceContains:.taskmaster/**"
|
||||||
|
],
|
||||||
"contributes": {
|
"contributes": {
|
||||||
"viewsContainers": {
|
"viewsContainers": {
|
||||||
"activitybar": [
|
"activitybar": [
|
||||||
@@ -139,7 +147,11 @@
|
|||||||
},
|
},
|
||||||
"taskmaster.ui.theme": {
|
"taskmaster.ui.theme": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": ["auto", "light", "dark"],
|
"enum": [
|
||||||
|
"auto",
|
||||||
|
"light",
|
||||||
|
"dark"
|
||||||
|
],
|
||||||
"default": "auto",
|
"default": "auto",
|
||||||
"description": "UI theme preference"
|
"description": "UI theme preference"
|
||||||
},
|
},
|
||||||
@@ -200,7 +212,12 @@
|
|||||||
},
|
},
|
||||||
"taskmaster.debug.logLevel": {
|
"taskmaster.debug.logLevel": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": ["error", "warn", "info", "debug"],
|
"enum": [
|
||||||
|
"error",
|
||||||
|
"warn",
|
||||||
|
"info",
|
||||||
|
"debug"
|
||||||
|
],
|
||||||
"default": "info",
|
"default": "info",
|
||||||
"description": "Logging level"
|
"description": "Logging level"
|
||||||
},
|
},
|
||||||
@@ -239,7 +256,7 @@
|
|||||||
"check-types": "tsc --noEmit"
|
"check-types": "tsc --noEmit"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"task-master-ai": "0.24.0"
|
"task-master-ai": "0.25.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@dnd-kit/core": "^6.3.1",
|
"@dnd-kit/core": "^6.3.1",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "task-master-ai",
|
"name": "task-master-ai",
|
||||||
"version": "0.24.0",
|
"version": "0.25.0",
|
||||||
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
|
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@@ -9,7 +9,10 @@
|
|||||||
"task-master-mcp": "mcp-server/server.js",
|
"task-master-mcp": "mcp-server/server.js",
|
||||||
"task-master-ai": "mcp-server/server.js"
|
"task-master-ai": "mcp-server/server.js"
|
||||||
},
|
},
|
||||||
"workspaces": ["apps/*", "."],
|
"workspaces": [
|
||||||
|
"apps/*",
|
||||||
|
"."
|
||||||
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "node --experimental-vm-modules node_modules/.bin/jest",
|
"test": "node --experimental-vm-modules node_modules/.bin/jest",
|
||||||
"test:fails": "node --experimental-vm-modules node_modules/.bin/jest --onlyFailures",
|
"test:fails": "node --experimental-vm-modules node_modules/.bin/jest --onlyFailures",
|
||||||
|
|||||||
Reference in New Issue
Block a user