Commit Release Notes

SkillDocs & knowledge

Summarizes recent git commits into plain-language release notes for non-technical readers. Use when the user asks what changed, wants a summary of commits, release notes, a plain-English changelog, or an easy-to-read bullet list of recent work at a specific reading level (default 8th grade).

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Commit Release Notes skill

What this skill tells your AI

The instructions your AI receives, as published by jcottam/agent-resources in skills/productivity/commit-release-notes/SKILL.md and read by ahel’s review.

Turn git history into clear summaries for teammates, stakeholders, or changelogs — not developer jargon.

Workflow

1. Gather commits

Run read-only git commands. Do not commit, push, or edit files unless the user explicitly asks.

User intentCommand
Recent work (default)git log --oneline -10
By authorgit log --author=<name> --oneline -15
Since a tag or commitgit log <ref>..HEAD --oneline
Detail per commitgit log --stat --format='%h %s%n%b' <range>

Defaults when unspecified:

  • Branch: current branch
  • Count: 5–15 commits, enough to cover the work without noise
  • Skip empty merge commits unless they carry meaningful context

2. Understand the changes

  • Read commit messages and file stats (--stat) to learn what actually changed.
  • Group related commits into one user-facing idea (e.g. three truncation commits → "prompts load without flicker").
  • Focus on user-visible behavior: what someone using the app will see or feel.
  • Deprioritize internal-only work (refactors, lockfile-only bumps) unless it is the whole story or the user asked for technical detail.

3. Deliver outputs (in order)

Produce only what the user asked for. When they want the full treatment, use this order:

  1. Technical digest (optional) — one short paragraph for engineers; file names and mechanisms OK here.
  2. Plain paragraph — 3–5 sentences at the requested reading level (default: 8th grade).
  3. Bulleted list — same content as the paragraph, one idea per line.

If the user liked the paragraph and asks for bullets next, convert without re-explaining from scratch.

Plain-language writing rules

  • Short sentences. Common words. Active voice.
  • Describe what changed for the user, not which files moved.
  • Prefer: "the page loads smoother", "videos show first", "a duplicate button was removed".
  • Avoid unless requested: refactor, dependency bump, ResizeObserver, hook names, component paths.
  • No hype ("exciting", "powerful", "game-changing"). State facts.
  • Dependency updates: one line like "software packages were updated" unless versions matter to the audience.

Reading levels

LevelGuidance
8th grade (default)Everyday words; no acronyms without explanation; one idea per sentence
ExecutiveOutcomes and impact; even shorter; skip implementation
TechnicalCommit themes, areas touched, breaking changes; jargon OK

Output template

Use these headings unless the user specifies another format.

### What changed
[One short paragraph — plain language]

### At a glance
- [Bullet 1]
- [Bullet 2]
- ...

For a technical-only request, omit the template and write a concise engineer-facing summary.

Categorization hints

When grouping commits, map themes to plain labels:

Commit themePlain-language angle
UI layout / typographyEasier to read; cleaner layout
Performance / flickerLoads smoother; less jumping on screen
Sort / orderingImportant items show up first
Nav / headerMenu or navigation simplified
Auth / permissionsWho can do what changed
DependenciesBehind-the-scenes updates (brief)
Tests onlyUsually omit unless user cares

Examples

User: "Summarize jcottam's last 5 commits for the team"

  1. Run git log --author=jcottam --oneline -5 and git log --author=jcottam --stat -5.
  2. Group: prompt truncation work, browse width, model sort, nav cleanup, deps.
  3. Output paragraph + bullets at 8th-grade level.

User: "What did we ship since v1.2.0? Keep it short."

  1. Run git log v1.2.0..HEAD --oneline.
  2. Output plain paragraph only; skip technical digest unless asked.

User: "Bullet list only, executive level"

  1. Gather commits as above.
  2. Output ### At a glance bullets only; no paragraph; outcome-focused.

Boundaries

  • Do: summarize, rephrase, group, adjust reading level.
  • Do not: invent features not supported by the commits.
  • Do not: run destructive git commands or modify the repo as part of this skill.
  • If the range is ambiguous (author? date? tag?), ask once, then proceed with a reasonable default and state it.

Signals

GitHub stars
30
Forks
1
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
commit-release-notes
Source
github.com/jcottam/agent-resources