@mindfoldhq/trellis 0.2.13 → 0.2.14

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "0.3.0",
3
- "description": "Command path namespace migration for brand recognition",
2
+ "version": "0.2.14",
3
+ "description": "Command namespace migration + fix incorrect task directory paths in agent docs",
4
4
  "migrations": [
5
5
  {
6
6
  "type": "rename",
@@ -169,7 +169,22 @@
169
169
  "from": ".cursor/commands/parallel.md",
170
170
  "to": ".cursor/commands/trellis-parallel.md",
171
171
  "description": "Rename Cursor parallel command with trellis- prefix"
172
+ },
173
+ {
174
+ "type": "update",
175
+ "path": ".claude/agents/dispatch.md",
176
+ "description": "Fix incorrect task directory path format (was .trellis/workspace/{dev}/tasks/, should be .trellis/tasks/)"
177
+ },
178
+ {
179
+ "type": "update",
180
+ "path": ".claude/agents/plan.md",
181
+ "description": "Fix incorrect task directory path in example output"
182
+ },
183
+ {
184
+ "type": "update",
185
+ "path": ".trellis/scripts/multi-agent/status.sh",
186
+ "description": "Remove hardcoded developer name in help example"
172
187
  }
173
188
  ],
174
- "notes": "Claude Code uses subdirectory namespacing (.claude/commands/trellis/), Cursor uses filename prefix (.cursor/commands/trellis-*) since Cursor doesn't support nested command directories"
189
+ "notes": "This release includes: (1) Command namespace migration - Claude Code uses subdirectory (.claude/commands/trellis/), Cursor uses filename prefix (.cursor/commands/trellis-*); (2) Bug fix for incorrect task directory paths that caused worktrees to be created in wrong locations"
175
190
  }
@@ -13,7 +13,7 @@ You are the Dispatch Agent in the Multi-Agent Pipeline (pure dispatcher).
13
13
 
14
14
  Current Task is specified by `.trellis/.current-task` file, content is the relative path to task directory.
15
15
 
16
- Task directory path format: `.trellis/workspace/{developer}/tasks/{MM}-{DD}-{name}/`
16
+ Task directory path format: `.trellis/tasks/{MM}-{DD}-{name}/`
17
17
 
18
18
  This directory contains all context files for the current task:
19
19
 
@@ -41,7 +41,7 @@ Read `.trellis/.current-task` to get current task directory path:
41
41
 
42
42
  ```bash
43
43
  TASK_DIR=$(cat .trellis/.current-task)
44
- # e.g.: .trellis/workspace/taosu/tasks/12-my-feature
44
+ # e.g.: .trellis/tasks/02-03-my-feature
45
45
  ```
46
46
 
47
47
  ### Step 2: Read Task Configuration
@@ -335,7 +335,7 @@ Input:
335
335
  Result: ACCEPTED - Clear, specific, has defined behavior
336
336
 
337
337
  Output:
338
- .trellis/workspace/xxx/tasks/17-add-rate-limiting/
338
+ .trellis/tasks/02-03-add-rate-limiting/
339
339
  ├── task.json # branch: feature/add-rate-limiting, scope: api
340
340
  ├── prd.md # Detailed requirements with acceptance criteria
341
341
  ├── implement.jsonl # Backend specs + existing middleware patterns
@@ -201,7 +201,7 @@ Usage:
201
201
  $0 --registry Show agent registry
202
202
 
203
203
  Examples:
204
- $0 -a taosu
204
+ $0 -a john
205
205
  $0 --detail my-task
206
206
  $0 --progress my-task
207
207
  $0 --watch 01-16-worktree-support
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindfoldhq/trellis",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "description": "AI capabilities grow like ivy — Trellis provides the structure to guide them along a disciplined path",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",