@damper/cli 0.6.9 → 0.6.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -159,7 +159,7 @@ export async function createWorktree(options) {
159
159
  const slug = slugify(taskTitle);
160
160
  // Put worktrees in .worktrees folder inside the project
161
161
  const worktreesDir = path.join(projectRoot, '.worktrees');
162
- const worktreePath = path.join(worktreesDir, shortTaskId);
162
+ const worktreePath = path.join(worktreesDir, `${shortTaskId}-${slug}`);
163
163
  const branchName = `feature/${slug}`;
164
164
  // Ensure .worktrees is gitignored
165
165
  const gitignorePath = path.join(projectRoot, '.gitignore');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/cli",
3
- "version": "0.6.9",
3
+ "version": "0.6.10",
4
4
  "description": "CLI tool for orchestrating Damper task workflows with Claude Code",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {