Skip to content

Commit 292c2ca

Browse files
authored
Merge pull request #722 from eyaltoledano/changeset-release/main
Version Packages
2 parents 1b86ce6 + 526d64f commit 292c2ca

9 files changed

+70
-95
lines changed

.changeset/curly-dragons-design.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/eleven-news-check.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/four-cups-enter.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

.changeset/pink-houses-lay.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/polite-areas-shave.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/pre.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/vast-shrimps-happen.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,74 @@
11
# task-master-ai
22

3+
## 0.16.2
4+
5+
### Patch Changes
6+
7+
- [#695](https://github.com/eyaltoledano/claude-task-master/pull/695) [`1ece6f1`](https://github.com/eyaltoledano/claude-task-master/commit/1ece6f19048df6ae2a0b25cbfb84d2c0f430642c) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - improve findTasks algorithm for resolving tasks path
8+
9+
- [#695](https://github.com/eyaltoledano/claude-task-master/pull/695) [`ee0be04`](https://github.com/eyaltoledano/claude-task-master/commit/ee0be04302cc602246de5cd296291db69bc8b300) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix update tool on MCP giving `No valid tasks found`
10+
11+
- [#699](https://github.com/eyaltoledano/claude-task-master/pull/699) [`27edbd8`](https://github.com/eyaltoledano/claude-task-master/commit/27edbd8f3fe5e2ac200b80e7f27f4c0e74a074d6) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Enhanced add-task fuzzy search intelligence and improved user experience
12+
13+
**Smarter Task Discovery:**
14+
15+
- Remove hardcoded category system that always matched "Task management"
16+
- Eliminate arbitrary limits on fuzzy search results (5→25 high relevance, 3→10 medium relevance, 8→20 detailed tasks)
17+
- Improve semantic weighting in Fuse.js search (details=3, description=2, title=1.5) for better relevance
18+
- Generate context-driven task recommendations based on true semantic similarity
19+
20+
**Enhanced Terminal Experience:**
21+
22+
- Fix duplicate banner display issue that was "eating" terminal history (closes #553)
23+
- Remove console.clear() and redundant displayBanner() calls from UI functions
24+
- Preserve command history for better development workflow
25+
- Streamline banner display across all commands (list, next, show, set-status, clear-subtasks, dependency commands)
26+
27+
**Visual Improvements:**
28+
29+
- Replace emoji complexity indicators with clean filled circle characters (●) for professional appearance
30+
- Improve consistency and readability of task complexity display
31+
32+
**AI Provider Compatibility:**
33+
34+
- Change generateObject mode from 'tool' to 'auto' for better cross-provider compatibility
35+
- Add qwen3-235n-a22b:free model support (closes #687)
36+
- Add smart warnings for free OpenRouter models with limitations (rate limits, restricted context, no tool_use)
37+
38+
**Technical Improvements:**
39+
40+
- Enhanced context generation in add-task to rely on semantic similarity rather than rigid pattern matching
41+
- Improved dependency analysis and common pattern detection
42+
- Better handling of task relationships and relevance scoring
43+
- More intelligent task suggestion algorithms
44+
45+
The add-task system now provides truly relevant task context based on semantic understanding rather than arbitrary categories and limits, while maintaining a cleaner and more professional terminal experience.
46+
47+
- [#655](https://github.com/eyaltoledano/claude-task-master/pull/655) [`edaa5fe`](https://github.com/eyaltoledano/claude-task-master/commit/edaa5fe0d56e0e4e7c4370670a7a388eebd922ac) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Fix double .taskmaster directory paths in file resolution utilities
48+
49+
- Closes #636
50+
51+
- [#671](https://github.com/eyaltoledano/claude-task-master/pull/671) [`86ea6d1`](https://github.com/eyaltoledano/claude-task-master/commit/86ea6d1dbc03eeb39f524f565b50b7017b1d2c9c) Thanks [@joedanz](https://github.com/joedanz)! - Add one-click MCP server installation for Cursor
52+
53+
- [#699](https://github.com/eyaltoledano/claude-task-master/pull/699) [`2e55757`](https://github.com/eyaltoledano/claude-task-master/commit/2e55757b2698ba20b78f09ec0286951297510b8e) Thanks [@eyaltoledano](https://github.com/eyaltoledano)! - Add sync-readme command for a task export to GitHub README
54+
55+
Introduces a new `sync-readme` command that exports your task list to your project's README.md file.
56+
57+
**Features:**
58+
59+
- **Flexible filtering**: Supports `--status` filtering (e.g., pending, done) and `--with-subtasks` flag
60+
- **Smart content management**: Automatically replaces existing exports or appends to new READMEs
61+
- **Metadata display**: Shows export timestamp, subtask inclusion status, and filter settings
62+
63+
**Usage:**
64+
65+
- `task-master sync-readme` - Export tasks without subtasks
66+
- `task-master sync-readme --with-subtasks` - Include subtasks in export
67+
- `task-master sync-readme --status=pending` - Only export pending tasks
68+
- `task-master sync-readme --status=done --with-subtasks` - Export completed tasks with subtasks
69+
70+
Perfect for showcasing project progress on GitHub. Experimental. Open to feedback.
71+
372
## 0.16.2-rc.0
473

574
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "task-master-ai",
3-
"version": "0.16.2-rc.0",
3+
"version": "0.16.2",
44
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
55
"main": "index.js",
66
"type": "module",

0 commit comments

Comments
 (0)