git-workflow
Domine o fluxo de trabalho Git com commits convencionais
也可从以下获取: 0xDarkMatter,AI-Vibe-Prompts,Joseph OBrien,0xDarkMatter,Joseph OBrien,Barnhardt-Enterprises-Inc,Cain96,supercent-io
Desenvolvedores enfrentam dificuldades com mensagens de commit inconsistentes e convenções de nomenclatura de branches. Esta skill fornece fluxos de trabalho Git padronizados incluindo commits convencionais, estratégias de branch e listas de verificação pré-conclusão para garantir mudanças de código limpas e rastreáveis.
下载技能 ZIP
在 Claude 中上传
前往 设置 → 功能 → 技能 → 上传技能
开启并开始使用
测试它
正在使用“git-workflow”。 Help me create a conventional commit for adding user login
预期结果:
- feat(auth): add user login functionality
- Implement JWT-based authentication with email/password
- Closes #45
正在使用“git-workflow”。 How should I name my branch for a bug fix
预期结果:
- Use the format: fix/issue-number-description
- Example: fix/123-handle-null-response
- This keeps branches organized and traceable to issues
正在使用“git-workflow”。 What are the pre-push checks
预期结果:
- 1. Run all tests: npm test
- 2. Run linter: npm run lint
- 3. Type check (TypeScript): tsc --noEmit
- 4. Build: npm run build
- 5. Verify no console.log statements remain
安全审计
安全Pure documentation skill containing only markdown guidance on Git workflow best practices. No executable code, scripts, network calls, filesystem access beyond its own files, or command execution capabilities. All 40 static findings are false positives.
风险因素
🌐 网络访问 (1)
📁 文件系统访问 (1)
⚙️ 外部命令 (23)
质量评分
你能构建什么
Escrever commits limpos
Aprenda o formato de commit convencional para criar histórico de commits rastreável e compatível com auto-changelog
Aplicar padrões de equipe
Estabelecer nomenclatura de branches consistente e convenções de mensagens de commit em equipes de desenvolvimento
Verificar antes do push
Seguir listas de verificação pré-conclusão garantindo que testes, linting e builds passem antes do código chegar ao remoto
试试这些提示
Help me write a conventional commit for adding user authentication. Include type, scope, and description.
I need to create a breaking change commit for my API. Show me the correct format with footer.
What are the pre-completion verification steps I should run before pushing my git changes?
What is the proper naming convention for a branch that fixes bug issue-123?
最佳实践
- Use tipos de commit semânticos: feat para features, fix para correções de bugs, refactor para reestruturação
- Sempre execute testes e linting antes de fazer commit para detectar problemas cedo
- Inclua números de issues nas mensagens de commit para rastreabilidade
避免
- Usar mensagens de commit genéricas como 'fixed stuff' ou 'update'
- Fazer commit diretamente na branch main sem revisão de código
- Pular verificações pré-conclusão e fazer push de código quebrado