Skip to content
Merged
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
28 changes: 24 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,37 @@ Parsed trees and taint flows are shared across layers — each file is parsed on

## Installation

### Homebrew (recommended)

```bash
# Quick install
brew install turenlabs/tap/batou && batou-setup
```

This installs the binary and configures Claude Code hooks automatically.

To update:

```bash
brew upgrade batou
```

### Install script

```bash
# Quick install (downloads binary + configures hooks globally)
curl -fsSL https://raw.githubusercontent.com/turenlabs/batou/main/install.sh | bash

# Install + configure hooks for a project
# Install + configure hooks for a specific project
curl -fsSL https://raw.githubusercontent.com/turenlabs/batou/main/install.sh | bash -s -- --setup /path/to/project

# Or install globally
# Or install + configure hooks globally
curl -fsSL https://raw.githubusercontent.com/turenlabs/batou/main/install.sh | bash -s -- --global
```

### Build from source

# Build from source (requires Go 1.21+, CGo, gcc/clang)
```bash
# Requires Go 1.21+, CGo, gcc/clang
git clone https://github.com/turenlabs/batou.git && cd batou && make build && make install
```

Expand Down
Loading