Setup and configuration for Anthropic tools and environments.
- Automated environment setup for Anthropic development
- SSH and GPG key management
- Docker container management for Computer Use
- FreeBSD/Linux compatibility
- Secure collaborator file sharing
# Initial setup
gmake configure
gmake setup
# Development
gmake bootstrap
gmake nix-shell
# Check Docker prerequisites
gmake check-docker
# Run Computer Use container (default port 8000)
ANTHROPIC_KEY=your_key GITHUB_TOKEN=your_token gmake run-container
# Run on a different port
HOST_PORT=9000 ANTHROPIC_KEY=your_key GITHUB_TOKEN=your_token gmake run-container
To encrypt a file for collaborators:
# If you have the repository
gmake import-keys
# Using wget directly (no dependencies)
wget -qO- https://github.com/aygp-dr.gpg | gpg --import
wget -qO- https://github.com/jwalsh.gpg | gpg --import
# Encrypt a file
gpg --encrypt --armor -r computeruse@defrecord.com -r j@wal.sh -o file.gpg file.txt
See CLAUDE.md for detailed instructions and development guidelines.