Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Generate or update the CHANGELOG.md Unreleased section from commits since the latest release tag.
Generate or update the CHANGELOG.md Unreleased section from commits since the latest release tag.
Check if a .jj directory exists at the repository root.
.jj exists — use jj commandsgit commandsFind the latest release tag:
git tag --sort=-creatordate | head -1
Get all commits between the latest release tag and HEAD:
jj:
jj log -r 'tags()..@' --no-graph -T 'description ++ "\n"'
git:
git log <latest-tag>..HEAD --format="%H %s" --reverse
Ignore commits with type docs, chore, style, ci, build, or revert — these are housekeeping
and should not appear in user-facing changelogs. Also ignore merge commits.
For each commit that references an issue (e.g. Closes #42 in footer, or issue number in the branch),
look up the issue title to write a user-friendly description.
For commits tied to a GitHub Issue, append the issue as a parenthetical at the end of the entry
npx skills add aaronmallen/doing --skill changelogHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.