Install
$ agentstack add skill-imezx-skills-git-commit ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
git-commit
Use this skill when writing git commit messages, PR descriptions, changelogs, or release notes.
Commit Message Format
Always use Conventional Commits:
():
Type
| Type | When to use | |---|---| | feat | New feature visible to users | | fix | Bug fix | | refactor | Code change that neither fixes a bug nor adds a feature | | perf | Performance improvement | | test | Adding or fixing tests | | docs | Documentation only | | chore | Build, tooling, dependency updates | | ci | CI/CD pipeline changes | | revert | Reverting a previous commit |
Subject Line Rules
- Imperative mood: "add login" not "added login" or "adds login"
- No capital first letter
- No period at the end
- Max 72 characters
- Must complete the sentence: "If applied, this commit will ****"
Body Rules
- Wrap at 72 characters
- Explain what and why, not how (the diff shows how)
- Separate from subject with a blank line
- Use only when the change needs explanation beyond the subject
Footer
BREAKING CHANGE:for breaking API changesCloses #123,Fixes #456for issue referencesCo-authored-by: Namefor pair work
Examples
Simple fix:
fix(auth): prevent token refresh loop on 401 response
Feature with body:
feat(api): add pagination to /users endpoint
Previously the endpoint returned all users in a single response,
which caused timeouts for accounts with > 10k users.
Adds cursor-based pagination with a default page size of 50.
Existing clients are unaffected - the endpoint returns all results
when no cursor param is provided.
Closes #892
Breaking change:
refactor(config): rename DATABASE_URL to DB_CONNECTION_STRING
BREAKING CHANGE: The DATABASE_URL environment variable is no longer
read. Rename it to DB_CONNECTION_STRING in all deployment configs.
PR Description Format
## What
One paragraph: what this PR does and why.
## How
Brief explanation of the approach taken. Link to relevant docs or
prior art if the approach is non-obvious.
## Testing
How you verified it works. "Tested manually" is acceptable for small
changes; describe the steps.
## Screenshots (if UI change)
Before / after where helpful.
## Checklist
- [ ] Tests added or updated
- [ ] Docs updated (if public API changed)
- [ ] No unrelated changes included
Changelog Entry Format (Keep a Changelog)
### Added
- New feature description (#PR or commit hash)
### Changed
- What changed and how it affects users
### Fixed
- Bug description (what it was, what it is now)
### Removed
- What was removed and migration path if needed
### Breaking
- Description + migration instructions
Group under the version heading: ## [1.4.0] - 2025-04-01
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: imezx
- Source: imezx/skills
- License: Apache-2.0
- Homepage: https://lmstudio.ai/khtsly/skills
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.