YOLO

Tools & CLI

Master YOLO's powerful command-line interface 💻

Version Control

yolo commit [-a|--all] [-m|--message] [-s|--summarized]

Create AI-powered commit messages with smart analysis

$ yolo commit -a
✨ feat(auth): implement JWT authentication
- Add token generation
- Implement refresh logic
- Add security middleware
yolo status

Show the current state of your YOLO workspace

$ yolo status
📦 Current Epic: User Authentication (E001)
🎯 Active Feature: JWT Implementation (F003)
✅ Completed Tasks: 2/5

Workflow Management

Creation Commands

yolo epic create "Epic description"
yolo feature create "Feature description"
yolo task create "Task description"

List Commands

yolo epic list [--status=<status>]
yolo feature list [--epic=<epic-id>]
yolo task list [--feature=<feature-id>]
yolo update <item-id> --status=<status>

Update the status of any workflow item

$ yolo update F001 --status=in-progress
✅ Updated feature F001: "Add user authentication"
Status changed to: in-progress

AI Interaction

Ask Questions

yolo ask "How should I structure
the authentication system?"

yolo explain login.go
yolo suggest --type=refactor

Get Help

yolo help [command]
yolo docs search "topic"
yolo examples [command]

Configuration

yolo config init [--interactive]

Initialize YOLO configuration

$ yolo config init --interactive
? Select AI provider › OpenAI
? Enter API key › ********
? Choose personality › Professional
✅ Configuration saved!
yolo config set <key> <value>

Set specific configuration values

$ yolo config set ai.personality nerdy
$ yolo config set commit.emoji true

Quick Reference

Common Commands

yolo init
yolo status
yolo commit
yolo ask

Workflow

yolo epic
yolo feature
yolo task
yolo update

Configuration

yolo config
yolo setup
yolo doctor
yolo upgrade