Development Environment
Use commander-mcp tools for live environment data:
get_context_environment— env vars for all servicesget_env_config(service)— env config for specific service
For manual reference: cat ~/projects/claude-config-loader/config/environment.yaml
Critical Docker/OrbStack Rules
⚠️ NEVER shut down Docker/OrbStack service:
- Multiple users and agents work in parallel
- Only manage individual containers
- Never use:
orbstack stop,docker system prune -a,killall Docker
✅ Safe operations:
docker-compose up/downfor specific servicesdocker stop/rmfor individual containersdocker-compose restartfor specific services
Project Structure
All development work is in: ~/projects/
Current projects:
!ls -1 ~/projects/ 2>/dev/null || echo "Cannot list projects"
Port Management
Always check port availability before use:
lsof -i :PORT
Use assigned port ranges consistently.