fix: update Cursor one-click install link to new URL format#1131
fix: update Cursor one-click install link to new URL format#1131Crunchyman-ralph merged 2 commits intoeyaltoledano:nextfrom
Conversation
🦋 Changeset detectedLatest commit: ddd1470 The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
Caution Review failedThe pull request is closed. WalkthroughImplements cross-tag task movement across CLI and MCP, adds dependency-aware validations/errors, and introduces a streaming/non-streaming parse-prd pipeline with progress tracking. Adds a Kilo Code profile, compact list output mode, new progress UI framework, streaming JSON utilities, and updates docs/workflows. Removes legacy pre-release automation and clear-subtasks docs. Changes
Sequence Diagram(s)sequenceDiagram
participant CLI as CLI
participant MoveMod as move-task.js
participant DepMan as dependency-manager.js
participant FS as tasks.json
participant UI as ui.js
CLI->>MoveMod: moveTasksBetweenTags(taskIds, fromTag, toTag, opts)
MoveMod->>FS: readJSON(tasksPath)
MoveMod->>DepMan: validateCrossTagMove/findCrossTagDependencies
alt conflicts and not ignoring
MoveMod-->>CLI: error CROSS_TAG_DEPENDENCY_CONFLICTS
CLI->>UI: displayCrossTagDependencyError(...)
else no conflicts or ignored
MoveMod->>MoveMod: resolveDependencies(...)
MoveMod->>FS: writeJSON(updated)
MoveMod-->>CLI: result {movedTasks,...}
end
sequenceDiagram
participant CLI as CLI/MCP Tool
participant PRD as parse-prd (orchestrator)
participant AI as AI Services (stream/object)
participant Prog as Progress Tracker/UI
participant FS as tasks.json
CLI->>PRD: parsePRD(prdPath, tasksPath, num, {reportProgress?})
PRD->>FS: loadExistingTasks()
PRD->>AI: streamObjectService or generateObjectService
AI-->>PRD: partial objects/tasks (stream)
PRD->>Prog: update(progress, tokens)
loop until complete
PRD->>Prog: add task line / update bars
end
PRD->>FS: saveTasksToFile(finalTasks)
PRD-->>CLI: result {success, telemetry, tagInfo}
Estimated code review effort🎯 5 (Critical) | ⏱️ ~120+ minutes Possibly related PRs
Suggested reviewers
✨ Finishing Touches
🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
Status, Documentation and Community
|
…dano#1131) * add /en to link * add changeset
…dano#1131) * add /en to link * add changeset
…dano#1131) * add /en to link * add changeset
…dano#1131) * add /en to link * add changeset
Description
Updates the Cursor one-click MCP install link to match their new URL structure.
Changes
cursor.com/install-mcptocursor.com/en/install-mcpContext
Cursor recently changed their URL structure for MCP installation links by adding a
/enlanguage prefix to the path. This change broke the one-click installation link in our README.Testing
Impact
This fix ensures users can continue to use the convenient one-click installation method for Task Master in Cursor.
Summary by CodeRabbit
New Features
Improvements
Bug Fixes
Documentation
Chores