Skip to content

Sentry

Catalyst integrates with Sentry via the catalyst-debugging plugin for production error monitoring, stack trace analysis, and root cause detection.

~20K tokens when enabled. Enable only during debugging sessions:

Terminal window
/plugin enable catalyst-debugging # +20K context
# Debug production errors...
/plugin disable catalyst-debugging # -20K context
  • Production error monitoring
  • Stack trace analysis
  • Root cause detection
  • Error pattern identification
  • Release health tracking
  1. Install Sentry CLI: npm install -g @sentry/cli
  2. Add to secrets config: ~/.config/catalyst/config-{projectKey}.json
{
"sentry": {
"org": "your-org",
"project": "your-project",
"authToken": "sntrys_..."
}
}
Terminal window
/plugin install catalyst-debugging