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
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,36 @@ git clone https://github.com/<your-username>/claude-code-fact-verification-hook.

This repo assumes you will reference the hook scripts by absolute path from your Claude Code settings.


### 2a. Platform path examples

Common Claude Code settings locations:

- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Linux: `~/.config/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`

Example hook repo paths:

- macOS: `/Users/<you>/src/claude-code-fact-verification-hook`
- Linux: `/home/<you>/src/claude-code-fact-verification-hook`
- Windows: `C:\Users\<you>\src\claude-code-fact-verification-hook`

Tested copy/paste examples:

```bash
# macOS
cp settings.example.json ~/Library/Application\ Support/Claude/claude_desktop_config.json

# Linux
cp settings.example.json ~/.config/Claude/claude_desktop_config.json
```

```powershell
# Windows PowerShell
Copy-Item settings.example.json $env:APPDATA\Claude\claude_desktop_config.json
```

### 3. Optional: create a config file

Copy:
Expand Down