スキル一覧に戻る
dreamworks2050

git-changelog

by dreamworks2050

RetroLogin WordPress plugin - A retro-themed login experience for WordPress

0🍴 0📅 2025年12月29日
GitHubで見るManusで実行

SKILL.md


name: git-changelog description: Generate changelog from git commits and manage versions.

Git Changelog Generator

Instructions

When releasing a new version:

  1. Generate commit log: git log --oneline --since="..."
  2. Group by type: Features, Fixes, Changes
  3. Format for changelog: Keep, markdown format
  4. Update version constant: Update PLUGIN_VERSION
  5. 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

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です