branches

作成者: redis

プロジェクトの規約に従ってgitブランチを作成し、名前を付けます。ブランチの作成時、新しいブランチのチェックアウト時、またはユーザーがブランチの命名について言及した場合に使用します。

npx skills add https://github.com/redis/redisinsight --skill branches

Branch Naming Conventions

Use lowercase kebab-case with type prefix and issue/ticket identifier.

# Pattern: <type>/<issue-ref>/<short-title>

# INTERNAL (JIRA - RI-XXX)
feature/RI-123/add-user-profile
bugfix/RI-789/memory-leak
fe/feature/RI-567/add-dark-mode
be/bugfix/RI-345/fix-redis-connection
docs/RI-333/update-docs
test/RI-444/add-unit-tests
e2e/RI-555/add-integration-tests

# OPEN SOURCE (GitHub - XXX)
feature/123/add-export-feature
bugfix/789/fix-connection-timeout

# Special branches
release/v2.0.0
ric/RI-666/custom-prefix

Branch Types

  • feature/ - New features and refactoring (affects multiple areas)
  • bugfix/ - Bug fixes (affects multiple areas)
  • fe/feature/ - Frontend-only features (only redisinsight/ui/ folder)
  • fe/bugfix/ - Frontend-only bug fixes (only redisinsight/ui/ folder)
  • be/feature/ - Backend-only features (only redisinsight/api/ folder)
  • be/bugfix/ - Backend-only bug fixes (only redisinsight/api/ folder)
  • docs/ - Documentation changes
  • test/ - Test-related changes
  • e2e/ - End-to-end test changes
  • release/ - Release branches
  • ric/ - Custom prefix for special cases

Note: When a bug fix affects only the redisinsight/ui/ folder, use fe/bugfix/ prefix instead of bugfix/.

Issue References

  • Internal: RI-XXX (JIRA ticket)
  • Open Source: XXX (GitHub issue number)
  • Use # only in commit messages, not branch names

redisのその他のスキル

docs-sync
redis
masterブランチの実装と設定を分析し、docs/、README.md、およびパッケージごとのREADMEにあるドキュメントの欠落、誤り、または古い部分を特定します。
official
implement-command
redis
Add a new Redis command (or command variant) to node-redis end-to-end — the `<NAME>.ts` Command file, its registration with JSDoc in the package…
official
maintainer-review
redis
GitHubのIssueまたはPull RequestのURLをnode-redisメンテナーとしてレビューし、その主張が現実的か、実用的に重要か、すでに…について段階的に評価します。
official
pr-draft-summary
redis
node-redisに必要なPR対応のサマリーブロック、ブランチ提案、タイトル、ドラフト説明を作成します。最終応答の前に必ず使用してください。
official
runtime-behavior-probe
redis
一時的なTypeScriptプローブスクリプト、検証マトリックス、状態制御、および発見優先のレポートを使用して、runtime-behavior-probeの調査を計画および実行します。使用…
official
backend
redis
NestJSバックエンド開発パターン(RedisInsight API向け):モジュール構造、サービス、コントローラー、DTO、依存性注入、エラーハンドリング。以下の場合に使用…
official
branches
redis
小文字のケバブケースを使用し、タイププレフィックスとイシュー/チケット識別子を付けてください。ブランチ名はGitHub Actionsワークフロールール(.github/workflows/enforce-branch-name-rules.ymlを参照)に一致する必要があります。
official
code-quality
redis
Code-quality standards for RedisInsight: TypeScript strictness, naming conventions (camelCase, PascalCase, UPPER_SNAKE_CASE), linting rules, no `any` without…
official