Claude Code CommandProject Management28 installs

Release

Prepare and execute project release with version management and changelog updates

Install with the Claude Code Templates CLI
$ npx claude-code-templates@latest --command="project-management/release" --yes

Requires Claude Code. The command adds this command to your project's .claudedirectory — nothing runs on ToolZip's servers.

What's inside this command

Component source

Project Release

Update CHANGELOG.md with changes since the last version increase. Check our README.md for any necessary changes. Check the scope of changes since the last release and increase our version number as appropriate: $ARGUMENTS

Current Project State

  • Git status: !git status --porcelain
  • Current version: !git describe --tags --abbrev=0 2>/dev/null || echo "No previous tags"
  • Recent commits: !git log --oneline --since="1 month ago" | head -10
  • Package info: @package.json or @setup.py or @Cargo.toml (if exists)

Task

Prepare a project release following these steps:

  • Analyze Changes: Review git history since last release to determine appropriate version increment
  • Update Version: Update version in package.json, setup.py, or other version files based on semantic versioning
  • Update Changelog: Add new entries to CHANGELOG.md with proper categorization (Added, Changed, Fixed, etc.)
  • Update Documentation: Review and update README.md if necessary for new features or changes
  • Create Release: Tag the release and prepare release notes

If version type is specified in $ARGUMENTS, use that increment. Otherwise, analyze the changes and suggest appropriate versioning.

Focus on maintaining proper semantic versioning and clear changelog documentation.

Type
Command
Category
Project Management
Installs
28
Source
GitHub ↗

Related Claude Code Commands

Catalog data and component content are sourced from the open-source davila7/claude-code-templates project (MIT license). ToolZip curates the listing and writes original descriptions; every component links back to its original source. Claude Code is a product of Anthropic. ToolZip is an independent catalog and is not affiliated with or endorsed by Anthropic.