Implements a strict Git workflow using Conventional Commits in Traditional Chinese to ensure clear and readable version history.

Install

mkdir -p .claude/skills/git-workflow-bestronger1983 && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/18494" && unzip -o skill.zip -d .claude/skills/git-workflow-bestronger1983 && rm skill.zip

Installs to .claude/skills/git-workflow-bestronger1983

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Git 版本控制工作流程。用於 commit、push、branch 管理、PR 操作。使用 Conventional Commits 格式與繁體中文 commit message。
91 charsno explicit “when” trigger
Beginner

Key capabilities

  • Add all or specific changes to the staging area
  • Commit changes with a descriptive message
  • Create new branches with a specified naming convention
  • Switch between existing branches

How it works

This skill provides a Git workflow that includes commit message guidelines using Conventional Commits, along with commands for staging, committing, pushing, and branch management.

Inputs & outputs

You give it
Code changes in a Git repository
You get back
Formatted commit messages, new branches, merged branches, and pushed changes

When to use git-workflow

  • Committing changes with standardized messages
  • Creating feature branches
  • Merging branches into main

About this skill

Git Workflow

處理 Git 版本控制相關任務的專業流程。

Commit 規範

使用 Conventional Commits 1.0.0 格式,commit message 使用繁體中文

格式

<type>(<scope>): <description>

[optional body]

Type 類型

Type說明
feat新功能
fix錯誤修復
docs文件變更
style格式調整(不影響程式邏輯)
refactor重構(不新增功能也不修復錯誤)
perf效能改進
test測試相關
chore雜項維護

範例

git commit -m "feat(skills): 新增 git-workflow 技能"
git commit -m "fix(session): 修復空訊息通知問題"
git commit -m "docs: 更新 README 使用說明"

工作流程

1. 提交變更

# 查看狀態
git status

# 加入所有變更
git add -A

# 或加入特定檔案
git add <file>

# 提交
git commit -m "<type>(<scope>): <description>"

# 推送
git push

2. 分支管理

# 建立新分支
git checkout -b feature/<name>

# 切換分支
git checkout <branch>

# 合併分支
git merge <branch>

⚠️ 重要提醒

每次完成工作後,一定要 git commit 並 git push!

When not to use it

  • When Conventional Commits format is not desired
  • When commit messages are not in Traditional Chinese

Limitations

  • Requires commit messages to be in Traditional Chinese
  • Adheres to Conventional Commits 1.0.0 format
  • Requires `git commit` and `git push` after work completion

How it compares

This workflow enforces a standardized commit message format and provides explicit steps for Git operations, promoting consistency and clarity in version control compared to unstructured practices.

Compared to similar skills

git-workflow side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
git-workflow (this skill)05moReviewBeginner
resolve-conflicts818moReviewIntermediate
openspec-onboard105moReviewBeginner
codex-cli-bridge99moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry