Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down