Support for both regular and beta releases.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionbump-releaseExecute the skills CLI command in your project's root directory to begin installation:
Fetches bump-release from paulrberg/agent-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate bump-release. Access via /bump-release in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
42
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
42
stars
Support for both regular and beta releases.
version: Optional explicit version to use (e.g., 2.0.0). When provided, skips automatic version inference--beta: Create a beta release with -beta.X suffix--dry-run: Preview the release without making any changes (no file modifications, commits, or tags)package.json in the current working directory first; if not found, ask which package to release. All file paths (CHANGELOG.md, package.json, justfile) are relative to the package directory.CHANGELOG.md file with all changes since the last version release (skip this step for beta releases).package.json:
-beta.X suffix (e.g., 1.2.3-beta.1)justfile exists in the repository, run just full-write to ensure CHANGELOG.md and package.json are properly formattedgit tag -a v<version> -m "<version>"Note: When --dry-run flag is provided, display what would be done without making any actual changes to files, creating commits, or tags.
Check for arguments - Determine if version was provided, if this is a beta release (--beta), and/or dry-run (--dry-run)
Check for clean working tree - Run git status --porcelain to verify there are no uncommitted changes unrelated to this release. If there are, run the commit skill to commit them before proceeding
Write Changelog - Examine diffs between the current branch and the previous tag to write Changelog. Then find
relevant PRs by looking at the commit history and add them to each changelog (when available). If package.json contains
a files field, only include changes within those specified files/directories. If no files field exists, include all
changes except test changes, CI/CD workflows, and development tooling
Follow format - Consult references/common-changelog.md for the Common Changelog specification
Check version - Get current version from package.json
Bump version - If version argument provided, use it directly. Otherwise, if unchanged since last release, increment per Semantic Versioning rules:
--beta flag):
-beta.1 to the version-beta.1 → -beta.2)Confirm version - When the version was inferred (no explicit version argument), use AskUserQuestion to confirm before proceeding:
<current> → <inferred>?"If the user picks an alternative, use that version for the remaining steps. Skip this step when --dry-run is active (show the inferred version in the preview instead)
When --beta flag is provided in the $ARGUMENTS
version provided:
-beta.1package.json and determine beta version:
1.2.3: Create 1.2.4-beta.1 (increment patch + beta.1)1.2.3-beta.1: Create 1.2.3-beta.2 (increment beta number)1.2.3-beta.5: Create 1.2.3-beta.6 (increment beta number)v1.2.4-beta.1)For regular releases only, generate changelog entries in CHANGELOG.md following the format and writing guidelines in references/common-changelog.md. Use the Changed, Added, Removed, Fixed categories (in that order). Every entry must begin with a present-tense verb in imperative mood.
For regular releases only (changelog generation is skipped for beta releases):
package.json contains a files field, only include changes to files/directories specified in that array. All other codebase changes should be excluded from the CHANGELOGfiles field exists, exclude test changes, CI/CD workflows, and development tooling# Create a regular patch/minor/major release
/bump-release
# Preview what a regular release would do
/bump-release --dry-run
# Create a beta release with -beta.X suffix
/bump-release --beta
# Preview what a beta release would do
/bump-release --beta --dry-run
# Specify exact version
/bump-release 2.0.0
# Specify exact beta version
/bump-release 2.0.0-beta.1
# Combine with flags
/bump-release 2.0.0 --dry-run
| Current Version | Release Type | New Version |
|---|---|---|
1.2.3 |
Regular | 1.2.4 (patch) |
1.2.3 |
Beta | 1.2.4-beta.1 |
1.2.3-beta.1 |
Beta | 1.2.3-beta.2 |
1.2.3-beta.5 |
Regular | 1.2.3 |
1.2.3 |
2.0.0 |
2.0.0 |
1.2.3 |
2.0.0 + Beta |
2.0.0-beta.1 |
references/common-changelog.md — Common Changelog format and writing guidelinesMake data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
Keeps context tight: bump-release is the kind of skill you can hand to a new teammate without a long onboarding doc.
I recommend bump-release for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in bump-release — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
bump-release has been reliable in day-to-day use. Documentation quality is above average for community skills.
I recommend bump-release for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: bump-release is the kind of skill you can hand to a new teammate without a long onboarding doc.
bump-release is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
bump-release is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: bump-release is the kind of skill you can hand to a new teammate without a long onboarding doc.
Useful defaults in bump-release — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 53