ai/skills-archive/overmind-dev/SKILL.md
Set up Overmind as an agentic-friendly process manager for dev servers. Use when setting up a new project's dev environment, adding services to a Procfile, or when the user mentions Overmind, Procfile, dev server orchestration, or wants to manage multiple services (web server, CSS watcher, docs site, background workers) from a single command.
npx skillsauth add steveclarke/dotfiles overmind-devInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Overmind is a tmux-based process manager. Key advantage over Foreman: daemon
mode, individual process restart, and interactive debugging via overmind connect.
Requires tmux (installed automatically by brew install overmind on macOS).
Procfile.dev at project root — one service per line (name: command)bin/dev — bash wrapper with subcommands (start, stop, restart, status, logs, help).overmind.env — socket path + recommended settingstmp/.keep — tracked by git; .gitignore has /tmp/* + !/tmp/.keep.overmind.env — Recommended SettingsOVERMIND_SOCKET=tmp/overmind.sock
OVERMIND_NO_PORT=1
OVERMIND_CAN_DIE=css
| Setting | Why |
|---------|-----|
| OVERMIND_SOCKET=tmp/overmind.sock | Keeps project root clean, avoids macOS 104-char socket path limit |
| OVERMIND_NO_PORT=1 | Prevents Overmind from injecting PORT=5000/5100/5200 which shadows explicit port vars in Procfile |
| OVERMIND_CAN_DIE=css | Tailwind watcher crash doesn't tear down the whole stack |
Optional: OVERMIND_AUTO_RESTART=css to auto-restart watchers on crash.
bin/dev daemonizes
so agents and developers can keep working. -f flag for foreground when
debugging. For app projects, foreground by default may be better (crashes
are immediately visible).-s "$SOCKET" on every overmind command — don't rely on
.overmind.env alone. The socket flag works regardless of CWD, which
matters for scripts that cd into subdirectories.tmp/ — keeps project root clean (Rails convention).bin/dev cleans up stale sockets before
starting (prevents "already running" errors). bin/dev stop falls back
to removing the socket if overmind quit fails.| Command | What it does |
|---------|-------------|
| bin/dev | Start daemonized (default) |
| bin/dev -f | Start in foreground |
| bin/dev stop | Stop running instance |
| bin/dev restart web | Restart a specific service |
| bin/dev status | Show process statuses and URLs |
| bin/dev logs | Tail all logs |
| bin/dev logs web | Tail logs from a specific service |
| bin/dev -- -l web,css | Pass flags directly to overmind |
# Standard Rails
web: bin/rails server -p ${PORT:-3000}
css: bin/rails tailwindcss:watch
# With explicit port vars (use with OVERMIND_NO_PORT=1)
web: cd lookbook && bin/rails server -p ${LOOKBOOK_PORT:-4001}
docs: cd docs && bin/bridgetown start -P ${DOCS_PORT:-4000}
# With workers
worker: bundle exec sidekiq
bin/dev status 2>/dev/null && echo "running" || echo "not running"bin/dev (never foreground — blocks terminal)bin/dev restart web (app/ changes autoload)bin/dev logs web (single process) or bin/dev logs (all)bin/dev stop when done.| Flag | Purpose |
|------|---------|
| -D | Daemonize |
| -f FILE | Specify Procfile path |
| -s SOCKET | Specify socket path |
| -r PROCESS | Auto-restart on crash (-r all for everything) |
| -l PROCESS | Only start specific processes (-l web,css) |
| -N | Disable automatic PORT assignment (same as OVERMIND_NO_PORT=1) |
overmind start says "already
running". Fix: rm tmp/overmind.sock (or let bin/dev handle it).OVERMIND_NO_PORT=1, Overmind injects
PORT=5000/5100/5200 per process, overriding explicit port vars.tmp/overmind.sock (relative) avoids this. Never use $TMPDIR.overmind connect nests sessions.
Detach with Ctrl-b Ctrl-b d (double prefix).content-media
Download content from YouTube including transcripts, captions, subtitles, music, MP3s, and playlists. Use when the user provides a YouTube URL or asks to download, transcribe, or get content from YouTube videos or playlists.
development
Apply VueUse composables where appropriate to build concise, maintainable Vue.js / Nuxt features.
development
Review UI for visual consistency, layout structure, and design system compliance. Two modes — code review (check view files against patterns) and visual audit (screenshot all routes and analyze). Use when reviewing UI code, checking consistency, auditing views, or when user says "review the UI", "check consistency", "UI audit", "design review".
tools
Improves typography by fixing font choices, hierarchy, sizing, weight, and readability so text feels intentional. Use when the user mentions fonts, type, readability, text hierarchy, sizing looks off, or wants more polished, intentional typography.