Commit Graph

962 Commits

Author SHA1 Message Date
Joe Danziger
77f54dcf3d enumerate brands for brand rules 2025-05-23 19:50:00 -04:00
Joe Danziger
73963d4007 clean up 2025-05-23 18:52:46 -04:00
Joe Danziger
d5ac1af36a update var name 2025-05-23 18:20:23 -04:00
Eyal Toledano
91fc779714 chore: adjusts changesets and an import. 2025-05-23 17:41:25 -04:00
Eyal Toledano
8c69c0aafd Task management, research, improvements for 24, 41 and 51 2025-05-23 17:30:25 -04:00
Joe Danziger
d227643729 initialize with all brands if nothing specified 2025-05-23 16:48:58 -04:00
Joe Danziger
4c3c523145 update comments 2025-05-23 16:36:34 -04:00
Joe Danziger
922355c003 only run rules interactive setup if not provided via command line 2025-05-23 16:34:49 -04:00
Joe Danziger
a9f20e1af8 use profile js for mcp config settings 2025-05-23 16:21:01 -04:00
Joe Danziger
499aa2b203 default to all rules 2025-05-23 15:37:11 -04:00
Eyal Toledano
43ad75c7fa chore: formatting 2025-05-23 14:44:53 -04:00
Eyal Toledano
a59dd037cf chore: changeset for Claude Code rules. depends on us adding it as an init option from the other PR. 2025-05-23 13:23:26 -04:00
Eyal Toledano
3293c7858b feat: adds AGENTS.md to the assets/ folder so we can add it into the project if the user selects Claude Code as the IDE of choice in the init sequence (to be done in another PR) 2025-05-23 13:17:45 -04:00
Eyal Toledano
b371808524 fix(models): Adjusts the Claude 4 models and introduces the llms-install.md file to enable AI agents to install the Taskmaster MCP server programmatically. 2025-05-23 12:59:14 -04:00
Joe Danziger
ead4aa4a2d move confirmation to /src/ui/confirm.js 2025-05-22 15:47:52 -04:00
Joe Danziger
1b92d5803a move rule-transformer.js to /src/utils 2025-05-22 15:32:15 -04:00
Joe Danziger
243a9400c7 move rules-setup.js to /src/utils 2025-05-22 15:25:23 -04:00
Joe Danziger
11f2bc4c20 optimize imports 2025-05-22 15:18:08 -04:00
Joe Danziger
72faba846d move to /src/utils 2025-05-22 15:10:51 -04:00
Joe Danziger
d5b45e4eba remove comments 2025-05-22 15:00:25 -04:00
Joe Danziger
77c3bb5d2b remove comment 2025-05-22 14:54:32 -04:00
Joe Danziger
9c9f6a2754 update to minor 2025-05-22 14:28:11 -04:00
Joe Danziger
c5c46e0cf8 update "brand rules" to "rules" 2025-05-22 14:26:08 -04:00
Joe Danziger
0c64e9a739 update error message 2025-05-22 13:44:00 -04:00
Joe Danziger
b67217c995 remove rules just for this repository - only include rules to be distributed 2025-05-22 13:14:15 -04:00
Joe Danziger
4854a6c730 Merge branch 'next' of https://github.com/eyaltoledano/claude-task-master into joedanz/flexible-brand-rules 2025-05-22 13:10:58 -04:00
Shrey Paharia
86d8f00af8 Add next task to set status for mcp server (#558) 2025-05-22 11:09:36 +02:00
Eyal Toledano
0c55ce0165 chore: linting and prettier 2025-05-22 04:17:06 -04:00
Eyal Toledano
5a91941913 removes changeset for set/mark which i didnt add in the end 2025-05-22 04:15:10 -04:00
Eyal Toledano
04af16de27 feat(move-tasks): Implement move command for tasks and subtasks
Adds a new CLI command and MCP tool to reorganize tasks and subtasks within the hierarchy. Features include:
- Moving tasks between different positions in the task list
- Converting tasks to subtasks and vice versa
- Moving subtasks between parents
- Moving multiple tasks at once with comma-separated IDs
- Creating placeholder tasks when moving to new IDs
- Validation to prevent accidental data loss

This is particularly useful for resolving merge conflicts when multiple team members create tasks on different branches.
2025-05-22 04:14:22 -04:00
Eyal Toledano
edf0f23005 update changesets 2025-05-22 03:03:25 -04:00
Eyal Toledano
e0e1155260 fix(parse-prd): Fix parameter naming inconsistency in CLI parse-prd command 2025-05-22 02:59:32 -04:00
Eyal Toledano
70f4054f26 feat(parse-prd): Add research flag to parse-prd command for enhanced PRD analysis. Significantly improves parse PRD system prompt when used with research. 2025-05-22 02:57:51 -04:00
Eyal Toledano
34c769bcd0 feat(analyze): add task ID filtering to analyze-complexity command
Enhance analyze-complexity to support analyzing specific tasks by ID or range:
- Add --id option for comma-separated task IDs
- Add --from/--to options for analyzing tasks within a range
- Implement intelligent merging with existing reports
- Update CLI, MCP tools, and direct functions for consistent support
- Add changeset documenting the feature
2025-05-22 01:49:41 -04:00
Eyal Toledano
34df2c8bbd feat: automatically create tasks.json when missing (Task #68)
This commit implements automatic tasks.json file creation when it doesn't exist:

- When tasks.json is missing or invalid, create a new one with { tasks: [] }
- Allows adding tasks immediately after initializing a project without parsing a PRD
- Replaces error with informative feedback about file creation
- Enables smoother workflow for new projects or directories

This change improves user experience by removing the requirement to parse a PRD
before adding the first task to a newly initialized project. Closes #494
2025-05-22 01:18:27 -04:00
Eyal Toledano
5e9bc28abe feat(add-task): enhance dependency detection with semantic search
This commit significantly improves the  functionality by implementing
fuzzy semantic search to find contextually relevant dependencies:

- Add Fuse.js for powerful fuzzy search capability with weighted multi-field matching
- Implement score-based relevance ranking with high/medium relevance tiers
- Enhance context generation to include detailed information about similar tasks
- Fix context shadowing issue that prevented detailed task information from
  reaching the AI model
- Add informative CLI output showing semantic search results and dependency patterns
- Improve formatting of dependency information in prompts with task titles

The result is that newly created tasks are automatically placed within the correct
dependency structure without manual intervention, with the AI having much better
context about which tasks are most relevant to the new one being created.

This significantly improves the user experience by reducing the need to manually
update task dependencies after creation, all without increasing token usage or costs.
2025-05-22 01:09:40 -04:00
Eyal Toledano
d2e64318e2 fix(ai-services): add logic for API key checking in fallback sequence 2025-05-21 22:49:25 -04:00
Eyal Toledano
4c835264ac task management 2025-05-21 21:23:39 -04:00
Joe Danziger
1691189687 fix formatting 2025-05-21 13:00:11 -04:00
Joe Danziger
6c69522017 add mcpConfigName value for parh 2025-05-21 13:00:04 -04:00
Joe Danziger
c12cff1890 specify whether to create mcp config and filename 2025-05-21 12:43:05 -04:00
Joe Danziger
9eacd6e061 add brandDir to remove ambiguity and support Cline 2025-05-21 12:28:56 -04:00
Joe Danziger
97859d8d7e add cline profile 2025-05-21 09:39:08 -04:00
github-actions[bot]
c882f89a8c Version Packages 2025-05-20 18:40:38 +02:00
Ralph Khreish
20e1b72a17 Merge pull request #549 from eyaltoledano/changeset-release/main
Version Packages
v0.14.0
2025-05-20 00:34:13 +02:00
github-actions[bot]
db631f43a5 Version Packages 2025-05-19 22:31:08 +00:00
Ralph Khreish
3b9402f1f8 Merge Release 0.14.0 #529
Release 0.14.0
2025-05-20 00:30:46 +02:00
Ralph Khreish
c8c0fc2a57 fix: improve ollama object to telemetry structure (#546) 2025-05-19 23:05:45 +02:00
Joe Danziger
042da6a2cf Merge branch 'joedanz/flexible-brand-rules' of https://github.com/joedanz/claude-task-master into joedanz/flexible-brand-rules
# Conflicts:
#	scripts/modules/commands.js
2025-05-19 11:21:26 -04:00
Joe Danziger
3ef21ecad8 Merge branch 'next' of https://github.com/eyaltoledano/claude-task-master into joedanz/flexible-brand-rules 2025-05-19 11:17:19 -04:00