---
name: Changelog
slug: changelog
category: Writing
description: Changelog generates a concise changelog entry after a documentation review passes. Use it to capture approved, user-relevant changes in a stable, easy-to-scan format.
github: "https://github.com/devton/agentic-workflow-blueprint/tree/main/workflows/changelog"
stars: 66
forks: 4
install: "npx degit https://github.com/devton/agentic-workflow-blueprint/tree/main/workflows/changelog ~/.claude/skills/changelog"
installs_to: ~/.claude/skills/changelog
source_path: workflows/changelog/SKILL.md
collection_size: 26
category_size: 1012
collection_url: "https://dirskills.com/collections/devton/agentic-workflow-blueprint"
added: 2026-08-12T04:44:01.912Z
last_synced: 2026-08-12T04:44:01.912Z
canonical_url: "https://dirskills.com/skills/changelog"
---

# Changelog

Changelog generates a concise changelog entry after a documentation review passes. Use it to capture approved, user-relevant changes in a stable, easy-to-scan format.

**Install:**

```bash
npx degit https://github.com/devton/agentic-workflow-blueprint/tree/main/workflows/changelog ~/.claude/skills/changelog
```

## README

## agentic-workflows-blueprint.workflow.changelog

### Goal

Generate a concise changelog entry after documentation review is approved.

### Scope

- Applies to: finalized changes with `reviewStatus = PASS`.
- Does not cover: publishing or release automation.

### Triggers

- "Generate changelog entry"
- Final step after `document -> review` chain succeeds

### Inputs

- `reviewStatus`
- `docTarget`
- `changeSummary`
- `changelogTarget` (file path or buffer destination)

### Invariants

- Only run when `reviewStatus = PASS`.
- Keep entries concise, factual, and user-relevant.
- Avoid internal-only noise unless explicitly requested.

### Procedure

1. Confirm review pass status.
2. Extract relevant end-user/maintainer impact from `docTarget` and
   `changeSummary`.
3. Write/update a changelog entry in `changelogTarget`.
4. Keep wording stable and easy to scan.

### Outputs

- One changelog entry ready to be stored/published later.

### Review gate

- [ ] Entry reflects approved documentation.
- [ ] Entry is concise and understandable without source diff.
- [ ] No unsupported claims.

### References

- `../../SKILL.md`
- `../document/SKILL.md`
- `../review/SKILL.md`
- [Interactive HTML View](./README.html)
