skills/git-workflow/SKILL.md
Git workflow expert. Use when managing branches, commits, merges, rebases, and release processes.
npx skillsauth add ai-engineer-agent/ai-engineer-skills git-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Execute git workflow action: $ARGUMENTS
Follow Conventional Commits format:
<type>(<scope>): <description>
[optional body]
[optional footer]
Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore
git checkout -b feat/<description> from maingit fetch origin && git rebase origin/maingit checkout -b fix/<description> from maingit commit -m "chore: release v1.2.3"git tag -a v1.2.3 -m "Release v1.2.3"git push origin main --tagsgit rebase -i to clean up local history before PRgit stash for temporary context switchesgit diff --staged.gitignore for build artifacts, dependencies, secrets, IDE filesdevelopment
Senior Vue.js developer. Use when writing, reviewing, or refactoring Vue applications. Enforces Vue 3 Composition API and modern patterns.
data-ai
Vector database and similarity search expert. Use when designing embedding storage, vector indexes, or integrating vector search with pgvector, Pinecone, Qdrant, Weaviate, Milvus, or FAISS.
development
Senior TypeScript developer. Use when writing, reviewing, or refactoring TypeScript code. Enforces strict typing, modern patterns, and clean architecture.
testing
Generate comprehensive tests for a module or function. Covers happy paths, edge cases, and error scenarios.