Skip to content

Instantly share code, notes, and snippets.

@jlschrag
Last active March 16, 2026 20:56
Show Gist options
  • Select an option

  • Save jlschrag/635ba89c5b6ab55091e346a1b46f04b5 to your computer and use it in GitHub Desktop.

Select an option

Save jlschrag/635ba89c5b6ab55091e346a1b46f04b5 to your computer and use it in GitHub Desktop.
Coder Setup
export DOCKER_HOST="unix://$HOME/.colima/default/docker.sock"
brew install docker colima
brew services start colima
curl -L https://coder.com/install.sh | sh
# Make modifications below to .ssh config & .zshrc
coder login
coder config-ssh
coder server
# Make these additions to the ~/.ssh/config to allow the Coder Workspace to use the SSH keys from the host OS
Host *.coder
ForwardAgent yes
AddKeysToAgent yes
Host github.com
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_ed25519
# In the coder workspace, run the following
git config --global user.name "Your Name"
git config --global user.email "me@email.com"
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash
nvm install --lts
npm install @mariozechner/pi-ai
npm install @mariozechner/pi-agent-core
npm install -g @mariozechner/pi-coding-agent
export ANTHROPIC_API_KEY=anthropic_key_here
pi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment