Plugins

3 plugins

Results for “git-commits”

22 skills
More results
alirezarezvani
changelog-generator
Generate consistent, auditable release notes from Conventional Commits, compute semantic version bumps, and enforce commit format linting.
20.4k · bundle
moonklabs
git-submodule-manager
Manages git worktrees and submodules in monorepos, handling branch synchronization, commits, pushes, pulls, and branch switching across multiple repositories.
0 · bundle
luokai0
git
Provides Git commands and workflows for commits, branches, rebases, merges, conflict resolution, history recovery, and team collaboration, with safety rules for force-pushing and destructive operations.
10 · bundle
auto-skiller
undo
Rolls back Open-workspace phase or plan commits using a phase manifest with dependency checks and a confirmation gate, preserving history via git revert.
1 · bundle
zero-yx
huggingface-git-xet-dataset-publisher
Manage Hugging Face dataset Git repositories with Git Xet/LFS-compatible tracking, including setup, safe snapshot commits, push verification, binary rejection recovery, and README track-rule maintenance.
0
composiohq
pr-review-ci-fix
Automates PR review and CI auto-fix for GitHub and GitLab using the Composio CLI. Pulls diffs, fetches failing job logs, posts review comments, and loops fix commits until checks go green.
66.9k
luokai0
git-cli
Guides Git CLI operations from the command line, covering status checks, diffs, staging, commits, branching, stashing, and syncing with remotes, with a safety-first approach and reference materials.
10 · bundle
comeonoliver
cp
Verifies local changes, then commits and pushes the intended files on the current branch when explicitly requested.
61
github
copilot-pr-autopilot
Automates repeated rounds of Copilot code review on GitHub pull requests: triggers review, triages threads, dispatches parallel fix agents, commits, replies, and loops until convergence.
36.2k · bundle
jimliu
release-skills
Automates project releases with version bumping, multi-language changelog generation, and GitHub Release creation. Supports Node.js, Python, Rust, and generic projects.
23.1k
tinh2
hotfix
Diagnoses and fixes bugs in emergency mode with a maximum of two iterations, then commits, pushes, and creates a pull request.
13
majiayu000
push
Runs project tests, stages and commits changes with a conventional message, then rebases and pushes to the current branch, stopping on any failure.
567 · bundle
guild-agents
build-feature
Runs a five-phase pipeline—evaluation, specification, implementation, review, and QA—to build a feature end-to-end with specialized agents.
4
drnabeelkhan
junction-guard
Enforces a read-only rule for filesystem junctions and symlinks, blocking writes, deletes, and git commits that resolve outside the current project root.
2
lucassantana-dev
release-cut
Composite skill — promote the long-lived `release` branch to `main`, cut a single version that batches every PR accumulated since the last tag, then clean up. Chains pr-merge-readiness (on release→main PR) → version-bump (semver from commits) → changelog-update (promote [Unreleased] → versioned) → ship (tag + GitHub release) → stale-branch cleanup → optional ship-it for deploy. Use this INSTEAD of releasing every small fix individually. Many small commits become one well-scoped release.
1 · bundle
deep-chavda
python-ai-precommit-setup
Set up pre-commit hooks on a Python project — standard file-hygiene checks plus a security gate (gitleaks secret scanning, Trivy filesystem scan for CVEs/secrets/misconfigs, and Bandit Python SAST). Use this whenever the user wants to add, configure, or fix pre-commit hooks on a Python repo, mentions .pre-commit-config.yaml, wants secret/vulnerability/SAST scanning on commits, or is setting up code-quality guardrails — even if they just say 'add pre-commit hooks' without naming the tools. Especially for uv-based GenAI/LLM backends. Handles the setup gotchas that break first-time installs: the Trivy binary, the required data/html.tpl report template, bandit[toml] + [tool.bandit] config, and the right .gitignore entries.