Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a new Claude skill (smp-generate-changelog) and a corresponding standalone Bash script to generate CHANGELOG.md content from GitHub releases, along with documentation and plugin metadata updates.
Changes:
- Introduces
smp-generate-changelogskill documentation and workflow. - Adds
scripts/generate-changelog.shand an initialCHANGELOG.md. - Updates README and plugin/marketplace metadata (version + description).
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| skills/smp-generate-changelog/SKILL.md | Defines the new skill and embeds the script to be generated. |
| scripts/generate-changelog.sh | Standalone generator that pulls release data via gh and writes a Markdown changelog. |
| README.md | Documents how to use the new skill and the generated script. |
| CHANGELOG.md | Initial changelog content generated from existing GitHub releases. |
| .claude-plugin/plugin.json | Bumps plugin version and updates plugin description. |
| .claude-plugin/marketplace.json | Updates marketplace description text. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…umentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 7 out of 7 changed files in this pull request and generated 17 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Refactor to use `gh --jq` for all JSON parsing instead of piping to external `jq`. Addresses PR #5 review feedback.
Wrap gh repo view in an if block so the custom error message is reached when the command fails under set -e. Fixes review feedback on PR #5.
Fix review feedback on PR #5 — create the parent directory for the output file path if it doesn't already exist, preventing failures when a subdirectory path like docs/CHANGES.md is specified.
Fix review feedback on PR #5 - echo can misinterpret release body content starting with option-like strings (e.g., -n, -e). printf is safe for arbitrary text.
Update link from claude-skills to claude-plugins to match the actual repository name. Addresses review feedback on PR #5.
Use four-backtick outer fence so the inner ```bash block renders correctly. Addresses review feedback on PR #5.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Introduce a new skill to generate a changelog from GitHub releases using a standalone script.