git-workflow
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.zipInstalls 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。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
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.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| git-workflow (this skill) | 0 | 5mo | Review | Beginner |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| openspec-onboard | 10 | 5mo | Review | Beginner |
| codex-cli-bridge | 9 | 9mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
openspec-onboard
studyzy
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
codex-cli-bridge
alirezarezvani
Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools
skill-sync
KyleKing
Syncs Claude Skills with other AI coding tools like Cursor, Copilot, and Codeium by creating cross-references and shared knowledge bases. Invoke when user wants to leverage skills across multiple tools or create unified AI context.
github-workflow-automation
ruvnet
Advanced GitHub Actions workflow automation with AI swarm coordination, intelligent CI/CD pipelines, and comprehensive repository management
git-advanced-workflows
wshobson
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.