---
name: Changelog Viewer
slug: changelog-viewer
category: DevOps
description: Changelog Viewer reads CHANGELOG.md and displays recent version entries with dates and sections when a user asks to view changelog history.
github: "https://github.com/FlorianBruniaux/claude-code-ultimate-guide/tree/main/.agents/skills/source-command-changelog"
language: Python
stars: 5728
forks: 751
install: "npx degit https://github.com/FlorianBruniaux/claude-code-ultimate-guide/tree/main/.agents/skills/source-command-changelog ~/.claude/skills/source-command-changelog"
installs_to: ~/.claude/skills/source-command-changelog
source_path: .agents/skills/source-command-changelog/SKILL.md
collection_size: 25
category_size: 798
collection_url: "https://dirskills.com/collections/FlorianBruniaux/claude-code-ultimate-guide"
added: 2026-08-15T06:52:46.407Z
last_synced: 2026-08-15T06:52:46.407Z
canonical_url: "https://dirskills.com/skills/changelog-viewer"
---

# Changelog Viewer

Changelog Viewer reads CHANGELOG.md and displays recent version entries with dates and sections when a user asks to view changelog history.

**Install:**

```bash
npx degit https://github.com/FlorianBruniaux/claude-code-ultimate-guide/tree/main/.agents/skills/source-command-changelog ~/.claude/skills/source-command-changelog
```

## README

# source-command-changelog

Use this skill when the user asks to run the migrated source command `changelog`.

## Command Template

# CHANGELOG Viewer

Display recent entries from CHANGELOG.md with optional count limit.

## Usage

```
/changelog       # Show last 5 entries (default)
/changelog 10    # Show last 10 entries
/changelog all   # Show all entries
```

## What to Display

Read `CHANGELOG.md` and extract the last N version entries with:
- Version number
- Release date
- All sections (Added, Changed, Fixed, etc.)
- Full content per section

## Output Format

```
📋 Recent CHANGELOG Entries

═══════════════════════════════════════════════════════════

## [3.9.11] - 2026-01-20

### Added
- Production Safety Rules (Section 14.3)
  - Critical safety practices for production deployments
  - Rollback procedures and monitoring guidelines

### Documentation
- Enhanced deployment workflow documentation
- Added safety checklist templates

═══════════════════════════════════════════════════════════

## [3.9.10] - 2026-01-19

### Added
- DevOps & SRE Guide with FIRE Framework
  - Fault tolerance patterns
  - Incident response protocols
  - Recovery procedures
  - Escalation guidelines

### Documentation
- New Section 9.18: DevOps & SRE Practices
- 45+ operational best practices

═══════════════════════════════════════════════════════════

[... more entries ...]

───────────────────────────────────────────────────────────
Showing 5 of N total entries
Use /changelog 10 for more, or /changelog all for complete history
```

## Implementation

1. Read CHANGELOG.md
2. Parse entries using regex: `## \[(\d+\.\d+\.\d+)\] - (\d{4}-\d{2}-\d{2})`
3. Extract content between version headers
4. Limit to N entries (default 5)
5. Format with clear separators
6. Add footer with total count

## Special Handling

- Skip `[Unreleased]` section if present at top
- Handle missing dates gracefully
- Preserve markdown formatting in descriptions
- Show section hierarchy (###, bullet points)
