Install
openclaw skills install ai-git-assistantClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
AI-powered git commit messages, changelogs, release notes, PR descriptions, and commit review. Analyzes staged changes and git history to generate professional, Conventional Commits-compliant output. Powered by evolink.ai
openclaw skills install ai-git-assistantAI-powered git workflow assistant. Generate commit messages from staged changes, review commit quality, create changelogs from git history, generate release notes between tags, and write PR descriptions from branch diffs.
Powered by Evolink.ai
export EVOLINK_API_KEY="your-key-here"
Get a free key: evolink.ai/signup
git add .
bash scripts/git-assist.sh commit
bash scripts/git-assist.sh changelog --from v1.0.0
| Command | Description |
|---|---|
conventions | Conventional Commits quick reference |
| Command | Description |
|---|---|
commit | AI generate commit message from staged changes |
review <message> | AI review commit message for quality and conventions |
changelog [--from <tag>] | AI generate changelog from git log |
release [--from <tag>] [--to <tag>] | AI generate release notes between tags |
pr | AI generate PR description from branch diff |
git add src/auth.ts src/middleware.ts
bash scripts/git-assist.sh commit
Output:
feat(auth): add JWT refresh token rotation
- Implement automatic token rotation on refresh
- Add refresh token family tracking to detect reuse
- Update middleware to handle expired access tokens gracefully
BREAKING CHANGE: refresh endpoint now returns both access and refresh tokens
bash scripts/git-assist.sh review "fixed stuff"
Output:
Commit Review: 3/10
Issues:
[FAIL] No type prefix (should be fix:, feat:, etc.)
[FAIL] Vague description — what was fixed?
[WARN] All lowercase is fine, but be consistent
[FAIL] No scope — which module was affected?
Suggested rewrite:
fix(auth): resolve token expiration race condition
bash scripts/git-assist.sh changelog --from v1.2.0
bash scripts/git-assist.sh release --from v1.0.0 --to v2.0.0
bash scripts/git-assist.sh pr
| Variable | Default | Required | Description |
|---|---|---|---|
EVOLINK_API_KEY | — | Yes (AI commands) | Your EvoLink API key. Get one free |
EVOLINK_MODEL | claude-opus-4-6 | No | Model for AI analysis |
Required binaries: python3, curl, git
Data Transmission
AI commands send git diff output or commit history to api.evolink.ai for analysis by Claude. By setting EVOLINK_API_KEY and using these commands, you consent to this transmission. Data is not stored after the response is returned. The conventions command runs entirely locally.
Network Access
api.evolink.ai — AI analysis (AI commands only)Persistence & Privilege
No files are written. No credentials stored. Temporary files for API payloads are cleaned up automatically. This skill never runs git commit, git push, or any destructive git operations — it only reads.