It would be great to save and reuse session configurations as templates.
Use case: I often create sessions with the same setup - same directory, similar prompts, same environment variables. Currently I have to manually configure each new session.
Suggested implementation:
# Save current session config
cs template save "react-component"
# Start from template
cs new --template "react-component"
Template could include:
- Working directory
- Initial prompt
- Environment variables
- Program settings (claude/aider/etc)
Benefits:
- Much faster session creation
- Consistent setup for common tasks
- Could share templates with team
Similar to how VS Code has workspace templates or how tmuxinator works for tmux sessions.