スキル一覧に戻る
mcsdodo

changelog-skill

by mcsdodo

0🍴 1📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: changelog-skill description: Use after completing user-visible features, fixes, or behavior changes - NOT for internal docs (CLAUDE.md, DECISIONS.md, _tasks/)

Changelog Update Skill

Updates CHANGELOG.md with changes as they happen, not later.

When to Use

  • After completing a new feature
  • After fixing a bug
  • After changing existing behavior
  • Before committing completed work

When NOT to Use

  • Planning documents (_tasks/ folder)
  • Design docs, task plans, brainstorming notes
  • Internal documentation (CLAUDE.md, DECISIONS.md updates)
  • Tech debt tracking files
  • Any documentation that isn't user-visible

Rule: Changelog is for user-visible changes only. Planning and internal docs don't belong.

Changelog Sections (Slovak)

SectionSlovakUse For
Added### PridaneNew features, new capabilities
Changed### ZmeneneModified behavior, updates to existing features
Fixed### OpraveneBug fixes, corrections
Removed### OdstraneneRemoved features (rare)

Workflow

1. Read Current Unreleased Section

head -20 CHANGELOG.md

2. Add Entry Under Correct Section

Edit CHANGELOG.md, adding entry under ## [Unreleased]:

## [Unreleased]

### Pridane
- {New feature description}

### Zmenene
- {Changed behavior description}

### Opravene
- {Bug fix description}

3. Create Section If Missing

If the needed section doesn't exist under [Unreleased], add it in this order:

  1. Pridane (Added)
  2. Zmenene (Changed)
  3. Opravene (Fixed)
  4. Odstranene (Removed)

4. Commit With Your Changes

Include changelog update in the same commit as the code change:

git add CHANGELOG.md src/...
git commit -m "feat: {description}"

Writing Good Entries

Do:

  • Write in Slovak
  • Be concise (one line per change)
  • Focus on user-visible impact
  • Use consistent terminology

Don't:

  • Include technical implementation details
  • Mention file names or internal refactoring
  • Write in English (except technical terms)

Examples

### Pridane
- Export do PDF s prehladom celej knihy jazd
- Moznost vymazat zalohy

### Zmenene
- Predvolene radenie: najnovsie zaznamy hore
- Zlepseny dizajn modalneho okna

### Opravene
- Oprava reaktivity dropdown-u pre vyber roku
- Autocomplete: oprava generovania tras pri uprave jazd

Notes

  • Update changelog IMMEDIATELY when completing work
  • Each commit can include a changelog update
  • Release skill (/release) moves [Unreleased] to versioned section
  • Write for users, not developers

スコア

総合スコア

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

レビュー

💬

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