Loading...
Loading...
A comprehensive Git agent skill combining strategic workflows, strict conventional commit standards, and safe execution protocols. Acts as a senior engineer to guide users through atomic, verifiable, and standardized git operations.
npx skill4agent add chiperman/agent-skills git-commit-expertgit add -ptypescopefeatfixgit logfix(api)style(ui)feat(user): add profile page<type>(<scope>): <subject>
<body>
<footer>| Type | Semantic Meaning | SemVer |
|---|---|---|
| feat | A new feature | |
| fix | A bug fix | |
| docs | Documentation only | |
| style | Formatting (whitespace, semi-colons, etc.) | |
| refactor | Code change (no feature, no fix) | |
| perf | Performance improvement | |
| test | Adding or correcting tests | |
| build | Build system / dependencies | |
| ci | CI configuration / scripts | |
| chore | Maintainance (no src/test change) | |
| revert | Reverting a previous commit | |
src/auth/login.tsauthcomponents/Button.tsxuicomponentsREADME.mddocs!feat(api)!: remove v1 endpointsBREAKING CHANGE: <description>git branch --show-currentmainmasterdev<type>/<short-description>git checkout -b fix/login-errorfeat/dark-modegit status # What's the state?
git diff # Review unstaged changes
git diff --cached # Review staged changes (Sanity Check)git add -pgit add .npm testpytestcargo testcargo checktscnpm run lintpackage.jsonMakefileREADME.mdgit commit -m "<type>(<scope>): <subject>" -m "<body>"git pull --rebasegit push origin <current-branch>--force--hard--no-verifymainmasterdev--no-verifyfix(api): handle null response in user endpoint
The user API could return null for deleted accounts, causing a crash
in the dashboard. Added a null check before accessing user properties.feat(alerts): add Slack thread replies for alert updates
When an alert is updated or resolved, post a reply to the original
Slack thread instead of creating a new message. This keeps related
notifications grouped together.refactor: extract common validation logic to shared module
Move duplicate validation code from three endpoints into a shared
validator class. No behavior change.feat(api)!: remove deprecated v1 endpoints
Remove all v1 API endpoints that were deprecated in version 23.1.
Clients should migrate to v2 endpoints.
BREAKING CHANGE: v1 endpoints no longer available.revert: feat(api): add new endpoint
This reverts commit abc123def456.
Reason: Caused performance regression in production.