Stop hunting for commands. Start running them.
DotRun transforms scattered scripts, complex command sequences, and tribal knowledge into a unified, searchable, and shareable toolkit that works across all your projects.
Developers waste countless hours on repetitive tasks:
- Searching Slack for that deployment command someone shared last month
- Copy-pasting complex Git workflows from documentation
- Re-creating environment setup scripts for each new project
- Remembering which parameters go with which tools
You know the solution exists somewhere, but finding and using it is the hard part.
DotRun gives you instant access to any script from anywhere:
# Instead of this complexity...
git fetch --all && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -d
# Just run this
dr git/cleanupOne command replaces dozens of scattered scripts, aliases, and copy-paste workflows.
Install and run your first script in 30 seconds:
# 1. Install DotRun
bash <(curl -fsSL https://raw.githubusercontent.com/jvPalma/dotrun/master/install.sh)
# 2. Create a script
dr set deploy
# 3. Run it from anywhere
cd ~/any-project && dr deployBefore DotRun:
# Deployment scattered across multiple places
grep -r "deploy" ~/.bash_history | tail -5
# Copy from Slack: docker build -t app . && docker push...
# Find that script: where did I put deploy.sh?
# Remember parameters: was it --env staging or --environment=staging?After DotRun:
# Everything in one place, documented, and searchable
dr -L deploy # List all deployment scripts
dr help deploy # Show documentation
dr deploy staging # Run with confidencevs Individual Scripts: Unified access, automatic documentation, team sharing
vs Aliases: Cross-shell support, parameter handling, self-documenting
vs Makefiles: Project-independent, globally accessible, language-agnostic
vs README lists: Executable, searchable, with built-in help
- π Instant Access - Run any script with
dr scriptnamefrom anywhere - π Self-Documenting - Every script includes usage examples and help text
- π₯ Team Sharing - Import/export collections while keeping personal scripts separate
- π Smart Discovery - Find scripts by name, category, or description with intelligent tab completion
- π Shell Universal - Works in Bash, Zsh, and Fish with colorized completion
- βοΈ File-Based Config - Manage aliases and environment variables in organized files
- π Smart Updates - Collection system tracks modifications and handles conflicts
bash <(curl -fsSL https://raw.githubusercontent.com/jvPalma/dotrun/master/install.sh)Installs to ~/.local/bin/dr with workspace in ~/.config/dotrun/
dr set hello
# Opens editor with documentation template
# Add: echo "Hello from anywhere!"
dr hello # Run from any directory# Script management
dr -s set deploy # Create script (or: dr scripts set deploy)
dr -s list git/ # Browse by folder
# Alias management (file-based, multiple aliases per file)
dr -a set 01-git # Opens editor: ~/.config/dotrun/aliases/01-git.aliases
dr -a list # View all alias files
# Config management (file-based, multiple exports per file)
dr -c set api/keys # Opens editor: ~/.config/dotrun/configs/api/keys.config
dr -c list --category api # View configs by category# Install collection from GitHub
dr -col add https://github.com/jvPalma/dotrun.git
# Select which scripts/aliases/helpers to import
# Browse and run
dr -L # List all scripts
dr git/cleanup # Run imported script
# Keep collections updated
dr -col sync # Check for updates
dr -col update dotrun # Update with conflict resolution# Install DotRun skill for Claude Code or other AI agents
npx skills add jvPalma/dotrunThis gives AI coding agents deep knowledge of DotRun's script system, enabling them to create, manage, and migrate scripts following best practices.
# Zsh: Colorized hierarchical navigation
dr <tab> # See folders (yellow), scripts (cyan), special commands (green)
dr git/<tab> # Navigate into folders
dr -s <tab> # Script commands (green)
dr -a <tab> # Alias commands (purple)
dr -c <tab> # Config commands (red)
# All shells support namespace commands
dr scripts set deploy # Same as: dr -s set deploy
dr aliases set 01-git # Opens alias file editor
dr config set api/keys # Opens config file editor- Create:
dr set scriptname- Creates or edits script with documentation template - Document: Add
### DOCsections for usage examples and help - Run:
dr scriptname- Execute from anywhere with tab completion - Discover:
dr -L- Browse all scripts with descriptions - Share: Collections for team scripts, keep personal scripts separate
Share script libraries with your team while maintaining full control over updates and local modifications.
Collections are git repositories containing reusable scripts, aliases, helpers, and configs. When you install a collection, resources are copied to your local workspace with hash tracking for smart updates.
# Install collection
dr -col add https://github.com/user/dotrun-scripts.git
# Browse installed collections
dr -col list
# Check for updates
dr -col sync
# Update with conflict resolution
dr -col update my-collection| Guide | Description |
|---|---|
| Installation | One-command setup for all platforms |
| Quick Start | Your first 5 minutes with DotRun |
| Scripts | Create, organize, and run scripts |
| Collections | Share script libraries with your team |
| FAQ | Common questions and troubleshooting |
| Feature | Create/Edit | List | Run |
|---|---|---|---|
| Scripts | dr set name |
dr -L |
dr name |
| Aliases | dr -a name |
dr -a list |
(auto-loaded) |
| Configs | dr -c name |
dr -c list |
(auto-loaded) |
| Collections | dr -col add <url> |
dr -col list |
(scripts available) |
- OS: Linux, macOS, Windows (WSL)
- Shell: Bash 4.0+, Zsh, or Fish
- Dependencies: Git (required), ShellCheck (optional), glow (optional)
# 1. Install
bash <(curl -fsSL https://raw.githubusercontent.com/jvPalma/dotrun/master/install.sh)
# 2. Verify (restart terminal first)
dr --version
# 3. Create your first script
dr set hello
# Add: echo "Hello from DotRun!"
# 4. Run it from anywhere
dr helloFull Quick Start Tutorial | Browse all documentation
Transform your development workflow from scattered scripts to unified productivity.
Questions? Open an issue or check our FAQ