No stacks running
Start an environment from a worktree:
make dev make dev-e2e make dev-int
`;
}
// Group stacks by worktree name so all envs for the same
// worktree appear in a single card.
const groups = new Map();
for (const stack of stacks) {
const key = stack.worktree || 'unknown';
if (!groups.has(key)) groups.set(key, []);
groups.get(key).push(stack);
}
return `