Stats
Actions
Tags
From ai-dlc-skills
Git workflow standards including commit messages, branch management, and success criteria. Use when committing code, creating branches, or preparing changes for review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-dlc-skills:git-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- When creating commits
main - create a feature branch firstgit fetch origin && git rebase origin/main (or git pull origin main) before creating a feature branch or starting work. This prevents merge conflicts in the PR.add-user-authentication, fix-memory-leak)Changes are considered successful when ALL of the following are met:
| Language | Build Command | Test Command |
|---|---|---|
| JavaScript/TypeScript | npm run build | npm test |
| Python | N/A | pytest or python -m unittest |
| Go | go build | go test ./... |
| Rust | cargo build | cargo test |
| C# | dotnet build | dotnet test |
<type>(<scope>): <brief description>
<detailed description>
Cursor-Task: <original task description>
| Type | When to Use |
|---|---|
feat | New feature |
fix | Bug fix |
refactor | Code restructuring without behavior change |
style | Formatting, whitespace changes |
docs | Documentation only |
test | Adding or modifying tests |
infra | Infrastructure, CI/CD, deployment |
chore | Maintenance tasks |
auth, api, ui)git commit -m "feat(auth): implement OAuth2 user authentication
Add Google OAuth2 authentication flow with JWT token handling.
Update user model to support OAuth providers.
Cursor-Task: Add OAuth2 authentication for user login"
git commit -m "infra(aws): update ECS task definitions
Increase memory allocation and add CloudWatch logging.
Cursor-Task: Optimize ECS resource allocation"
git commit -m "fixed stuff" - Missing type, not descriptivegit commit -m "wip" - Never commit work-in-progressBefore every commit, verify:
git fetch origin && git rebase origin/main before branchingGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub nathan-oakes/ai-dlc --plugin ai-dlc-skills