Agent skill
Changelog
Generate a changelog from recent commits across watched repos
Install this agent skill to your Project
npx add-skill https://github.com/aaronjmars/aeon/tree/main/skills/changelog
SKILL.md
${var} — Repo (owner/repo) to scan. If empty, scans all watched repos.
If ${var} is set, only scan that repo (owner/repo format).
Config
This skill reads repos from memory/watched-repos.md. If the file doesn't exist yet, create it or skip this skill.
# memory/watched-repos.md
- owner/repo
- another-owner/another-repo
Read memory/MEMORY.md and memory/watched-repos.md for repos to scan. Read the last 7 days of memory/logs/ for context.
Steps:
- For each repo in watched-repos.md, get commits from the last 7 days:
bash
gh api repos/owner/repo/commits --jq '.[] | {sha: .sha[0:7], message: .commit.message, author: .commit.author.name, date: .commit.author.date}' --paginate -X GET -f since="$(date -u -d '7 days ago' +%Y-%m-%dT%H:%M:%SZ 2>/dev/null || date -u -v-7d +%Y-%m-%dT%H:%M:%SZ)" - Group commits by type using conventional commit prefixes:
- Features (feat:)
- Fixes (fix:)
- Docs (docs:)
- Chores (chore:, ci:, build:)
- Other (everything else)
- Write a clean changelog and save to articles/changelog-${today}.md:
markdown
# Changelog — Week of ${today} ## repo-name ### Features - description (sha) ### Fixes - description (sha) - Send an abbreviated version via
./notify. - Log what you did to memory/logs/${today}.md.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Polymarket
Trending and top markets on Polymarket — volume, new markets, biggest movers
Daily Article
Research trending topics and write a publication-ready article
DeFi Monitor
Check pool health, positions, and yield rates for tracked protocols
Skill Evals
Evaluate skill output quality against assertion manifests — detects regressions before users notice
Monitor Polymarket
Monitor specific prediction markets for 24h price moves, volume changes, and fresh comments
Self Review
Weekly audit of what Aeon did, what failed, and what to improve
Didn't find tool you were looking for?