ワンクリックで
webhooks.interserver.net
webhooks.interserver.net には interserver から収集した 3 個の skills があり、リポジトリ単位の職業カバレッジとサイト内 skill 詳細ページを表示します。
このリポジトリの skills
Creates a new test event fixture directory under tests/events/{event_name}/ with payload.json, type.txt, and expected_text.txt. Use when user says 'add test for X event', 'create fixture', 'test event payload', or needs to add files to tests/events/. Do NOT use for modifying existing fixtures or writing unit tests that don't involve GitHub webhook payloads.
Adds a new GitHub event type case to the switch block in `web/github.php`. Handles extracting fields from `$Message`, building a `$ChatMsg` string with markdown links, setting `$Msg['text']`, and calling `SendToChat('notifications', $Msg, $useRC, $useTeams)`. Use when user says 'add support for X event', 'handle X webhook', 'new event type', or adds a case to `web/github.php`. Do NOT use for modifying existing event handlers.
Formats dual Rocket Chat + MS Teams notification messages following the project's emoji+markdown style. Builds $Msg with avatar/alias/text keys, [User](url) links, repo links, branch backticks, and action emojis (📦 push, 🐛 issues, 🔀 PR, 📝 wiki, ✅/❌ CI). Calls SendToChat('notifications', $Msg, $useRC, $useTeams). Use when user says 'format message', 'notification style', 'chat output', or is writing a new event handler case. Do NOT use for changing SendToChat() itself or src/GithubWebhook.php.