commit

作成者: sentry

Sentryの従来のコミット形式(適切なタイプ、スコープ、課題参照を含む)を強制します。mainまたはmasterへのコミット前にフィーチャーブランチの作成を必須とし、create-branchスキルを使用してブランチワークフローを管理します。12種類のコミットタイプ(feat、fix、ref、perf、docs、test、build、ci、chore、style、meta、license)をサポートし、明確な件名行ルールと課題参照のためのフッターパターンを備えています。AI生成の変更に対するCo-Authored-By属性を含み、破壊的変更を明示的に処理します...

npx skills add https://github.com/getsentry/skills --skill commit

Sentry Commit Messages

Before Committing

git branch --show-current

If the branch is main or master, create a feature branch unless the user explicitly requested a direct commit. Re-check the branch and stop if it is still main or master.

Commit one coherent, independently reviewable change at a time.

Message Rules

Use:

<type>(<scope>): <subject>

<optional body>

<optional footer>
  • Scope is optional. Add ! before : for a breaking change.
  • Write the subject in imperative, present tense; capitalize it, omit the trailing period, and keep it at 70 characters or fewer.
  • Keep every line under 100 characters.
  • Use the body only when useful. Explain what changed and why, including previous behavior or motivation when it helps.
  • Never include customer or organization names, user emails, support ticket contents, secrets, or PII. Describe the technical symptom instead.

Allowed types: feat, fix, ref, perf, docs, test, build, ci, chore, style, meta, license, and revert.

Use ref for refactoring without behavior changes, style for formatting without logic changes, and meta for repository metadata.

Footers

  • Fixes <issue> closes an issue when merged.
  • Refs <issue> links an issue without closing it.
  • For breaking changes, add BREAKING CHANGE: <impact>.

Creating the Commit

Use separate -m arguments for paragraphs and footers. Never put literal \n sequences in a commit message or open an interactive editor.

git commit -m "fix(api): Handle null response in user endpoint" \
  -m "Return 404 when the user API finds a deleted account." \
  -m "Fixes SENTRY-5678"

sentryのその他のスキル

architecture-review
sentry
スタッフレベルのコードベースヘルスレビュー。モノリシックモジュール、サイレント障害、型安全性のギャップ、テストカバレッジの穴、LLMフレンドリー性の問題を発見します。
pi-agent-integration
sentry
Integrate `@mariozechner/pi-agent-core` as the agent abstraction inside another library or runtime. Use when implementing or refactoring Pi Agent wrappers,…
sentry-debug-issue
sentry
Sentryの課題をデバッグして修正する — (リンク、ID、検索で)課題を見つけ、完全なコンテキスト(スタックトレース、ブレッドクラム、トレース、ログ)を取得し、必要に応じてSeerの根本原因分析を実行…
sentry-svelte-sdk
sentry
SvelteおよびSvelteKit向けの完全なSentry SDKセットアップ。「SvelteにSentryを追加」「SvelteKitにSentryを追加」「@sentry/sveltekitをインストール」または設定を求められた場合に使用します。
sentry-svelte-sdk
sentry
SvelteおよびSvelteKit向けの完全なSentry SDKセットアップ。「SvelteにSentryを追加」「SvelteKitにSentryを追加」「@sentry/sveltekitをインストール」、または設定を求められた場合に使用します。
skill-scanner
sentry
エージェントスキルをセキュリティ問題についてスキャンします。「スキルをスキャンして」と依頼されたときに使用します。
prompt-optimizer
sentry
エージェントプロンプト、システムプロンプト、開発者プロンプト、再利用可能なプロンプトテンプレートを作成、最適化、反復的に改良します。改善を求められた際に使用します…
commit
sentry
commit — getsentry/sentry-docs が公開する、AIエージェント向けのインストール可能なスキルです。