Hivemind

Use this skill when the user wants to run a Procfile-based app locally without tmux — start web + worker + redis processes together, lightweight alternative to foreman/overmind.

javimosch 902a600 1.1 KB Updated

File contents

hivemind Plugin

Lightweight process manager for Procfile-based applications. Starts all processes defined in a Procfile in one terminal — no tmux required.

Installation

brew install hivemind
# or
go install github.com/DarthSim/hivemind@latest

Basic Usage

# Start all processes from Procfile
hivemind

# Use a custom Procfile path
hivemind -f Procfile.dev

# Set a custom working directory
hivemind -d ./backend

Procfile Example

web:    bundle exec rails server -p 3000
worker: bundle exec sidekiq
redis:  redis-server

Run hivemind in the project root — all three processes start with colored, prefixed output.

Usage Examples

  • "Start my Procfile processes locally"
  • "Run web and worker together without tmux"
  • "Lightweight alternative to overmind for dev"

SuperCLI

sc hivemind _ _
sc plugins learn hivemind

javimosch/supercli/tree/main/plugins/hivemind/skills/quickstart commit 902a600b62

Frequently asked questions

npx skillmds@latest add javimosch/hivemind