# `happy` ## Happy runbook Install nvm: https://nodejs.org/en/download/ On root: ```bash curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash \. "$HOME/.nvm/nvm.sh" nvm install 24 node -v # Should print "v24.12.0". npm -v # Should print "11.6.2". ``` Install and setup: ```bash # Clone $ cd ~/lexe/org $ git clone [email protected]:lexe-agent/lexe.git ~/lexe/org/lexe # Also add upstream remote # Worktree setup $ cd ~/lexe/org/lexe $ cp .env.example .env $ just worktree-add ~/lexe/worktrees/happy1 $ just worktree-add ~/lexe/worktrees/happy2 $ just worktree-add ~/lexe/worktrees/happy3 $ just worktree-add ~/lexe/worktrees/happy4 $ just worktree-add ~/lexe/worktrees/happy5 $ cd ~/lexe/worktrees $ tmux ls # Git setup $ git config --global user.email "[email protected]" $ git config --global user.name "lexe-agent" # Alternatively $ tmux new -s happy2 # Ctrl + b, then d to detach $ tmux attach happy2 $ tmux kill-session -t happy2 ```