-
Notifications
You must be signed in to change notification settings - Fork 15.9k
feat: Add Google Chat channel option #1635
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
Author
- Accepted upstream: docs/gateway/heartbeat.md, config types - Merged: docs/help/faq.md (re-added Google Chat) - Merged: src/channels/dock.ts (re-added Google Chat dock) - Merged: src/channels/plugins/group-mentions.ts (added Google Chat helpers) - Merged: src/plugin-sdk/index.ts (exported Google Chat types/helpers)
steipete
added a commit
that referenced
this pull request
Jan 24, 2026
Co-authored-by: Ian Hildebrand <[email protected]>
Contributor
|
Landed on main via rebase + FF. Changes:
Commits:
Tests:
Thanks @iHildy! |
Contributor
Author
|
Thanks for the merge Peter! |
mcinteerj
pushed a commit
to mcinteerj/moltbot
that referenced
this pull request
Jan 25, 2026
Co-authored-by: Ian Hildebrand <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

This pull request adds full support for Google Chat as a first-class channel across the codebase and documentation. It updates the user-facing documentation, macOS app channel status logic, data models, and tests to recognize and handle Google Chat alongside other major messaging platforms.
Documentation updates:
README.mdto include Google Chat as a supported channel, ensuring consistency and visibility in feature lists, usage examples, and channel documentation links. [1] [2] [3] [4] [5] [6] [7]macOS app feature enhancements:
googlechatTint,googlechatSummary, andgooglechatDetailscomputed properties toChannelsSettings+ChannelState.swiftfor status color, summary, and detailed info display. Integrated Google Chat into channel ordering, status, summary, details, last probe, and error-handling logic, ensuring it is handled identically to other major channels in the UI. [1] [2] [3] [4] [5] [6] [7] [8] [9]Data model updates:
GoogleChatProbeandGoogleChatStatusstructs toChannelsStatusSnapshotinChannelsStore.swift, enabling serialization and tracking of Google Chat connection and probe status.Core logic and enum updates:
googlechatcase to theGatewayAgentChannelenum, making Google Chat a recognized channel for routing and delivery logic.Test coverage:
GatewayAgentChannelTeststo include Google Chat in delivery and parsing tests, ensuring correct behavior and reliability. [1] [2]This uses service accounts instead of OAuth, so the bot can't react to messages. I may add an OAuth option soon.
This PR was assisted by AI but human-tested and reviewed - note testing was only over tailscale. Option B and C in the
docs/googlechat.mdcan be removed if you'd like, since they haven't been tested.