
Changeset
- 1 installs
- 88 repo stars
- Updated June 29, 2026
- alchemyplatform/alchemy-mcp-server
changeset (alchemy-mcp-server) is a skill that creates a changeset entry documenting a version bump and changelog line for the current branch.
About
This skill creates a changeset entry documenting a version bump and changelog line for the current branch of the @alchemy/mcp-server package. It reads the git diff and git log to determine the bump type and summary, or parses a provided argument like 'minor Add feature'. It then writes a kebab-case markdown file under .changeset in the required format and shows it for review. It is functionally the changesets workflow scoped to the MCP server package.
- Creates a changeset entry documenting a version bump and changelog for the current changes
- Analyzes git diff and git log to infer bump type and summary when no argument is given
- Writes a .changeset markdown file for the @alchemy/mcp-server package in the exact format
Changeset by the numbers
- 1 all-time installs (skills.sh)
- Ranked #210 of 248 Release Management skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
changeset capabilities & compatibility
- Capabilities
- changeset create · changelog entry
- Works with
- github
- Use cases
- ci cd · documentation
- Pricing
- Free
What changeset says it does
Create a changeset entry to document a version bump and changelog for the current changes
Run `git diff main...HEAD --stat` and `git log main..HEAD --oneline` to understand what changed on this branch.
npx skills add https://github.com/alchemyplatform/alchemy-mcp-server --skill changesetAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 88 |
| Last updated | June 29, 2026 |
| Repository | alchemyplatform/alchemy-mcp-server ↗ |
What it does
Create a changeset entry recording a version bump and changelog line for the @alchemy/mcp-server branch.
Who is it for?
Generating a formatted changeset entry for the @alchemy/mcp-server package before a release.
Skip if: Guessing a bump type without inspecting the diff, or replacing a full release process.
When should I use this skill?
When you need to document a version bump and changelog for pending @alchemy/mcp-server changes.
What you get
Writes a .changeset markdown file with the bump type and changelog description.
- .changeset/<kebab-case-name>.md file
By the numbers
- 5-step workflow
- 3 bump types (patch/minor/major)
Files
Create a changeset entry for the current branch's changes.
Instructions
1. Run git diff main...HEAD --stat and git log main..HEAD --oneline to understand what changed on this branch. 2. If no argument was provided, analyze the changes to determine:
- Bump type:
patchfor fixes,minorfor new features,majorfor breaking changes - Summary: A concise description of the change for the changelog
3. If $ARGUMENTS was provided, parse it as [bump] [description] (e.g., minor Add changeset-based release workflow). 4. Create a new markdown file in .changeset/ with a random lowercase-kebab-case name (e.g., .changeset/cool-birds-fly.md) using this exact format:
---
"@alchemy/mcp-server": <bump>
---
<description>Where <bump> is patch, minor, or major and <description> is the changelog entry.
5. Show the user the created changeset file and ask if they'd like to adjust anything.
Related skills
FAQ
What does this changeset skill do?
It analyzes the branch git diff and log, determines the semver bump, and writes a .changeset markdown file with a changelog entry for @alchemy/mcp-server.
Can I pass the bump type directly?
Yes. The docs accept an argument like 'minor Add changeset-based release workflow' parsed as [bump] [description].