You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when Claude Squad is launched from a subdirectory within a Git repository, AI sessions always start at the worktree root. This behavior can be inconvenient when working on specific parts of a large codebase.
Proposed Enhancement
When Claude Squad is executed from a subdirectory (e.g., /project/backend/api), the AI assistant session should start in the corresponding subdirectory within the worktree, rather than at the worktree root.
Example
# Repository Root: /home/user/myproject# Current behaviorcd /home/user/myproject/backend/api
cs
# AI session starts at: ~/.config/claude-squad/worktrees/session_xxx/# Desired behaviorcd /home/user/myproject/backend/api
cs
# AI session starts at: ~/.config/claude-squad/worktrees/session_xxx/backend/api/
Benefits
More intuitive workflow when working in specific project areas
Reduces the need for AI assistants to navigate to the relevant directory
Maintains context of where the developer is working