/ia-changelog
Create engaging changelogs for recent merges to main branch
$ npx -y skills add iliaal/whetstone --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/ia-changelog
Context preview
What this command does when you run it.
Create engaging changelogs for recent merges to main branch
Command definition
ia-changelog.mdname: ia-changelog
description: Create engaging changelogs for recent merges to main branch
argument-hint: "[optional: daily|weekly, or time period in days]"
disable-model-invocation: true
Role (this command only)
Witty, enthusiastic product marketer creating a fun, engaging changelog for an internal dev team. Summarize the latest merges to main, highlighting new features, bug fixes, and giving credit to contributors.
**Period:** #$ARGUMENTS
Time Period
- If period is `daily` or empty: Look at PRs merged in the last 24 hours
- If period is `weekly`: Look at PRs merged in the last 7 days
- If period is a number: Look at PRs merged in the last N days
- Always specify the time period in the title (e.g., "Daily" vs "Weekly")
- Default: Get the latest changes from the last day from the main branch of the repository
PR Analysis
Use `gh` CLI to fetch merged PRs for the time period. For each PR, extract:
1. Change type from PR labels (feature, bug, chore, etc.) and flag breaking changes 2. What changed -- features, fixes, improvements, and their linked issues 3. Contributors who authored the changes 4. PR numbers and issue references for traceability
Content Priorities
1. Breaking changes (if any) - MUST be at the top 2. User-facing features 3. Critical bug fixes 4. Performance improvements 5. Developer experience improvements 6. Documentation updates
Formatting Guidelines
1. Group by change type (features, fixes, improvements) with consistent emoji per section 2. Lead with the most important changes; keep total under 2000 characters for Discord 3. Credit contributors by name; include PR numbers inline (e.g., "Fixed login bug (#123)") 4. Format code/technical terms in backticks; link related issues where applicable 5. Add a touch of humor or playfulness to make it engaging 6. Use emojis sparingly for visual interest
Deployment Notes
When relevant, include:
- Database migrations required
- Environment variable updates needed
- Manual intervention steps post-deploy
- Dependencies that need updating
Your final output should be formatted as follows:
<change_log>
๐ [Daily/Weekly] Change Log: [Current Date]
๐จ Breaking Changes (if any)
[List any breaking changes that require immediate attention]
๐ New Features
[List new features here with PR numbers]
๐ Bug Fixes
[List bug fixes here with PR numbers]
๐ ๏ธ Other Improvements
[List other significant changes or improvements]
๐ Shoutouts
[Mention contributors and their contributions]
๐ Fun Fact of the Day
[Include a brief, work-related fun fact or joke]
</change_log>
Style Guide Review
Review the changelog using the `ia-writing` skill principles -- cut filler, lead with what users can do, no throat-clearing. Note: emojis are intentional here for Discord readability, overriding the writing skill's anti-emoji guidance for this context.
Output the changelog content directly in conversation. For Discord posting, see below.
Do not include any of your thought process or the original data in the output.
Discord Posting (Optional)
You can post changelogs to Discord by adding your own webhook URL:
# Set your Discord webhook URL
DISCORD_WEBHOOK_URL="https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN"
# Post using curl
curl -H "Content-Type: application/json" \
-d "{\"content\": \"{{CHANGELOG}}\"}" \
$DISCORD_WEBHOOK_URLTo get a webhook URL, go to your Discord server โ Server Settings โ Integrations โ Webhooks โ New Webhook.
Error Handling
- If no changes in the time period, post a "quiet day" message: "๐ค๏ธ Quiet day! No new changes merged."
- If unable to fetch PR details, list the PR numbers for manual review
- Always validate message length before posting to Discord (max 2000 chars)
Read more
name: ia-changelog description: Create engaging changelogs for recent merges to main branch argument-hint: "[optional: daily|weekly, or time period in days]" disable-model-invocation: true
Role (this command only)
Witty, enthusiastic product marketer creating a fun, engaging changelog for an internal dev team. Summarize the latest merges to main, highlighting new features, bug fixes, and giving credit to contributors.
**Period:** #$ARGUMENTS
Time Period
- If period is `daily` or empty: Look at PRs merged in the last 24 hours
- If period is `weekly`: Look at PRs merged in the last 7 days
- If period is a number: Look at PRs merged in the last N days
- Always specify the time period in the title (e.g., "Daily" vs "Weekly")
- Default: Get the latest changes from the last day from the main branch of the repository
PR Analysis
Use `gh` CLI to fetch merged PRs for the time period. For each PR, extract:
1. Change type from PR labels (feature, bug, chore, etc.) and flag breaking changes 2. What changed -- features, fixes, improvements, and their linked issues 3. Contributors who authored the changes 4. PR numbers and issue references for traceability
Content Priorities
1. Breaking changes (if any) - MUST be at the top 2. User-facing features 3. Critical bug fixes 4. Performance improvements 5. Developer experience improvements 6. Documentation updates
Formatting Guidelines
1. Group by change type (features, fixes, improvements) with consistent emoji per section 2. Lead with the most important changes; keep total under 2000 characters for Discord 3. Credit contributors by name; include PR numbers inline (e.g., "Fixed login bug (#123)") 4. Format code/technical terms in backticks; link related issues where applicable 5. Add a touch of humor or playfulness to make it engaging 6. Use emojis sparingly for visual interest
Deployment Notes
When relevant, include:
- Database migrations required
- Environment variable updates needed
- Manual intervention steps post-deploy
- Dependencies that need updating
Your final output should be formatted as follows:
<change_log>
๐ [Daily/Weekly] Change Log: [Current Date]
๐จ Breaking Changes (if any)
[List any breaking changes that require immediate attention]
๐ New Features
[List new features here with PR numbers]
๐ Bug Fixes
[List bug fixes here with PR numbers]
๐ ๏ธ Other Improvements
[List other significant changes or improvements]
๐ Shoutouts
[Mention contributors and their contributions]
๐ Fun Fact of the Day
[Include a brief, work-related fun fact or joke]
</change_log>
Style Guide Review
Review the changelog using the `ia-writing` skill principles -- cut filler, lead with what users can do, no throat-clearing. Note: emojis are intentional here for Discord readability, overriding the writing skill's anti-emoji guidance for this context.
Output the changelog content directly in conversation. For Discord posting, see below.
Do not include any of your thought process or the original data in the output.
Discord Posting (Optional)
You can post changelogs to Discord by adding your own webhook URL:
# Set your Discord webhook URL
DISCORD_WEBHOOK_URL="https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN"
# Post using curl
curl -H "Content-Type: application/json" \
-d "{\"content\": \"{{CHANGELOG}}\"}" \
$DISCORD_WEBHOOK_URLTo get a webhook URL, go to your Discord server โ Server Settings โ Integrations โ Webhooks โ New Webhook.
Error Handling
- If no changes in the time period, post a "quiet day" message: "๐ค๏ธ Quiet day! No new changes merged."
- If unable to fetch PR details, list the PR numbers for manual review
- Always validate message length before posting to Discord (max 2000 chars)
A Claude Code plugin that makes AI coding agents follow engineering discipline. Plan before coding. Verify before claiming done. Find root cause before patching. Review before merge. Skills activate based on file type and task signals, not manual toggling.
Repo: iliaal/whetstone
Other commands on whetstone.
- /analyze-misfires
Identify skills injected where not needed, propose regex and description tightening
Open command - /announce
Draft X/Twitter announcement post (or thread) for the latest plugin release
Open command - /audit-plugin
Deep quality audit of all skills, agents, and commands for inconsistencies, gaps, duplication, and token waste
Open command - /diagnose-negatives
Analyze negative-signal sessions for a skill, identify failure patterns, propose and apply fixes
Open command - /eval-skills
Eval all skills with sufficient data, rank by composite score, identify candidates for optimization
Open command - /evolve-skill
Run the full skill evolution pipeline -- harvest sessions, discover signals, build golden dataset, eval baseline, evolve via DSPy, compare scores
Open command

