A reproducible, single-file development environment for macOS, native Linux (Ubuntu/Fedora/Arch/CachyOS), and WSL.
It supports your shell mix:
- macOS: Zsh (+ Oh My Zsh)
- Ubuntu: Bash (+ Oh My Bash)
- CachyOS: Fish (+ Oh My Fish)
| .claude | |
| linux-* |
aie2_check_protocol: Incompatible firmware protocol major 7 minor 2Hardware: HP ZBook Ultra G1a — AMD Ryzen AI MAX+ PRO 395 (Strix Halo)
NPU PCI ID: 1022:17f0 rev 11 (amdnpu/17f0_11/)
OS: CachyOS (Arch-based)
Kernel: 6.19.6-2-cachyos
Symptom: NPU fails to probe on every boot
Ignore this. Use my patch instead idovitz/amdisp4#3
| ## CLAUDE | |
| #export ANTHROPIC_BASE_URL="http://localhost:11434" | |
| #export ANTHROPIC_AUTH_TOKEN="ollama" | |
| # Launch Claude Code targeting your new Spark model | |
| #claude --model spark-coder | |
| #export ANTHROPIC_BASE_URL="http://192.168.1.229:11434" | |
| #export ANTHROPIC_AUTH_TOKEN="ollama" | |
| # Launch Claude Code targeting your new Spark model |
| FROM nvcr.io/nvidia/pytorch:25.10-py3 | |
| # Allow system-wide installs for the few things we need | |
| ENV PIP_BREAK_SYSTEM_PACKAGES=1 | |
| # Install only the system-level drivers for OpenCV | |
| RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 git ffmpeg && rm -rf /var/lib/apt/lists/* | |
| # Install only the missing AI libs. | |
| RUN python3 -m pip install --no-cache-dir \ |