Skip to content

ClawGod v1.3.1

Choose a tag to compare

@github-actions github-actions released this 02 Jul 18:01

Changes

  • feat(wrapper): add update notification via GitHub API check
  • fix(patcher): add allowUnknownOption to update command for --version support (Closes #116)

Update notification

ClawGod now checks for new releases on startup (once every 24h, non-blocking). If a newer version is available, a one-line notice appears before Claude starts:

[clawgod] v1.4.0 available (installed: v1.3.1) — run 'claude update' to upgrade
  • Cached locally (~/.clawgod/.update-check), only hits GitHub API once per 24h
  • Async fire-and-forget — zero startup delay
  • Fails silently in offline environments

claude update --version fix (#116)

Fixed error: unknown option '--version' on Windows (and all platforms). Commander rejected unregistered options before reaching the action handler. Added .allowUnknownOption() to the update subcommand so --version and --no-upgrade flags pass through correctly.

Install

macOS / Linux:

curl -fsSL https://github.com/0Chencc/clawgod/releases/latest/download/install.sh | bash

Windows (PowerShell):

irm https://github.com/0Chencc/clawgod/releases/latest/download/install.ps1 | iex

Full changelog: v1.3.0...v1.3.1