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
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,48 @@ For more installation options, uninstall steps, and troubleshooting, see the [se

2. Navigate to your project directory and run `claude`.

## Known issue with false-positive update banner (Homebrew/WinGet)

Some users installed via Homebrew or WinGet may see:

`Update available! Run: brew upgrade claude-code`

or

`Update available! Run: winget upgrade Anthropic.ClaudeCode`

even when their package manager reports no update.

This can happen when the latest npm release is newer than the latest package
available in Homebrew cask/WinGet. The notification resolves automatically once
those package registries catch up.

Temporary workaround:

- Set `DISABLE_AUTOUPDATER=1` to hide update notifications.
- This also suppresses legitimate update notifications, so use it only as a
temporary workaround.

Examples:

```bash
DISABLE_AUTOUPDATER=1 claude
```

```powershell
$env:DISABLE_AUTOUPDATER=1; claude
```

To re-enable update notifications:

```bash
unset DISABLE_AUTOUPDATER
```

```powershell
Remove-Item Env:DISABLE_AUTOUPDATER
```

## Plugins

This repository includes several Claude Code plugins that extend functionality with custom commands and agents. See the [plugins directory](./plugins/README.md) for detailed documentation on available plugins.
Expand Down