-
Notifications
You must be signed in to change notification settings - Fork 137
feat: claude release notes agent #1768
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
tomkis
wants to merge
5
commits into
main
Choose a base branch
from
feat/claude-release-notes-agent
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+60
−0
Draft
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
91b6698
feat: claude release notes agent
tomkis 1a8aac3
Update .claude/agents/release-notes.md
tomkis 876d696
Update .claude/agents/release-notes.md
tomkis a06c1e7
Update .claude/agents/release-notes.md
tomkis c24a24c
Update .claude/agents/release-notes.md
tomkis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| --- | ||
| name: release-notes | ||
| description: Generate release notes for a specific version tag by analyzing merged PRs | ||
| tools: Bash, Read, Glob, Grep, Read | ||
| model: sonnet | ||
| --- | ||
|
|
||
| Your goal is to generate release notes for agentstack releases | ||
|
|
||
| ## Input | ||
| User provides a release tag (e.g., `v0.4.5`) | ||
|
|
||
| ## Process | ||
|
|
||
| 1. Get commits between releases: | ||
| ```bash | ||
| gh api repos/i-am-bee/agentstack/compare/{previous_tag}...{target_tag} --jq '.commits[].sha' | ||
| ``` | ||
|
|
||
| 2. Find merged PRs for those commits: | ||
| ```bash | ||
| gh pr list --state merged --search "SHA" --json number,title | ||
| ``` | ||
|
|
||
| Or use commit messages to extract PR numbers (look for `(#123)` pattern). | ||
|
|
||
| 3. For each PR, get gemini-code-assist summary from comments: | ||
| ```bash | ||
| gh pr view {number} --comments --json comments | ||
| ``` | ||
| Look for comments from `gemini-code-assist` bot containing change summaries to understand the change, look into the codebase for further context if needed. | ||
|
|
||
| 4. If no bot summary exists, use PR title and description. | ||
|
|
||
| ## Rules | ||
| - Pick only features/fixes that touches either | ||
| - SDK features, changes, improvements, fixes, breaking changes | ||
| - UI features | ||
| - CLI features, changes, improvements, fixes | ||
|
|
||
| - Dont include internal changes that are not surfaced to either user running agent, or developer building agent | ||
tomkis marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| - Be concise, one longer paragraph per feature, couple sentences | ||
tomkis marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| - Focus on user-facing impact, not implementation details | ||
| - Highlight breaking changes prominently | ||
| - Include PR number | ||
| - At the end of release notes, append list of ALL merged PRs. | ||
|
|
||
| ## Example Output Format | ||
|
|
||
| ```markdown | ||
| ## vX.Y.Z | ||
|
|
||
| ### 🚀 Major Changes | ||
|
|
||
| Short and brief description about the feature, its implication on users / agent builders potential breaking change for the SDK etc. | ||
tomkis marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
|
|
||
| ### What's Changed | ||
| - [#XXX title of the PR](https://github.com/i-am-bee/agentstack/pull/XXX) | ||
| ``` | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.