noticed

Installation
SKILL.md

<essential_principles>

How Noticed Works

Noticed is a Rails notification system that delivers notifications across multiple channels simultaneously.

1. Notifiers Define What and How

Each notification is a class inheriting from Noticed::Event. It defines:

  • What params are required
  • Which delivery methods to use
  • Helper methods via notification_methods block
class NewCommentNotifier < Noticed::Event
  required_params :comment

  deliver_by :email do |config|
    config.mailer = "CommentMailer"
Related skills

More from faqndo97/ai-skills

Installs
15
GitHub Stars
32
First Seen
Feb 4, 2026