Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #105344 +/- ##
===========================================
+ Coverage 80.56% 80.57% +0.01%
===========================================
Files 9443 9447 +4
Lines 404660 404915 +255
Branches 25723 25723
===========================================
+ Hits 326008 326265 +257
+ Misses 78220 78218 -2
Partials 432 432 |
JoshFerge
reviewed
Jan 7, 2026
Member
JoshFerge
left a comment
There was a problem hiding this comment.
this looks awesome! just wanted to ask, could this be easily extendable to seer explorer as well?
Member
Author
Yep, so the operator side is everything that is talking to Seer -- we could easily replace it with calls to explorer client instead, and actually plan to do so for the later milestones of this project 🚀 |
06d75a2 to
9bc2402
Compare
9bc2402 to
fe12a2d
Compare
GabeVillalobos
approved these changes
Jan 7, 2026
leeandher
added a commit
that referenced
this pull request
Jan 8, 2026
Follow up to #105344 Implements the SlackEntrypoint! There is quite a bit of boilerplate for setting up the custom renderers. If this proves to be too much to review in one PR, I can break it out, but a lot of the line count comes from tests. This PR should be entirely slack specific, so @getsentry/ecosystem may be best to review. Screenshots of what the rendered elements look like: **Issue Alert** <img width="513" height="262" alt="image" src="https://github.com/user-attachments/assets/f3e69deb-d0e9-4aca-88d2-c77ec577514f" /> **Root Cause** <img width="896" height="264" alt="image" src="https://github.com/user-attachments/assets/14b0eb0a-f6f0-40d3-a575-126deb94985f" /> **Proposed Solution** <img width="802" height="160" alt="image" src="https://github.com/user-attachments/assets/cd9324f4-9a07-4d37-90ac-c7dfcaed5b8b" /> **Code Changes** <img width="685" height="360" alt="image" src="https://github.com/user-attachments/assets/bf3b6919-9b96-42a1-ba09-caff754167ee" /> **Pull Request** <img width="652" height="477" alt="image" src="https://github.com/user-attachments/assets/9ec4ccef-5529-4191-ba24-3d100aa03294" /> **Ephemeral Messages** <img width="324" height="228" alt="image" src="https://github.com/user-attachments/assets/8c6b4eb0-7877-4da3-b96b-16ba4abf2560" />
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 PR introduces the concept of
SeerOperatorandSeerEntrypoints. The Operator and Entrypoint will work in tandem to allow triggering and issuing updates to external services during a seer workflow (in this case, an autofix run).on_trigger_autofix_errorandon_trigger_autofix_success, the dev can create provider-specific workflows depending on what capabilities the platform actually has. For example, if in slack, maybe we send an ephemeral message to indicate we started a run, for github comments, maybe we just react.create_autofix_cache_payload, which will be passed back to youron_autofix_updatemethod when Seer issues a webhook. This is critical to back and forth interactions since we cannot do polling in Slack (for example).In this PR, I've only implemented the entrypoint protocol, the actual slack entrypoint will come in a follow up. The operator is all there though, tests and all 👍