Home / stbenjam / skillsaw · tests/fixtures/config/default-exclude-templates/changelog-writer/SKILL.md · GitHub
changelog-writer skillA
changelog-writer is agent-read markdown (skill) from stbenjam/skillsaw: Draft changelog entries from merged pull requests since the last release tag.
Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.
What the file says
# Changelog Writer
Draft changelog entries by summarizing merged pull requests since the
last release tag.
## When to Use This Skill
Use when the user asks to prepare release notes, update CHANGELOG.md,
or summarize what shipped since the last release.
## Implementation Steps
### Step 1: Find the Last Release Tag
```bash
git describe --tags --abbrev=0
```
### Step 2: List Merged PRs Since the Tag
```bash
gh pr list --state merged --search "merged:>$(git log -1 --format=%cI $(git describe --tags --abbrev=0))"
```
### Step 3: Draft Entries
Group PRs into sections:
- **Added** — new features and rules
- **Fixed** — bug fixes
- **Changed** — behavior changes and deprecations
Write one line per PR: a user-facing summary followed by the PR number
in parentheses. Skip PRs labeled `internal` or `ci`.
Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.
GET https://markdownregistry.com/api/v1/artifacts/art_m2zrxeqtmr2ygewa
GET https://markdownregistry.com/api/v1/resolve?ref=stbenjam/skillsaw/changelog-writer
GET https://markdownregistry.com/api/v1/blob/fae7d749ff9b0f99091318ee7f0b5b8d82f1a0c5aa778786fbda14975b94f1c6
Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.
stbenjam/skillsaw · .agents/skills/skillsaw-issue-solver/SKILL.md · Pick up open GitHub issues from collaborators and create PRs to solve them. Use when triaging and resolving reported…
stbenjam/skillsaw · .agents/skills/skillsaw-issue/SKILL.md · Use when skillsaw reports a likely false positive, misses an edge case, behaves incorrectly, or needs an RFE. Gather a…
stbenjam/skillsaw · .agents/skills/skillsaw-lint/SKILL.md · Use when modifying agentic contextual building blocks like skills (SKILL.md), slash commands, agents, hooks, plugins…
stbenjam/skillsaw · .agents/skills/skillsaw-onboard/SKILL.md · Onboard a repository to skillsaw — run the linter, triage the findings by rule, apply autofixes, manually fix what…
stbenjam/skillsaw · .agents/skills/skillsaw-pr-followup/SKILL.md · Follow up on open PRs in skillsaw — fix failing CI, address reviewer feedback, push updates, and validate backward…
stbenjam/skillsaw · .agents/skills/skillsaw-release-ready/SKILL.md · Audit skillsaw for release readiness — test new rules against real repositories, audit core architectural dimensions…
stbenjam/skillsaw · .agents/skills/skillsaw-release/SKILL.md · Bump the version, generate release notes, and publish a new skillsaw release to PyPI. Use when cutting a new release.
mohitagw15856/pm-claude-skills · exports/openclaw/changelog-writer/SKILL.md · Turn a list of changes, commits, or PRs into clean release notes / a changelog entry. Use when asked to write release…