Back to Commands

/act

⚙️Automation & Workflow

Follow RED-GREEN-REFACTOR cycle approach for test-driven development

Quick Actions

Installation

Option A: Install using BWC CLI (Recommended)

Install and manage this command with a single command:

bwc add --command act

Option B: Install as User Command (manual)

macOS/Linux:

cp act.md ~/.claude/commands/

Windows:

copy act.md %USERPROFILE%\.claude\commands\

Option C: Install as Project Command (manual)

macOS/Linux:

mkdir -p .claude/commands && cp act.md .claude/commands/

Windows:

mkdir .claude\commands 2>nul && copy act.md .claude\commands\

Note: After installation, restart Claude Code to load the new command.

Usage

Slash command:

/act

Command Instructions


Follow RED-GREEN-REFACTOR cycle approch based on @~/.claude/CLAUDE.md:

  • Open todo.md and select the first unchecked items to work on.
  • Carefully plan each item, then share your plan
  • Create a new branch and implement your plan
  • Check off the items on todo.md
  • Commit your changes