Disable mention pings in Keiko's log messages #12

Closed
opened 2026-03-24 21:24:43 -07:00 by amari · 0 comments

Description

We want to make sure that any mentions appearing in Keiko's log messages don't accidentally ping users. Right now, if a log message happens to include something that looks like a mention (like @username), it could trigger notifications for that user — which isn't ideal for automated logging!

The solution is to configure Keiko's log messages with allowedmentions: parse: [], which tells the system to parse the message but not to actually ping anyone based on what it finds.

What this means

This is a small but meaningful quality-of-life improvement. It ensures that:

  • Log messages stay clean and readable
  • Users don't get spammed with notifications from automated logs
  • The system continues to work exactly as intended, just more thoughtfully

Acceptance Criteria

  • Keiko's log message configuration includes allowedmentions: parse: []
  • A test log message containing a mention (e.g., @testuser) is generated and confirmed to NOT ping that user
  • Existing log functionality remains unchanged (messages still display and store correctly)
  • The change is documented in Keiko's configuration comments for future reference
## Description We want to make sure that any mentions appearing in Keiko's log messages don't accidentally ping users. Right now, if a log message happens to include something that looks like a mention (like `@username`), it could trigger notifications for that user — which isn't ideal for automated logging! The solution is to configure Keiko's log messages with `allowedmentions: parse: []`, which tells the system to parse the message but not to actually ping anyone based on what it finds. ## What this means This is a small but meaningful quality-of-life improvement. It ensures that: - Log messages stay clean and readable - Users don't get spammed with notifications from automated logs - The system continues to work exactly as intended, just more thoughtfully ## Acceptance Criteria - [ ] Keiko's log message configuration includes `allowedmentions: parse: []` - [ ] A test log message containing a mention (e.g., `@testuser`) is generated and confirmed to NOT ping that user - [ ] Existing log functionality remains unchanged (messages still display and store correctly) - [ ] The change is documented in Keiko's configuration comments for future reference
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: nhcarrigan/keiko#12