From 476d4fd98174f889eb092550be3e4bed9256ce02 Mon Sep 17 00:00:00 2001 From: Marco Schaeck Date: Wed, 11 Mar 2026 13:24:07 +0100 Subject: [PATCH 1/3] Add Homebrew installation option to README Add documentation for installing the CLI via Homebrew on macOS, alongside existing installation methods. Include changeset entry and local Claude settings configuration. --- .changeset/add-homebrew-install-docs.md | 5 +++++ .claude/settings.local.json | 7 +++++++ README.md | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 .changeset/add-homebrew-install-docs.md create mode 100644 .claude/settings.local.json diff --git a/.changeset/add-homebrew-install-docs.md b/.changeset/add-homebrew-install-docs.md new file mode 100644 index 00000000..ff4e4a05 --- /dev/null +++ b/.changeset/add-homebrew-install-docs.md @@ -0,0 +1,5 @@ +--- +"@googleworkspace/cli": patch +--- + +Add Homebrew as an installation option in README diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 00000000..2ee1a850 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,7 @@ +{ + "permissions": { + "allow": [ + "Bash(gh issue:*)" + ] + } +} diff --git a/README.md b/README.md index 9130ecbd..5eaf41a1 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,12 @@ A Nix flake is also available at `github:googleworkspace/cli` nix run github:googleworkspace/cli ``` +A Homebrew formula is also available (macOS): + +```bash +brew install googleworkspace-cli +``` + ## Quick Start ```bash From 83ad4a101675cd6438bc69dd5056ab572090ec27 Mon Sep 17 00:00:00 2001 From: Marco Schaeck Date: Wed, 11 Mar 2026 13:48:56 +0100 Subject: [PATCH 2/3] chore: ignore .claude/settings.local.json Prevent local Claude Code settings from being accidentally committed. --- .claude/settings.local.json | 7 ------- .gitignore | 1 + 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 .claude/settings.local.json diff --git a/.claude/settings.local.json b/.claude/settings.local.json deleted file mode 100644 index 2ee1a850..00000000 --- a/.claude/settings.local.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "permissions": { - "allow": [ - "Bash(gh issue:*)" - ] - } -} diff --git a/.gitignore b/.gitignore index 668f55fc..fe025588 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ yarn-error.log* # IDE .idea/ .vscode/ +.claude/settings.local.json *.swp *.swo *~ From 47b8829a5d6a214b92cddf31720312ea7e8682eb Mon Sep 17 00:00:00 2001 From: Marco Schaeck Date: Thu, 12 Mar 2026 06:29:41 +0100 Subject: [PATCH 3/3] chore: move .claude/settings.local.json to ai-agents section in .gitignore Moved the entry from the IDE section into a dedicated # AI agents block for better organization and clarity. --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fe025588..e54327b9 100644 --- a/.gitignore +++ b/.gitignore @@ -22,11 +22,13 @@ yarn-error.log* # IDE .idea/ .vscode/ -.claude/settings.local.json *.swp *.swo *~ +# AI agents +.claude/settings.local.json + # OS .DS_Store Thumbs.db