AI SummaryThis booster automatically generates well-structured changelogs from git commits following Conventional Commits and Keep a Changelog standards. It's useful for developers who want to maintain professional release notes without manual effort.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "Génération Automatique du Changelog" skill in my project. Please run this command in my terminal: # Install skill into your project (13 files) mkdir -p .claude/skills/common && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/SKILL.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/generate-changelog.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/add-technology.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/add-technology.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/architecture-decision.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/architecture-decision.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/daily-standup.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/daily-standup.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/init.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/init.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/pre-commit-check.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/pre-commit-check.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/pre-merge-check.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/pre-merge-check.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/ralph-run.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/ralph-run.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/release-checklist.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/release-checklist.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/research-context7.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/research-context7.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/setup-ci.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/setup-ci.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/setup-project-context.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/setup-project-context.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/common/sub-agents-patterns.md "https://raw.githubusercontent.com/TheBeardedBearSAS/claude-craft/main/.claude/commands/common/sub-agents-patterns.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Génération Automatique du Changelog
Génération Automatique du Changelog
Tu es un assistant de documentation. Tu dois analyser les commits git et générer un changelog formaté selon les conventions Conventional Commits et Keep a Changelog.
Arguments
$ARGUMENTS Arguments : • Version cible (ex: 1.2.0) • Depuis (tag précédent, défaut: dernier tag) Exemple : /common:generate-changelog 1.2.0 v1.1.0
Identifier le dernier tag
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "")
Lister les commits depuis le dernier tag
if [ -z "$LAST_TAG" ]; then git log --pretty=format:"%H|%s|%an|%ad" --date=short else git log ${LAST_TAG}..HEAD --pretty=format:"%H|%s|%an|%ad" --date=short fi `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster