From e509af775323e6f10318146374bd72a529827831 Mon Sep 17 00:00:00 2001 From: Robert Graff Date: Sat, 11 Apr 2026 16:19:39 -0700 Subject: [PATCH] Update README.md with dotfiles example --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 10fc8db..ac3aec6 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,23 @@ To uninstall: `uv tool uninstall jeff` uv sync ``` +### Dotfiles / scripted install + +If you manage your environment with a dotfiles repo, you can automate the install with a script like `.dotfiles/jeff/install.sh`: + +```bash +#!/usr/bin/env bash +set -e +tmpdir=$(mktemp -d) +trap 'rm -rf "$tmpdir"' EXIT + +cd "$tmpdir" +git clone https://github.com/BJClark/jeff.git +cd jeff +uv tool install . +uv sync +``` + ## AI Assistant Setup Jeff is designed to work with AI coding assistants. Each tool has its own configuration format for project context.