# Release Notes

> Generate changelog from conventional commits since last git tag, grouped by type (feat/fix/refactor/etc). Invoke with /release-notes.

- **Type:** Skill
- **Install:** `agentstack add skill-fedosov-agent-sync-release-notes`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [fedosov](https://agentstack.voostack.com/s/fedosov)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [fedosov](https://github.com/fedosov)
- **Source:** https://github.com/fedosov/agent-sync/tree/main/.claude/skills/release-notes

## Install

```sh
agentstack add skill-fedosov-agent-sync-release-notes
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# /release-notes — Changelog Generator

Generate a formatted changelog from conventional commits since the last release tag.

## When to Use

- Before cutting a new release
- "What changed since the last release?"
- "Generate release notes"

## Workflow

1. **Find the latest tag:**
   ```bash
   git tag --sort=-v:refname | head -1
   ```

2. **Collect commits since that tag:**
   ```bash
   git log ..HEAD --oneline --no-merges
   ```

3. **Parse and group** by Conventional Commits prefix:
   - **Features** (`feat`): new functionality
   - **Fixes** (`fix`): bug fixes
   - **Refactoring** (`refactor`): code restructuring
   - **Docs** (`docs`): documentation changes
   - **Chores** (`chore`): maintenance, deps, tooling
   - **Other**: anything that doesn't match a prefix

4. **Format** as markdown changelog:

```markdown
## What's Changed since 

### Features
- :  ()

### Fixes
- :  ()

### Refactoring
-  ()

...
```

5. **Include stats**: total commit count, contributor list (from `git shortlog`).

## Constraints

- **ONLY** include commits between the latest tag and HEAD
- **SKIP** merge commits (`--no-merges`)
- **PRESERVE** scope from commit messages (e.g., `fix(ui):` → listed under Fixes with `ui` scope)
- **DO NOT** fabricate or embellish commit descriptions — use the actual message
- If there are zero commits since the last tag, report that explicitly

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [fedosov](https://github.com/fedosov)
- **Source:** [fedosov/agent-sync](https://github.com/fedosov/agent-sync)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-fedosov-agent-sync-release-notes
- Seller: https://agentstack.voostack.com/s/fedosov
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
