Turbo Flow v4 + Ruflo v3.5 — Quick Reference banner
marcuspat marcuspat

Turbo Flow v4 + Ruflo v3.5 — Quick Reference

Development community intermediate

Description

> Commands use TurboFlow aliases. If aliases aren't set up, use native commands shown in parentheses.

Installation

Terminal
claude install-skill https://github.com/marcuspat/turbo-flow

README

Turbo Flow v4 + Ruflo v3.5 — Quick Reference

Commands use TurboFlow aliases. If aliases aren't set up, use native commands shown in parentheses.

Alias → Native Command Map

Alias Native Command
rf-wizard npx ruflo@latest init --wizard
rf-swarm npx ruflo@latest swarm init --topology hierarchical
rf-mesh npx ruflo@latest swarm init --topology mesh
rf-ring npx ruflo@latest swarm init --topology ring
rf-star npx ruflo@latest swarm init --topology star
rf-spawn [type] npx ruflo@latest agent spawn -t [type]
rf-daemon npx ruflo@latest daemon start
rf-status npx ruflo@latest status
rf-doctor npx ruflo@latest doctor --fix
rf-init npx ruflo@latest init
rf-plugins npx ruflo@latest plugins list
mem-store K V npx ruflo@latest memory store --key "K" --value "V"
mem-search Q npx ruflo@latest memory search --query "Q"
mem-stats npx ruflo@latest memory stats
bd-ready bd ready --json
bd-add bd create "Title" -t task -p N
bd-list bd list
wt-add NAME git worktree add .worktrees/NAME -b NAME-$(date +%s)
wt-remove NAME git worktree remove .worktrees/NAME
wt-list git worktree list
wt-clean git worktree prune
gnx-analyze npx gitnexus analyze
gnx-serve npx gitnexus serve
gnx-wiki npx gitnexus wiki
aqe-generate npx @agentic-qe/v3 generate
aqe-gate npx @agentic-qe/v3 gate
os-init openspec init
hooks-train npx ruflo@latest hooks pretrain
hooks-route npx ruflo@latest hooks route --task "..."
neural-train npx ruflo@latest neural train
neural-patterns npx ruflo@latest neural patterns
turbo-status TF-specific statusline check
turbo-help TF-specific help display

Boot (every session)

# 0. PRE-FLIGHT (before anything else)
git stash list && git status --short
test -f .env || test -f .env.local || echo "⚠️  NO .env"
npx prisma migrate status 2>/dev/null || echo "⚠️  Migrations pending"
df -h . | awk 'NR==2{if($5+0 > 90) print "⚠️  DISK " $5 " FULL"}'

# Using TF aliases:
source ~/.bashrc
bd ready --json          # (native: bd ready --json)
gnx-analyze              # (native: npx gitnexus analyze)
turbo-status             # (TF-specific)

# Using native commands only:
source ~/.bashrc
bd ready --json
npx gitnexus analyze
npx ruflo@latest doctor --fix
npx ruflo@latest hooks pretrain
npx ruflo@latest daemon start

One-liner (aliases): `source ~/.bashrc && rf-doctor && bd ready --json && gnx-analyze && hooks-train && rf-daemon && turbo-status`

One-liner (native): `source ~/.bashrc && npx ruflo@latest doctor --fix && bd ready --json && npx gitnexus analyze && npx ruflo@latest hooks pretrain && npx ruflo@latest daemon start`


The Core Loop

BOOT:       pre-flight → source ~/.bashrc → rf-docto