chore(skills): add release-core skill#7381
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces a new skill called Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
There was a problem hiding this comment.
Pull request overview
Adds a new agent skill (release-core) to standardize the release PR workflow for @rsbuild/core and create-rsbuild.
Changes:
- Introduces
.agents/skills/release-core/SKILL.mddocumenting a step-by-step release procedure. - Standardizes branch naming, commit message, and PR title/body guidance for core releases.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Code Review
This pull request introduces a new release-core skill to standardize the release process for @rsbuild/core and create-rsbuild. The implementation is well-structured and clear. I have one suggestion to improve the clarity of the generated pull request description by adding a note to a link that will be temporarily broken.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,33 @@ | |||
| --- | |||
| name: release-core | |||
| description: Use when asked to release `@rsbuild/core` for a specific version. | |||
There was a problem hiding this comment.
The frontmatter description says this skill is for releasing @rsbuild/core, but the steps also bump create-rsbuild and the PR summary text mentions both. Update the description to reflect both packages so callers pick the right skill and expectations match the procedure.
| description: Use when asked to release `@rsbuild/core` for a specific version. | |
| description: Use when asked to release `@rsbuild/core` and `create-rsbuild` for a specific version. |
Summary
This PR adds a dedicated
release-coreskill so the release flow for@rsbuild/coreandcreate-rsbuildfollows a consistent, reusable procedure.Related Links
None