← Back to list

git-changelog
by dreamworks2050
RetroLogin WordPress plugin - A retro-themed login experience for WordPress
⭐ 0🍴 0📅 Dec 29, 2025
SKILL.md
name: git-changelog description: Generate changelog from git commits and manage versions.
Git Changelog Generator
Instructions
When releasing a new version:
- Generate commit log:
git log --oneline --since="..." - Group by type: Features, Fixes, Changes
- Format for changelog: Keep, markdown format
- Update version constant: Update
PLUGIN_VERSION - Tag the release:
git tag v0.1.0
Changelog Pattern
## 0.1.0 - 2025-12-29
### Added
- Initial release with retro login page
- Custom login page styling
- Login redirect functionality
### Changed
- Updated Howdy boilerplate structure
### Fixed
- Security: ABSPATH check added to all files
Generate Log Command
# Since last tag
git log --oneline $(git describe --tags --abbrev=0 2>/dev/null || v0.0.0)..HEAD
# Since specific date
git log --oneline --since="2025-12-01"
# All commits
git log --oneline -20
Version Update
Update in retrologin.php:
const PLUGIN_VERSION = '0.1.0';
Git Tag
# Create tag
git tag -a v0.1.0 -m "Version 0.1.0"
# Push tag
git push origin v0.1.0
# List tags
git tag -l
Guidelines
- Follow Semantic Versioning (MAJOR.MINOR.PATCH)
- Keep changelog in readme.txt or CHANGELOG.md
- Tag before publishing to WordPress.org
- Test after version bump
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon