git-workflow
إتقان worktrees وعمليات commit في Git
Auch verfügbar von: Doyajin174,0xDarkMatter,AI-Vibe-Prompts,Joseph OBrien,0xDarkMatter,Joseph OBrien,Barnhardt-Enterprises-Inc,supercent-io
كتابة رسائل commit جيدة وإدارة الفروع أمر صعب. توفر هذه المهارة إرشادات واضحة لأساليب عمل Git worktree، وConventional Commits، وأفضل ممارسات pull request كي يبقى سجلّك نظيفًا وقابلاً للقراءة.
Die Skill-ZIP herunterladen
In Claude hochladen
Gehe zu Einstellungen → Fähigkeiten → Skills → Skill hochladen
Einschalten und loslegen
Teste es
Verwendung von "git-workflow". How do I create a worktree for a bug fix?
Erwartetes Ergebnis:
- Run: git worktree add ../project-bugfix-login-error fix/login-error
- This creates a new worktree at ../project-bugfix-login-error on branch fix/login-error
- Naming convention: ../project-<type>-<description>
- Types: feature, bugfix, hotfix, experiment, refactor
Verwendung von "git-workflow". What are the Conventional Commit types?
Erwartetes Ergebnis:
- feat: New feature - Adding user authentication
- fix: Bug fix - Fixing null pointer error
- docs: Documentation only - Update README
- refactor: Code refactoring - Restructure without behavior change
- perf: Performance improvement - Optimize algorithm
- test: Adding or updating tests - Add unit tests
Verwendung von "git-workflow". Help me write a proper commit message
Erwartetes Ergebnis:
- Use imperative mood: add not added
- Maximum 50 characters for subject line
- Wrap body at 72 characters
- Explain what and why, not how
- Example: fix(auth): resolve token expiration issue
Sicherheitsaudit
SicherDocumentation-only skill providing Git workflow guidance. All 93 static findings are false positives triggered by markdown documentation patterns. The skill contains only example Git commands, worktree path examples, and commit message formats. No executable code, network calls, or malicious capabilities exist. Scanner misidentified markdown code blocks as Ruby execution, standard Git worktree paths as path traversal, and documentation references as cryptographic algorithms.
Risikofaktoren
🌐 Netzwerkzugriff (2)
📁 Dateisystemzugriff (12)
⚙️ Externe Befehle (56)
Qualitätsbewertung
Was du bauen kannst
تطوير ميزات متوازٍ
استخدم Git worktrees للعمل على عدة ميزات دون تبديل السياق أو استخدام stashing.
فرض معايير رسائل commit
طبّق Conventional Commits وقوالب PR عبر فريقك للحصول على سجلّ متسق.
تقديم مساهمات عالية الجودة
اتبع أفضل الممارسات لرسائل commit وطلبات PR التي سيقدّرها المشرفون.
Probiere diese Prompts
Create a Git worktree for a new feature called user-authentication in the parent directory.
Write a Conventional Commit message for adding JWT token refresh to the auth module.
Add a commit trailer referencing GitHub issue #123 as the related issue.
Show me the PR review checklist before requesting review.
Bewährte Verfahren
- استخدم Git worktrees للعمل المتوازي بدلًا من stashing أو تبديل الفروع
- اتّبع تنسيق Conventional Commits مع النوع والنطاق وصيغة الأمر
- اجعل PRs صغيرة ومركزة على ميزة واحدة لسهولة المراجعة
Vermeiden
- القيام بـ commit مباشرة إلى main دون مراجعة الكود
- استخدام رسائل commit مبهمة مثل fix bug أو update
- خلط تغييرات غير مترابطة في commit واحد أو PR واحد