git-advanced-1-commit-history
Sub-skill of git-advanced: 1. Commit History (+2).
Best use case
git-advanced-1-commit-history is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of git-advanced: 1. Commit History (+2).
Teams using git-advanced-1-commit-history should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/1-commit-history/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How git-advanced-1-commit-history Compares
| Feature / Agent | git-advanced-1-commit-history | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of git-advanced: 1. Commit History (+2).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 1. Commit History (+2) ## 1. Commit History ```bash # Write good commit messages git commit -m "feat(auth): add OAuth2 support - Add Google OAuth provider - Implement token refresh logic - Add user profile sync Closes #123" # Keep commits atomic # One logical change per commit # Use conventional commits # feat: new feature # fix: bug fix # docs: documentation # style: formatting # refactor: code restructure # test: add tests # chore: maintenance ``` ## 2. Branch Strategy ```bash # Feature branches from main git checkout -b feature/add-auth main # Hotfix branches from main git checkout -b hotfix/fix-login main # Keep branches short-lived # Merge frequently # Delete merged branches git branch -d feature/add-auth ``` ## 3. Rebase vs Merge ```bash # Use rebase for: # - Cleaning up local commits # - Updating feature branch from main git rebase main # Use merge for: # - Integrating feature into main # - Preserving branch history git merge --no-ff feature/add-auth ```
Related Skills
verify-Codex-run-commit-vs-working-tree-before-closing
After a Codex implementation run, verify the claimed file set against the actual commit and working tree before treating the issue as fully complete.
evaluate-local-commits-via-cherry-pick-dry-run
Technique to identify which ahead commits contain real changes vs. already-merged or ephemeral content
adversarial-code-review-for-committed-diffs
Systematic process for reviewing already-committed code changes to catch type inconsistencies, edge cases, and docstring gaps
repo-sync-deleted-remote-branch-and-unrelated-history-recovery
Recover multi-repo sync failures caused by deleted upstream branches, stale git index locks, and local branches with unrelated history to the remote default branch.
targeted-artifact-commit-verification
Verify whether the exact files from a just-completed task are still uncommitted before creating another commit, especially in dirty repos with unrelated churn.
artifact-commit-verification
Class-level artifact and commit verification for claimed agent work, exact file diffs, and closeout evidence.
memory-bridge-commit-fallbacks
Fallback procedures when the Hermes ↔ Codex memory bridge writes .Codex/memory outputs but the internal git commit/push path fails because of dirty, stale, or broken submodule state.
skill-creator-advanced-usage
Sub-skill of skill-creator: Advanced Usage.
clean-code-pre-commit-integration
Sub-skill of clean-code: Pre-commit Integration.
git-advanced-9-monorepo-patterns
Sub-skill of git-advanced: 9. Monorepo Patterns.
git-advanced-7-git-aliases
Sub-skill of git-advanced: 7. Git Aliases (+1).
git-advanced-6-git-hooks
Sub-skill of git-advanced: 6. Git Hooks.