It sends an encrypted event to relays for tagr which can decrypt it with its nsec. It’s the same way encrypted dms work but just a different event type.
Discussion
Looking into adding this to Coracle, is there documentation anywhere on what the rumor actually looks like? Kind, content, etc.
It's just a nip-17 private message with a predefined json structure that the bot can understand:
reporterText: just a free form human readable description on why you think it should be analyzed. Useful for potential manual processing.
reportedEvent: being the full event you are flagging. May be only analyzed by AI, if AI doesn't flag it, there's a manual inspection through a Slack channel integration.

There's more detail in the bot code itself https://github.com/planetary-social/reportinator_server
But keep in mind that there's also a google pubsub side of it that deals with openAI (maybe we should merge both in the future). The google pubsub side is https://github.com/planetary-social/cleanstr
I'd be happy to tell you more about the specifics if you want some more info
I read the architecture diagram from reportinator, I assume tagr just sits on top of that. The missing piece was how to integrate it, thanks for explaining!