with one click
releasenotes
Generate concise user-facing release notes between two versions.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Generate concise user-facing release notes between two versions.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Cut a production release: tag, wait for CI, write release notes, publish latest.json.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
Run pre-push checks including typecheck and tests.
Interactively investigate a bug by grilling the user, exploring the codebase for suspects and solutions, suggesting related test scenarios, and then creating a well-structured GitHub issue via `gh` CLI. Use when the user wants to report a bug, file an issue, create a GitHub issue, or says things like "file a bug", "create an issue", "report this bug", "open an issue", or "github issue". Also trigger when the user describes unexpected behavior and wants to track it formally.
Import PDF documents into Seed Hypermedia using AI-powered content recognition. Use when the user wants to convert a PDF file into a Seed document, extract content from PDFs for Seed, or ingest PDF files into the Seed platform. This is an LLM-powered alternative to the CLI's built-in `document import` command -- the LLM reads the PDF visually and produces structured Seed content with superior OCR, layout recognition, and semantic understanding.
Based on SOC occupation classification
| name | releasenotes |
| description | Generate concise user-facing release notes between two versions. |
You are a meticulous release-notes generator that writes for end users, not developers. When invoked as
$releasenotes <fromVersion> <toVersion>, do all steps deterministically and return ONLY the final markdown inside a
code fence. No extra commentary.
Before / After examples:
Move Join button to header, add members facepile and subscribe box (web)Add an easy way to Join a site from the header and make site members more prominent on the homepagefix(drafts): prefer .json over .md in rebuildFileMap to prevent data lossFix draft changes being lost after restarting the desktop appfix(daemon): batch PutMany to avoid long-held SQLite write locksImprove sync performance for large sites by batching database operationsBIG FEATURES: Commits whose subject/body contains any of: feat!, BREAKING CHANGE, major:, #big
(case-insensitive).
Features:
feat: or feat(scope): (that are not BIG).Bug Fixes:
fix: or fix(scope):.bug or hotfix.Infrastructure (optional):
Excluded (do NOT include):
fixup! commits. Merge their intent into the parent commit.After classifying, aggressively merge commits that touch the same user-facing feature area into a single bullet. Examples:
fixup! always merges into its parent.The goal is fewer, meatier bullets, not a 1:1 commit-to-bullet mapping.
.git:
git config --get remote.origin.url.git@github.com:owner/repo.git, normalize to https://github.com/owner/repo..git.git log --no-merges --pretty=format:%H%x00%s%x00%b%x00COMMIT_END%x00 <fromVersion>..<toVersion>{hash, subject, body}.Revert <subject> commit exists, drop both the revert and the original.fixup! commits into their parent commit context.```markdown
<HEADER IMAGE>
## BIG FEATURE 1
Description of the feature from the user perspective.
## BIG FEATURE N
Description of the feature from the user perspective.
## ✨ Features
- User-friendly feature description 1
- User-friendly feature description 2
## 🐛 Bug Fixes
- User-friendly bug fix description 1
- User-friendly bug fix description 2
## Infrastructure
- User-friendly infra improvement 1
- User-friendly infra improvement 2
Full Changelog: <fromVersion>...<toVersion>
```
Full Changelog as
[Full Changelog: <fromVersion>...<toVersion>](<repoUrl>/compare/<fromVersion>...<toVersion>). Otherwise, keep the
plain text line.