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

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated
Coding

ai-dating

This skill enables dating and matchmaking workflows. Use it when a user asks to make friends, find a partner, run matchmaking, or provide dating preferences/profile updates. The skill should execute `dating-cli` commands to complete profile setup, task creation/update, match checking, contact reveal, and review.

Archived SourceRecently Updated
Coding

clawhub-rate-limited-publisher

Queue and publish local skills to ClawHub with a strict 5-per-hour cap using the local clawhub CLI and host scheduler.

Archived SourceRecently Updated