AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Changelog Generator

skill-bestdeejay-design-agent-skills-changelog-generator · by bestdeejay-design

Генерация раздела CHANGELOG (Keep a Changelog) из git-истории по Conventional Commits. Скрипт changelog_gen.py читает git log в диапазоне tag..HEAD, парсит commit-сообщения, маппит типы (feat→Added, fix→Fixed, perf/refactor→Changed, breaking→отдельная секция) и рендерит Markdown с датами и ссылками на коммиты. Режимы: --top (Unreleased), --from-tag, включая скрытые типы (docs/ci/chore) через флаг…

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-bestdeejay-design-agent-skills-changelog-generator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-bestdeejay-design-agent-skills-changelog-generator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
today

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Changelog Generator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Changelog Generator

> Генерация раздела CHANGELOG из git-истории: анализ commit-логов, группировка > по Keep a Changelog секциям, готовый Markdown в stdout или файл.

Загружай этот скилл когда нужно сгенерировать/обновить changelog из истории коммитов для релиза или представительской проверки. Скилл читает git log, классифицирует изменения по типам и выдаёт готовый Markdown.

🎯 When to use

Use this skill when:

  • Нужно сгенерировать CHANGELOG.md перед релизом (секции Added/Fixed/Changed)
  • Нужен «что нового» для PR или release notes
  • Просят «созерай чанлог», «обнови changelog», «история изменений»
  • Нужно быстро посмотреть, какие фичи/фиксы попали в диапазон тегов

Do NOT use when:

  • Лог коммитов нужен «как есть» (без группировки) — это обычный git log
  • Нужна переносим MVP-типов вручную — скрипт уже делает маппинг
  • Репозиторий не использует Conventional Commits — маппинг будет пустым

📦 Files

  • SKILL.md — этот файл
  • scripts/changelog_gen.py — основной скрипт (Python 3 stdlib only)

🔧 Usage

# Unreleased (от последнего тега до HEAD)
python3 skills/changelog-generator/scripts/changelog_gen.py --repo  --top

# Для версии между тегами:
python3 skills/changelog-generator/scripts/changelog_gen.py \
    --repo  --from-tag v1.0.0 --version 1.1.0

# Включить скрытые типы (docs/ci/chore/test):
python3 changelog_gen.py --repo  --top --all

# Записать в файл:
python3 changelog_gen.py --repo  --top --out CHANGELOG.md

🔄 Маппинг типов

| Conventional Commits | Секция | Замечание | |----------------------|--------|-----------| | feat: ... | Added | Новая функциональность | | fix: ... | Fixed | Багификсы | | perf: / refactor: | Changed | Изменения поведения | | revert: | Reverts| Откаты | | breaking (! или BREAKING CHANGE:) | Breaking | Выносится в свою секцию | | docs/style/test/build/ci/chore | скрыты | Видны только с --all |

✅ Definition of Done

  • Скрипт отработал без ошибок: stdout или файл с секциями Added/Fixed/Changed.
  • Breaking-коммиты вынесены в отдельную секцию.
  • Дата и версия в заголовке корректны.
  • Если нужен CHANGELOG.md в репо — содержимое вставлено (по отдельным запросам).

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.