helix.mcp: Skill for Claude Code

.squad/skills/release-cut/SKILL.md

release-cut is a skill for Claude Code, Codex from lewing/helix.mcp. It costs 0 tokens per session (1,466 once invoked), scanned A, original, MIT.

A release procedure for the HelixTool project, including checks, a release branch, version updates, and verification. A release is a prepared version of software intended to be published.

In plain words
What is it for?
Use it when preparing a versioned release such as v0.8.0, especially when the project must be built from the latest origin/main branch and three version entries must match.
Why use it?
It reduces mistakes such as branching from outdated code or leaving version values inconsistent across project files.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is lewing/helix.mcp's own configuration. It tells Claude Code and Codex how to work on helix.mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything helix.mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to lewing/helix.mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/lewing/helix.mcp/main/.squad/skills/release-cut/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/lewing/helix.mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for release-cut

README.md
[![agentmods](https://agentmods.dev/badge/skills/lewing/helix.mcp/release-cut.svg)](https://agentmods.dev/skills/lewing/helix.mcp/release-cut)
Your own site
<a href="https://agentmods.dev/skills/lewing/helix.mcp/release-cut"><img src="https://agentmods.dev/badge/skills/lewing/helix.mcp/release-cut.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,466 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01466
Opus 5 $0.00000 $0.00733
Sonnet 5 $0.00000 $0.00293
Haiku 4.5 $0.00000 $0.00147

Measured 7d ago against content hash 84637588ed37, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

release-cut scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.squad/skills/release-cut/SKILL.md · 161 lines

How it starts

The opening of the file, as written. The whole thing — 161 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SKILL: Cutting a Release for helix.mcp

When to use

Use this skill whenever Larry asks to cut a release (e.g., "prep vX.Y.Z release").


Pre-flight checks

  1. Confirm the target version (vMAJOR.MINOR.PATCH).
  2. Identify the current origin/main tip SHA — the branch must be cut from there.
  3. Read .squad/agents/ripley/history.md for any notes on the previous release process.

Step 1 — Branch

git fetch origin
git checkout -b release/vX.Y.Z origin/main

Never branch from a local main that may have diverged.


Step 2 — Version bump (exactly 3 occurrences)

The publish.yml workflow validates all three match the pushed tag. Any mismatch aborts the release.

File Field Example
src/HelixTool/HelixTool.csproj <Version> <Version>0.8.0</Version>
src/HelixTool/.mcp/server.json top-level "version" "version": "0.8.0"
src/HelixTool/.mcp/server.json packages[0].version "version": "0.8.0"

Verify after editing:

grep -oP '(?<=<Version>)[^<]+' src/HelixTool/HelixTool.csproj
jq -r '.version, .packages[0].version' src/HelixTool/.mcp/server.json

All three must print the new version string.


Step 3 — Release notes

Write to .squad/release-notes/vX.Y.Z.md. Sections:

  • Headline — one sentence describing the release theme.
  • Highlights — top 3–5 bullets a user cares about.
  • New Features — with PR citations (#NN).
  • Bug Fixes — with PR citations.
  • Dependencies — SDK bumps, security pins.
  • Infrastructure — CI/tooling changes.
  • Full Changeloghttps://github.com/lewing/helix.mcp/compare/vPREV...vNEXT

Step 4 — Build + test sanity check

dotnet build -c Release --no-incremental   # must be: 0 Warning(s), 0 Error(s)
dotnet test  -c Release --no-build          # must be: 0 Failed

Stop and report if any tests are red. Do not proceed with a broken build.


Step 5 — Commit

git add -- src/HelixTool/HelixTool.csproj \
           src/HelixTool/.mcp/server.json \
           .squad/release-notes/vX.Y.Z.md
git commit -m "release: vX.Y.Z (version bump)

Co-authored-by: Copilot <[email protected]>"
git push -u origin release/vX.Y.Z

Read the full file on GitHub · 161 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 161 lines · 0 tokens per session scan A 84637588ed37

Subscribe to this mod's changes

release-cut is a skill published in the GitHub repository lewing/helix.mcp (4 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,466 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.