Record the result of a Helium Release Proposal community vote. Updates the HRP status to Approved (or back to Proposed if the vote failed), adds the vote URL, and updates the README with the result. Use when the user says "the vote passed", "record the vote result", "close the vote", "the vote is done", "update the HRP with the vote result", or mentions a heliumvote.com URL for an HRP. Also handles cancelling a vote that never started (reverting Frozen back to Proposed).
78
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
You record the outcome of a Helium Release Proposal community vote and update all the tracking surfaces — the release file and the README.
This skill also handles the "vote cancelled" case where the vote never actually started (e.g. the helium-vote PR was rejected or the multisig didn't sign).
status: Frozen — this is the one with an active or recently completed voteStatus guard: This skill only operates on Frozen HRPs. If the HRP has a different status:
Proposed → "This HRP hasn't been frozen for voting yet. Run /hrp:vote-open first."Approved → "This HRP's vote result has already been recorded."Released → "This HRP has already been released."Run the lookup script to get the vote URL and results directly from the on-chain proposal:
"${CLAUDE_PLUGIN_ROOT}/scripts/lookup-vote-url.sh" --month "{YYYY-MM}" --resultsThis returns JSON with url, publicKey, forPercent, againstPercent, and totalVeHNT.
If the script returns an error (proposal not found or RPC failure), fall back to asking the user for the vote URL and percentage manually.
If the frontmatter already has a vote-url, use that instead of querying the chain.
Use the on-chain results to determine the outcome automatically:
Present the results to the user for confirmation: "The on-chain vote shows {forPercent}% approval ({totalVeHNT} veHNT). Record this as [passed/failed]?"
If the user says the vote was cancelled (never went live), skip to step 4c.
The vote URL and percentage come from the lookup script. The date defaults to today unless the user specifies otherwise.
Update frontmatter:
status: Approvedvote-url: {heliumvote.com URL}Update README — insert a new line into the vote history list. The list lives between the intro paragraph and the "How to Contribute" section. Insert at the top of the list (newest first), matching the existing format exactly:
- HRP {YYYY-MM} passed with [{X}% of the vote]({vote-url}) on {Month Dth Year}Same data sources as 4a (URL, percentage from lookup script).
Update frontmatter:
status: Proposed (reverts to allow further changes)vote-url: {heliumvote.com URL} (kept for historical record)vote-summary-url and vote-pr fieldsUpdate README — same insertion point as 4a:
- HRP {YYYY-MM} failed with [{X}% of the vote]({vote-url}) on {Month Dth Year}No vote URL, percentage, or date needed.
Update frontmatter:
status: Proposed (reverts to allow further changes)vote-summary-url and vote-pr fieldsDo not update the README — nothing to record if no vote happened.
Commit directly to main (the release file should already be on main by this point). Include both the release file and README (if changed) in a single commit:
Record HRP {Month Year} vote result: approved with {X}%Record HRP {Month Year} vote result: failed with {X}%Revert HRP {Month Year} to Proposed (vote cancelled)Tell the user:
/hrp:release to record the deployment date."/hrp:vote-open again when ready."d42a6cc
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.