Files
affaan-m--everything-claude…/docs/ja-JP/rules/common/git-workflow.md
T
wehub-resource-sync d48cda4081
CI / Test (ubuntu-latest, Node 18.x, bun) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, npm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, pnpm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, yarn) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 20.x, bun) (push) Failing after 17m13s
CI / Test (ubuntu-latest, Node 20.x, npm) (push) Failing after 18m42s
CI / Test (ubuntu-latest, Node 20.x, pnpm) (push) Failing after 15m0s
CI / Test (ubuntu-latest, Node 20.x, yarn) (push) Failing after 49m44s
CI / Test (ubuntu-latest, Node 22.x, bun) (push) Failing after 51m55s
CI / Test (ubuntu-latest, Node 22.x, pnpm) (push) Failing after 21m57s
CI / Test (ubuntu-latest, Node 22.x, npm) (push) Failing after 37m39s
CI / Test (ubuntu-latest, Node 22.x, yarn) (push) Failing after 34m7s
CI / Validate Components (push) Failing after 37m15s
CI / Python Tests (push) Failing after 10m1s
CI / Security Scan (push) Failing after 10m1s
CI / Lint (push) Failing after 17m12s
CI / Coverage (push) Failing after 20m19s
CI / Test (macos-latest, Node 18.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, yarn) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 11:55:55 +08:00

1.5 KiB
Raw Blame History

Git ワークフロー

コミットメッセージフォーマット

<type>: <description>

<optional body>

タイプ: feat, fix, refactor, docs, test, chore, perf, ci

注記: コミットの共同作成者の属性を無効にするには、~/.claude/settings.json"includeCoAuthoredBy": false を設定します。Claude Code は既定で Co-Authored-By を付与し、ECC はこの設定を同梱しません。

Pull Request ワークフロー

PR を作成する際:

  1. 完全なコミット履歴を分析(最新のコミットだけでなく)
  2. git diff [base-branch]...HEAD を使用してすべての変更を確認
  3. 包括的な PR サマリーを作成
  4. TODO 付きのテスト計画を含める
  5. 新しいブランチの場合は -u フラグで push

機能実装ワークフロー

  1. まず計画

    • planner agent を使用して実装計画を作成
    • 依存関係とリスクを特定
    • フェーズに分割
  2. TDD アプローチ

    • tdd-guide agent を使用
    • まずテストを書く(RED
    • テストをパスするように実装(GREEN)
    • リファクタリング(IMPROVE
    • 80%+ カバレッジを確認
  3. コードレビュー

    • コード記述直後に code-reviewer agent を使用
    • CRITICAL と HIGH の問題に対処
    • 可能な限り MEDIUM の問題を修正
  4. コミット & プッシュ

    • 詳細なコミットメッセージ
    • Conventional Commits フォーマットに従う