Skip to main content

Raid logoRaid logoRaid

Open-source CLI for orchestrating complex development workflows.

Time Saved0hrs
Dev Cost$0/hr
Cost Savings$0
Raid CLI demo

Easy Install

Homebrewbrew install 8bitalex/tap/raid
Scriptcurl -fsSL https://raidcli.dev/install.sh | bash
Or download manually from GitHub (Windows, Linux, macOS)

One-command onboarding

raid install clones every repo in your profile and runs their install tasks concurrently. A new teammate is fully set up before they finish their coffee.

terminal
$ raid install
Cloning 3 repositories
api ~/dev/my-project/api
frontend ~/dev/my-project/frontend
worker ~/dev/my-project/worker
Running install tasks (3 workers)
api npm install
frontend npm install
worker go mod download
Done in 1m 18s

Tribal knowledge, codified

Every setup step, script, and gotcha lives in raid.yaml alongside the code. No wiki to update, no Slack thread to dig through — the repo is the runbook.

raid.yaml
install:
tasks:
- type: Shell
cmd: brew bundle
condition:
platform: darwin
- type: Shell
cmd: npm install
- type: Shell
cmd: cp .env.example .env
condition:
exists: .env.example

Shared team commands

Define custom commands once in your profile — raid deploy, raid reset-db, whatever your team needs. Everyone gets the same commands without any extra setup.

profile.raid.yml
commands:
- name: deploy
usage: Deploy to production
tasks:
- type: Confirm
message: "Deploy to production?"
- type: Shell
cmd: ./scripts/deploy.sh
- name: reset-db
usage: Reset local database
tasks:
- type: Shell
cmd: docker compose down -v db
- type: Group
ref: db-migrate

Environment switching

raid env staging writes the right .env files into every repo and runs environment tasks across all of them at once. Switch contexts in seconds, not minutes.

profile.raid.yml
environments:
- name: dev
variables:
- name: NODE_ENV
value: development
- name: DATABASE_URL
value: postgresql://localhost/dev
tasks:
- type: Shell
cmd: docker compose up -d
- type: Wait
url: http://localhost:5432
timeout: 30s

How does Raid stack up?

See how Raid compares to other popular task runners and dev tools.

Raidmakejustmiseturbo
Multi-repo orchestration
Team profile sharing
One-command onboarding
Environment switching
Custom task runner
YAML config
No DSL to learn
Concurrent task execution
Language-agnostic