Install
$ agentstack add skill-imtiazrayhan-agentscamp-library-changelog-from-prs ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Turn a range of merged pull requests into a clean, human-readable changelog. This skill collects the PRs merged since the previous release tag, groups them by change type (features, fixes, breaking changes, and more), and drafts release notes that are accurate, scannable, and ready to paste into a GitHub release or CHANGELOG.md.
When to use this skill
- You are cutting a new release and need release notes that reflect what actually shipped.
- You want a first draft of a
CHANGELOG.mdentry that follows Keep a Changelog conventions. - You need to summarize a noisy list of merge commits into something a human reader can understand.
- You are reviewing what changed between two tags before deciding on a version bump.
> [!NOTE] > This skill drafts notes from real PR data. It does not push tags or publish releases. Always review the draft before publishing.
Instructions
- Find the last release tag. Use the most recent semantic-version tag as the lower bound. If no tag exists, fall back to the first commit.
``bash git describe --tags --abbrev=0 ``
- Collect merged PRs in the range. Prefer the GitHub CLI so you get titles, numbers, authors, and labels. Use the merge date of the last tag as the cutoff.
``bash LAST_TAG=$(git describe --tags --abbrev=0) SINCE=$(git log -1 --format=%cI "$LAST_TAG") gh pr list --state merged --base main --limit 200 \ --search "merged:>$SINCE" \ --json number,title,author,labels,mergedAt ``
- Classify each PR. Map it to a changelog section using labels first, then the title prefix (Conventional Commits style), then a judgment call:
feat/enhancement-> Added or Changedfix/bug-> Fixedbreaking/!in the title -> Breaking Changes (call these out at the top)deprecate-> Deprecatedsecurity-> Securitydocs,chore,ci,test, dependency bumps -> omit unless user-facing.
- Rewrite titles into reader-facing notes. Drop the type prefix, use the imperative-to-past or noun phrasing the section expects, and explain the user impact rather than the implementation. Keep the PR number for traceability.
- Order and group. Lead with breaking changes, then Added, Changed, Deprecated, Removed, Fixed, Security. Within a section, order by importance, not PR number.
- Suggest the version bump. Breaking changes -> major; new features -> minor; fixes only -> patch. State the recommendation but let the user confirm.
- Emit the draft. Output Markdown ready to paste, with a version header and date. Note any PRs you could not confidently classify so the user can review them.
> [!WARNING] > Do not invent changes. If a PR title is ambiguous, list it under an "Uncategorized — needs review" heading instead of guessing its impact.
Examples
Input — three merged PRs since v1.3.0:
#142 feat: add --json output flag to export command (label: enhancement)
#147 fix: prevent crash when config file is empty (label: bug)
#151 feat!: rename `--token` to `--api-key` (label: breaking)
Output — drafted changelog entry:
## v1.4.0 — 2026-06-02
### Breaking Changes
- Renamed the `--token` flag to `--api-key` for clarity. Update scripts that pass `--token`. (#151)
### Added
- `export` now supports a `--json` flag for machine-readable output. (#142)
### Fixed
- Fixed a crash that occurred when the config file was empty. (#147)
> Recommended bump: minor → major (contains a breaking change). Suggested version: v2.0.0.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: imtiazrayhan
- Source: imtiazrayhan/agentscamp-library
- License: MIT
- Homepage: https://agentscamp.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.