# 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.

- Skill: `javimosch/hivemind` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/hivemind`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/hivemind/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/hivemind

---


# hivemind Plugin

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

## Installation

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

## Basic Usage

```bash
# 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

```bash
sc hivemind _ _
sc plugins learn hivemind
```

