chlog

YAML-first changelog CLI. Single CHANGELOG.yaml → auto-generated CHANGELOG.md → CI validation.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "chlog" with this command: npx skills add ariel-frischer/chlog/ariel-frischer-chlog-chlog

chlog

YAML-first changelog CLI. Single CHANGELOG.yaml → auto-generated CHANGELOG.md → CI validation.

Commands

chlog init # Create CHANGELOG.yaml + .chlog.yaml (auto-detects repo URL) chlog init --project myapp # Skip project name prompt chlog validate # Validate YAML schema chlog sync # Generate CHANGELOG.md from YAML chlog check # CI gate: exit 0=sync, 1=stale, 2=invalid chlog show # Terminal display (colors + icons) chlog show 1.2.0 # Single version chlog show --last 5 # Last N entries chlog show --plain # No ANSI chlog extract 1.0.0 # Markdown for one version (pipe to gh release) chlog add added "Feature" # Add entry to unreleased chlog add fixed -v 1.0.0 "Fix" # Add to specific version chlog add changed -i "Refactor" # Add as internal entry chlog add added "A" "B" # Add multiple entries at once chlog remove added "Feature" # Remove exact entry from unreleased chlog remove added -m "feat" # Remove by substring match chlog remove fixed -v 1.0.0 "Fix" # Remove from specific version chlog remove changed -i "Refactor" # Remove internal entry chlog scaffold # Dry-run: conventional commits → YAML chlog scaffold --write # Merge into CHANGELOG.yaml chlog release 1.0.0 # Promote unreleased → 1.0.0 (today's date) chlog release 1.0.0 --date 2026-03-01

Global flags: -f (CHANGELOG.yaml path), --config (.chlog.yaml path), --internal (include internal entries).

Schema

project: my-project versions: unreleased: added: - "New feature" internal: # Excluded by default, use --internal changed: - "Refactored auth" 1.0.0: date: "2024-01-01" # Required for released versions added: [] changed: [] deprecated: [] removed: [] fixed: [] security: []

Categories are arbitrary YAML keys on each version. By default, the six Keep a Changelog categories are enforced (strict mode). Custom categories can be allowed via config.

Config (.chlog.yaml)

repo_url: https://github.com/org/repo # Auto-detected from git remote include_internal: false # Include internal entries by default categories: [added, changed, performance] # Custom allowed categories (optional) strict_categories: false # false = accept any category (optional)

Field Default Description

categories

Keep a Changelog 6 Custom allowlist of category names

strict_categories

true

false disables category validation entirely

Scaffold Mapping

Commit Type Category Tier

feat

added public

fix

fixed public

refactor , perf

changed internal

deprecate

deprecated public

remove

removed public

chore , docs , style , test , ci , build

skipped —

Breaking changes (feat!: ) → changed , prefixed BREAKING: .

Workflows

Setup: chlog init → edit CHANGELOG.yaml → chlog sync

Release: chlog scaffold --write → curate → chlog release 1.2.0 → chlog sync → chlog extract 1.2.0 > notes.md

CI: chlog validate && chlog check

Go Library

import "github.com/ariel-frischer/chlog/pkg/changelog"

c, _ := changelog.Load("CHANGELOG.yaml") v, _ := c.GetVersion("1.0.0") entries := v.Public.Get("added") // []string v.Public.Append("fixed", "Bug fix") // add entry v.Public.Remove("fixed", "Bug fix", false) // remove entry md, _ := changelog.RenderMarkdownString(c) c.Release("2.0.0", "2024-06-01") changelog.Save(c, "CHANGELOG.yaml")

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

CP2K Cross-Code Input Studio

Generate, refine, explain, and cross-convert CP2K-centered input drafts for computational chemistry and materials workflows. Use when a user wants a CP2K .in...

Registry SourceRecently Updated
Coding

PDF to markdown converter

Convert PDF and image documents to clean Markdown via the PDF2Markdown CLI. Use when the user wants to extract text from PDFs, convert PDFs to markdown, pars...

Registry SourceRecently Updated
Coding

VMware Monitor

VMware vCenter/ESXi read-only monitoring skill. Code-level enforced safety — no destructive operations exist in this codebase. Query inventory, check health/...

Registry SourceRecently Updated
0318
zw008