Skip to content

Commit c0c98d3

Browse files
fix: replace retired task-master.dev URLs (#1691)
- README logo now links to https://tryhamster.com/product/taskmaster - Add /index suffix to Best Practices doc link - Add 'More from Hamster' section (Studio, Methods, Skills, Pricing) - sync-readme command no longer generates dead task-master.dev links
1 parent 333d0f8 commit c0c98d3

3 files changed

Lines changed: 16 additions & 4 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"task-master-ai": patch
3+
---
4+
5+
Fix `task-master sync-readme` generating links to the retired `task-master.dev` domain. Exported READMEs now link to `https://tryhamster.com/product/taskmaster`.

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</div>
66

77
<p align="center">
8-
<a href="https://task-master.dev"><img src="./images/logo.png?raw=true" alt="Taskmaster logo"></a>
8+
<a href="https://tryhamster.com/product/taskmaster"><img src="./images/logo.png?raw=true" alt="Taskmaster logo"></a>
99
</p>
1010

1111
<p align="center">
@@ -56,10 +56,17 @@ A task management system for AI-driven development with Claude, designed to work
5656
- [Loop Command](https://tryhamster.com/docs/taskmaster/automation/loop)
5757
- [AI Providers Overview](https://tryhamster.com/docs/taskmaster/ai-providers/overview)
5858
- [Team Collaboration](https://tryhamster.com/docs/taskmaster/team/overview)
59-
- [Best Practices](https://tryhamster.com/docs/taskmaster/best-practices)
59+
- [Best Practices](https://tryhamster.com/docs/taskmaster/best-practices/index)
6060
- [FAQ](https://tryhamster.com/docs/taskmaster/getting-started/faq)
6161
- [Changelog](CHANGELOG.md)
6262

63+
### More from Hamster
64+
65+
- [Hamster Studio](https://tryhamster.com/product/studio)
66+
- [Product & Engineering Methods](https://tryhamster.com/methods)
67+
- [Product & Engineering Skills](https://tryhamster.com/skills)
68+
- [Hamster Pricing](https://tryhamster.com/pricing)
69+
6370
#### Quick Install for Cursor 1.0+ (One-Click)
6471

6572
[![Add task-master-ai MCP server to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en/install-mcp?name=task-master-ai&config=eyJjb21tYW5kIjoibnB4IC15IC0tcGFja2FnZT10YXNrLW1hc3Rlci1haSB0YXNrLW1hc3Rlci1haSIsImVudiI6eyJBTlRIUk9QSUNfQVBJX0tFWSI6IllPVVJfQU5USFJPUElDX0FQSV9LRVlfSEVSRSIsIlBFUlBMRVhJVFlfQVBJX0tFWSI6IllPVVJfUEVSUExFWElUWV9BUElfS0VZX0hFUkUiLCJPUEVOQUlfQVBJX0tFWSI6IllPVVJfT1BFTkFJX0tFWV9IRVJFIiwiR09PR0xFX0FQSV9LRVkiOiJZT1VSX0dPT0dMRV9LRVlfSEVSRSIsIk1JU1RSQUxfQVBJX0tFWSI6IllPVVJfTUlTVFJBTF9LRVlfSEVSRSIsIkdST1FfQVBJX0tFWSI6IllPVVJfR1JPUV9LRVlfSEVSRSIsIk9QRU5ST1VURVJfQVBJX0tFWSI6IllPVVJfT1BFTlJPVVRFUl9LRVlfSEVSRSIsIlhBSV9BUElfS0VZIjoiWU9VUl9YQUlfS0VZX0hFUkUiLCJBWlVSRV9PUEVOQUlfQVBJX0tFWSI6IllPVVJfQVpVUkVfS0VZX0hFUkUiLCJPTExBTUFfQVBJX0tFWSI6IllPVVJfT0xMQU1BX0FQSV9LRVlfSEVSRSJ9fQ%3D%3D)

scripts/modules/sync-readme.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This project is managed using Task Master.
1919
}
2020

2121
/**
22-
* Create UTM tracking URL for task-master.dev
22+
* Create UTM tracking URL for the Taskmaster product page
2323
* @param {string} projectRoot - The project root path
2424
* @returns {string} - UTM tracked URL
2525
*/
@@ -41,7 +41,7 @@ function createTaskMasterUrl(projectRoot) {
4141
utm_content: 'task-export-link'
4242
});
4343

44-
return `https://task-master.dev?${utmParams.toString()}`;
44+
return `https://tryhamster.com/product/taskmaster?${utmParams.toString()}`;
4545
}
4646

4747
/**

0 commit comments

Comments
 (0)