Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.113 Home All releases olderv2.1.112 v2.1.114newer
Claude Code v2.1.113

Event-Driven Trigger System for GitHub and Slack

What

New structured trigger types for scheduling agent workflows based on external events from GitHub pull requests and Slack messages, replacing the older string-based format.

Details
  • github.pull_request.opened — triggers when a PR is opened (replaces deprecated github:pull-request-opened)
  • github.pull_request.merged — triggers when a PR is merged (replaces deprecated github:pull-request-merged)
  • slack.message — triggers on Slack messages, with channel filtering via the where clause
  • Deprecated formats produce helpful migration messages: e.g., '; use 'on: github.pull_request.opened'
  • Trigger definitions use the new on: entry format and support structured event objects like {event: slack.message, channel: #channel}
  • Includes comprehensive validation with error messages for invalid triggers, cron expressions, and event formats
Evidence

Trigger definitions (search for "github.pull_request.merged" and "slack.message")

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.113 →