Git workflow
Skill ComeOnOliver/skillshub/skills/aiskillstore/marketplace/doyajin174/git-workflow
π§ The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill git-workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Complete Git workflow from conventional commits to pre-completion verification. Use for all Git operations including commits, branches, and releases.
The file declares its own license as MIT. That is the authorβs claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.1 KB, as published. Nobody here has run it
Git Workflow
컀λ°λΆν° μλ£ κ²μ¦κΉμ§μ Git μν¬νλ‘μ° ν΅ν© μ€ν¬μ λλ€.
Conventional Commits
Format
<type>(<scope>): <description>
[optional body]
[optional footer]
Types
| Type | μ€λͺ | μμ |
|---|---|---|
feat | μ κΈ°λ₯ | feat(auth): add JWT login |
fix | λ²κ·Έ μμ | fix(api): handle null response |
refactor | 리ν©ν λ§ | refactor(utils): simplify parser |
docs | λ¬Έμ | docs: update README |
test | ν μ€νΈ | test(auth): add login tests |
chore | κΈ°ν | chore: update deps |
Breaking Changes
feat(api)!: change response format
BREAKING CHANGE: response.data is now response.result
Pre-Completion Verification
μλ£ μ μΈ μ νμ 체ν¬
# 1. ν
μ€νΈ ν΅κ³Ό
npm test
# 2. λ¦°νΈ ν΅κ³Ό
npm run lint
# 3. νμ
μ²΄ν¬ (TypeScript)
npx tsc --noEmit
# 4. λΉλ μ±κ³΅
npm run build
Verification Checklist
- λͺ¨λ ν μ€νΈ ν΅κ³Ό
- λ¦°νΈ μλ¬ μμ
- νμ μλ¬ μμ
- λΉλ μ±κ³΅
- λ³κ²½μ¬ν 컀λ°λ¨
- λΆνμν console.log μ κ±°
Branch Strategy
main βββββββββββββββββββββββββββββ
β
ββ feature/auth ββββββββββββββ
β
ββ merge
Naming
feature/<description>
fix/<issue-number>-<description>
refactor/<description>
Commit Workflow
# 1. λ³κ²½μ¬ν μ€ν
μ΄μ§
git add <files>
# 2. μ»€λ° (κ·κ²© μ€μ)
git commit -m "feat(scope): description"
# 3. νΈμ μ κ²μ¦
npm test && npm run lint
# 4. νΈμ
git push
Checklist
- μ»€λ° λ©μμ§ κ·κ²© μ€μ
- ν μ€νΈ ν΅κ³Ό
- λ¦°νΈ ν΅κ³Ό
- λΉλ μ±κ³΅