Nex Changelog
by @nexaiguy
Professional changelog and release notes generator for client-facing software releases and updates. Automatically parse git commit history using conventional...
clawhub install nex-changelogπ About This Skill
name: nex-changelog description: Professional changelog and release notes generator for client-facing software releases and updates. Automatically parse git commit history using conventional commit format (feat:, fix:, security:, etc.) and categorize changes into changelog entries (ADDED, CHANGED, FIXED, REMOVED, SECURITY, DEPRECATED, PERFORMANCE). Organize changes by target audience (internal team, client-facing, public) so you can create separate release notes for different stakeholders. Support multiple output formats including standard Keep a Changelog markdown format, simple text summaries, HTML reports, and JSON structured data. Generate professional client-facing email announcements highlighting new features and improvements while hiding technical details and internal refactoring. Create compact Telegram-friendly release announcements with emoji indicators for easy social media sharing. Track releases with semantic versioning, generate release summaries, and manage unreleased entries. Import git commits automatically from project repositories or manually add changelog entries for documentation or non-code releases. Perfect for web agencies, software companies, and development teams who need to communicate changes professionally with clients and stakeholders. version: 1.0.0 metadata: clawdbot: emoji: "π" requires: bins: - python3 - git env: [] primaryEnv: "" homepage: https://nex-ai.be files: - "nex-changelog.py" - "lib/*" - "setup.sh"
Nex Changelog
Changelog & Version Notes Generator for client-facing release communication. Organize code changes by type and audience, import from git commits, and export professional release notes in multiple formats (Keep a Changelog, client emails, Telegram).
When to Use
Use this skill when the user asks about:
Trigger phrases: "changelog", "release notes", "version update", "what changed", "client email", "release announcement", "breaking changes", "new features", "fixed issues", "generate changelog", "import commits", "what's new"
Quick Setup
If the database does not exist yet, run the setup script:
bash setup.sh
This creates the data directory, installs dependencies, and initializes the database.
Available Commands
The CLI tool is nex-changelog. All commands output plain text.
Add Entry
Manually add a changelog entry:
nex-changelog add --project "Ribbens Airco Website" --type added --description "Contact form with email notification" --audience clientnex-changelog add --project "My App" --description "Fixed the header menu on mobile" --type fixed --author "John Doe"
nex-changelog add --project "API Service" --type security --description "Patched SQL injection vulnerability" --breaking
Supported types: ADDED, CHANGED, FIXED, REMOVED, SECURITY, DEPRECATED, PERFORMANCE
Supported audiences: INTERNAL, CLIENT, PUBLIC
Import from Git
Import commits from a git repository as changelog entries:
nex-changelog git /path/to/repo --project "My App" --version 1.3.0nex-changelog git /path/to/repo --since v1.2.0 --project "My App"
nex-changelog git /path/to/repo --project "API" --description "REST API service"
The tool automatically:
Create Release
Create a formal release for a version:
nex-changelog release --project "Ribbens Airco Website" --version 1.3.0 --summary "Mobile fixes and contact form"nex-changelog release --project "My App" --version 2.0.0 \
--summary "Major rewrite" \
--client-notes "New dashboard and improved performance" \
--internal-notes "API v2, deprecated v1 endpoints"
Show Changelog
Display the changelog for a project:
nex-changelog show --project "Ribbens Airco Website" --format keepachangelognex-changelog show --project "My App" --version 1.3.0 --format simple
nex-changelog show --project "API Service" --type fixed --format table
nex-changelog show --project "My App" --audience client --format json
Supported formats: keepachangelog, simple, table, json
List Entries
List all changelog entries with filters:
nex-changelog list --project "My App"nex-changelog list --type fixed --audience client
nex-changelog list --version 1.3.0
nex-changelog list --project "API" --type security
Unreleased Entries
Show entries that haven't been assigned to a release yet:
nex-changelog unreleased --project "Ribbens Airco Website"
Generate Client Email
Create a professional client-facing email for a release:
nex-changelog email --project "Ribbens Airco Website" --version 1.3.0nex-changelog email --project "My App" --version 1.3.0 --client "Acme Corp"
Output is a professional email with:
Generate Telegram Message
Create a compact Telegram-friendly update:
nex-changelog telegram --project "Ribbens Airco Website" --version 1.3.0
Output is compact with emojis, suitable for posting to Telegram or Slack.
Manage Projects
Add, list, or view projects:
nex-changelog project add \
--name "Ribbens Airco Website" \
--repo-path /path/to/repo \
--client-name "Ribbens Airco" \
--client-email "contact@ribbens-airco.be" \
--description "Corporate website with contact form"nex-changelog project list
nex-changelog project show --name "Ribbens Airco Website"
Export Changelog
Export full changelog as markdown file:
nex-changelog export --project "My App" --output CHANGELOG.md
Search Entries
Search across all entries:
nex-changelog search --query "security"nex-changelog search --query "header menu" --project "Ribbens Airco Website"
nex-changelog search --query "performance" --project "API"
Statistics
View statistics across projects:
nex-changelog stats
Shows:
Example Interactions
User: "What changed in the latest release for Ribbens Airco?"
Agent runs: nex-changelog show --project "Ribbens Airco Website" --format simple
Agent: Displays the formatted changelog naturally.
User: "Generate a client email about version 1.3.0"
Agent runs: nex-changelog email --project "Ribbens Airco Website" --version 1.3.0
Agent: Shows the professional email ready to send.
User: "Import recent commits from the repo"
Agent runs: nex-changelog git /path/to/repo --project "My App"
Agent: Confirms imported entries and categorization.
User: "Add an entry: fixed the SSL redirect issue"
Agent runs: nex-changelog add --project "My App" --description "Fixed the SSL redirect issue" --type fixed --audience client
Agent: Confirms the entry was added.
User: "Create release 2.1.0 for ECHO Management website"
Agent runs: nex-changelog release --project "ECHO Management" --version 2.1.0
Agent: Confirms release created.
Output Parsing
All CLI output is plain text, structured for easy parsing:
--- separators- or β’ [Nex Changelog by Nex AI | nex-ai.be]When presenting output to the user, strip the footer line and present the information naturally.
Data Storage
All changelog data is stored locally at ~/.nex-changelog/:
changelog.db - SQLite database with projects, entries, and releasesexports/ - Generated markdown and export filesNo data is sent to external servers. The tool is fully local.
Conventional Commits
The tool automatically parses conventional commit messages:
feat: add new feature β ADDED, CLIENT audience
fix: resolve issue β FIXED, CLIENT audience
docs: update documentation β CHANGED, INTERNAL audience
style: formatting changes β CHANGED, INTERNAL audience
refactor: code reorganization β CHANGED, INTERNAL audience
perf: performance improvements β PERFORMANCE, CLIENT audience
test: add test coverage β CHANGED, INTERNAL audience
chore: dependency update β CHANGED, INTERNAL audience
security: fix vulnerability β SECURITY, CLIENT audience
Breaking changes (feat!: or fix!:) are automatically marked.
Important Notes
~/.nex-changelog/. No telemetry or external API calls.Troubleshooting
nex-changelog project list to see available projects, or nex-changelog project add to create a new one.nex-changelog list to view all entries, or nex-changelog add to create one..git folder.~/.nex-changelog/ directory exists and is writable.type(scope): description.Credits
Built by Nex AI (https://nex-ai.be) - Digital transformation for Belgian SMEs.
β‘ When to Use
π Tips & Best Practices
nex-changelog project list to see available projects, or nex-changelog project add to create a new one.nex-changelog list to view all entries, or nex-changelog add to create one..git folder.~/.nex-changelog/ directory exists and is writable.type(scope): description.