How this skill is triggered — by the user, by Claude, or both
Slash command
/git-expert:git-configThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read and write git configuration values across all config levels.
Read and write git configuration values across all config levels.
git config --listgit config --global --listgit config --local --listgit config <key>git config <key> <value>git config --global <key> <value>git config --unset <key>git config --edit or --global --editgit config user.name "Name" / user.email "email"git config init.defaultBranch maingit config alias.<name> <command>git config diff.tool <tool>git config merge.tool <tool>git config --global --add safe.directory <path>Triggered when user says "config", "git config", "set git user", "git alias".
Read current config before making changes. Prefer --global for identity settings.
npx claudepluginhub andersonlimahw/lemon-ai-hub --plugin git-expertConfigures Git user identity (name/email) and project commit scopes using git-agent. Validates scopes from .git-agent/config.yml, abbreviates multi-word names, generates .claude/git.local.md.
Manages git identity and GPG signing profiles per repository. Discovers profiles from GPG + git config, switches local identity, and checks signing health.