create-claude-workspace 2.3.13 → 2.3.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.
@@ -290,8 +290,8 @@ export class TUI {
290
290
  return '';
291
291
  const cur = this.state.agents[this.state.agents.length - 1];
292
292
  const col = ANSI_COLORS[agentColor(cur)] || '';
293
- const name = cur.length > 14 ? cur.slice(0, 14) : cur;
294
- return `${col}${name.padEnd(15)}${RESET}`;
293
+ const name = cur.length > 24 ? cur.slice(0, 24) : cur;
294
+ return `${col}${name.padEnd(25)}${RESET}`;
295
295
  }
296
296
  // ─── Public API ───
297
297
  banner() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-workspace",
3
- "version": "2.3.13",
3
+ "version": "2.3.14",
4
4
  "author": "",
5
5
  "repository": {
6
6
  "type": "git",