Productivity workflows for developers - Available as Warp Terminal workflows AND universal shell commands!
This repository contains developer productivity workflows that work in two ways:
- 🚀 Warp Terminal workflows - Interactive, parameter-driven workflows
- 🔧 Universal shell commands - Scripts and aliases for any terminal
# Clone and install
git clone https://github.com/cpablomrod/dev-workflows.git
cd dev-workflows
cp warp-workflows/*.yaml ~/.warp/workflows/
# Restart Warp, then press Ctrl+R to use workflows# Clone and setup aliases
git clone https://github.com/cpablomrod/dev-workflows.git
cd dev-workflows
echo "source $(pwd)/shell-aliases/git-aliases.sh" >> ~/.zshrc
source ~/.zshrc
# Use: gcb feature/new-feature| Workflow | Warp Command | Universal Alias | Raw Command |
|---|---|---|---|
| Create Git Branch | Ctrl+R → "Create a new Git branch" |
gcb <name> |
git checkout -b <name> |
├── warp-workflows/ # Warp Terminal .yaml files
├── universal-scripts/ # Standalone shell scripts
├── shell-aliases/ # Aliases for any shell
├── docs/ # Documentation
│ └── INSTALLATION.md # Detailed setup instructions
└── README.md # This file
Perfect for developers who love Warp's modern terminal experience:
- Press
Ctrl + Rto open Command Search - Type
w:to filter workflows - Select workflow and enter parameters
- Hit Enter to execute
Works in any terminal - iTerm, Terminal.app, gnome-terminal, etc:
gcb feature/user-auth # Create branch with short alias
git-create-branch hotfix/bug # Create branch with descriptive alias./universal-scripts/create-branch.sh feature/awesomegit checkout -b feature/new-feature- Installation Guide - Setup for both Warp and universal usage
- Contributing Guide - How to add new workflows
We welcome contributions! Whether you use Warp or any other terminal:
- Fork this repository
- Add your workflow in both formats:
- Warp:
warp-workflows/your-workflow.yaml - Universal:
universal-scripts/your-script.sh+ aliases
- Warp:
- Update documentation
- Submit a Pull Request
- 🌿 Git Operations - Branch management, commits, merges
- 🚀 Deployment - Build, test, deploy workflows (coming soon)
- 📦 Package Management - npm, pip, cargo operations (coming soon)
- 🐳 Docker - Container management (coming soon)
- ✅ Works Everywhere - Warp Terminal AND any other terminal
- ✅ Beginner Friendly - Simple aliases for new developers
- ✅ Power User Ready - Advanced scripts for complex workflows
- ✅ Well Documented - Clear instructions and examples
- ✅ Community Driven - Open to contributions
- Warp Terminal
- "Show global workflows in command search" enabled in settings
- Any terminal (bash, zsh, fish compatible)
- Git (for git-related workflows)
MIT License - feel free to use in personal and commercial projects!
Made with ❤️ for the developer community