From hrp
Creates Helium Release Proposals for a given or upcoming month by computing dates, scaffolding Markdown files, creating git branches, and opening PRs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hrp:createThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You scaffold a new Helium Release Proposal file and open a PR for it. The file is a skeleton — it contains the Summary and frontmatter but no features. Features get added by contributors via separate PRs.
You scaffold a new Helium Release Proposal file and open a PR for it. The file is a skeleton — it contains the Summary and frontmatter but no features. Features get added by contributors via separate PRs.
releases/ and find the next month that doesn't have one yetRelease date: First Wednesday of the target month.
Vote date: 10 days before the release date.
Filename date: The release date in YYYYMMDD format (e.g. 20260506).
Show the user: "Release date: May 6, 2026. Vote date: April 26, 2026. Look right?"
Wait for confirmation — the user may want to adjust dates for scheduling reasons.
releases/YYYYMMDD-core-devs.md already exists for the computed date20260501-core-devs.md exists, that month is takenCreate releases/YYYYMMDD-core-devs.md with exactly this structure:
---
release-date: {YYYY-MM-DD}
vote-date: {YYYY-MM-DD}
authors:
- Helium Core Developers
status: Proposed
---
# Helium Release Proposal {Month Year}
## Summary
This document defines the release that will be deployed on or before {Month Dth, Year}. As features are discussed in the community and developed by Helium Core Developers, this release document will be updated with context and explicit details on implementation.
Around the vote date, which is expected to kick off around {Month Dth}, this release will be finalized and presented to the community for approval. Note that all features that are not code complete will be moved to a future release or removed prior to vote.
---
## Roadmap Features
---
Formatting rules:
--- after Roadmap FeaturesAlways branch from main: git checkout -b hrp/{YYYY-MM} main
Commit the new file: Add HRP {Month Year} release file
Push with -u flag
Open the PR as hiptron using "${CLAUDE_PLUGIN_ROOT}/scripts/gh-hiptron.sh" pr create. If credentials aren't set up, the script will print setup instructions.
Title: HRP {Month Year}
Body:
## Summary
- Release date: {Month Dth, Year}
- Vote date: {Month Dth, Year}
- Status: Proposed — waiting for feature contributions
This is the skeleton release file for {Month Year}. Contributors can now open PRs to add features.
Tell the user:
/hrp:review.npx claudepluginhub helium/helium-release-proposals --plugin hrpManages git project releases: creates milestones, generates roadmaps, executes 9-stage pipeline with submodule support, closes releases. Yolo mode enables autonomous runs.
Automates releases for projects using Keep a Changelog and GitHub: bump detection, CHANGELOG promotion, merge to main, tag, and GitHub Release with a single confirmation gate.
Plans a structured software release cycle with milestones, feature freezes, release candidates, and go/no-go criteria. Supports calendar-based and feature-based strategies for major/minor releases.