アクティブなブランチの変更をコミット&プッシュします(確認付き)。
Stages changes, creates a conventional commit message, and pushes to the active branch after confirming the diff and getting your approval. Use this to safely commit and push your work with proper message formatting.
/plugin marketplace add 9en/dev-claude-code-plugins/plugin install 9en-gh-plugins-gh@9en/dev-claude-code-pluginsアクティブなブランチの変更をコミット&プッシュします(確認付き)。
# 変更内容の確認
git status
git diff
# ステージング
git add <files>
# または全ファイル
git add .
# コミット
git commit -m "<commit-message>"
# プッシュ
git push origin <branch-name>
<type>: <subject>
<body>
feat - 新機能fix - バグ修正docs - ドキュメントstyle - フォーマット変更refactor - リファクタリングtest - テストchore - その他