sentry-release-management

Automate Sentry release creation, commit association, and deployment finalization.

187|20|Updated Nov 20, 2025
One-click install
npx skills add https://github.com/TheBushidoCollective/han --skill sentry-release-management
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sentry-release-management
Source: https://github.com/TheBushidoCollective/han/tree/main/jutsu/jutsu-sentry/skills/release-management
Command: npx skills add https://github.com/TheBushidoCollective/han --skill sentry-release-management

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Coordinating releases, uploading source maps, and linking commits across environments can be error-prone. This Skill codifies release management workflows with Sentry.

Core Features & Use Cases

  • Release creation and commit association with sentry-cli
  • Source maps upload and deployment tracking
  • CI/CD integration patterns for GitHub/GitLab

Quick Start

Create a new release via sentry-cli and finalize it in CI to publish source maps for production.

Frequently Asked Questions about sentry-release-management

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Sentry release creation in my CI/CD pipeline?

Automate Sentry release creation by integrating sentry-cli commands into your CI/CD workflow. Use sentry-cli releases create to initialize a release, associate commits with sentry-cli releases set-commits, upload source maps, then finalize with sentry-cli releases finalize to publish changes across your deployment environments.

What's the best way to upload source maps and track deployments to Sentry?

Upload source maps using sentry-cli or framework plugins (Webpack, Vite, Next.js) during your build process, then track deployments by creating releases and associating them with environments. This enables Sentry to map stack traces to original source code and monitor release health across production and staging.

Can I integrate Sentry release management with GitHub and GitLab?

Yes. Sentry release management integrates with GitHub and GitLab CI/CD pipelines through sentry-cli commands executed as workflow steps. You can automate release creation, commit linking, and source-map uploads as part of your deployment process in both platforms.

Do I need to configure sentry-cli differently for production versus staging environments?

Environment-specific deployments in Sentry use configuration files (.sentryclirc or sentry.properties) and environment parameters passed to sentry-cli commands. This allows you to maintain separate release workflows and source-map uploads for production and staging without duplicating orchestration logic.

How do I validate source maps before finalizing a Sentry release?

Source-map validation checks that uploaded maps correctly correspond to minified code before release finalization. Run validation within your CI/CD pipeline before executing sentry-cli releases finalize to catch mapping errors early and prevent broken error tracking in production.