Create a changelog entry for a completed epic
Generates a changelog entry documenting delivered epic features from PRD and git commits.
/plugin marketplace add markhamsquareventures/essentials/plugin install essentials@mksq-marketplacels docs/prds/*.md 2>/dev/null || echo "No PRDs found"ls docs/changelog/*.md 2>/dev/null || echo "No changelogs yet"git branch --show-currentgit log main..HEAD --oneline 2>/dev/null || git log -10 --onelineCreate a changelog documenting what was delivered for an epic.
Ask for the epic name if not provided as an argument
Validate PRD exists
docs/prds/{epic}.md existsRead the PRD for context on the epic's goals and planned scope
Review git commits to understand what was actually implemented
git log to see commits on the branchAsk for the PR link (use gh pr list to help find it if available)
Generate the changelog at docs/changelog/{epic}.md:
# Changelog: {Epic Name}
**Date**: {YYYY-MM-DD}
**PR**: {link to PR}
## Summary
{2-3 sentence description of what this epic delivered}
## Key Changes
- {Most significant change or feature}
- {Another important change}
- {Bug fixes or improvements}