release

release is a skill for Claude Code, Codex from drvoss/everything-copilot-cli. It costs 43 tokens per session (2,408 once invoked), scanned A, original, MIT.

A release workflow for preparing a completed sprint or feature for shipment. It covers version tagging, GitHub Release notes, rollout or smoke checks, and publishing to package registries such as npm, PyPI, or Docker.

In plain words
What is it for?
Use it after completing a sprint or feature when changes need to be tagged, verified, and published.
Why use it?
It gathers the final release checks into one process so versioning, notes, verification, and publishing are not overlooked. It also expects the changelog, commits, and CI to be ready.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/drvoss/everything-copilot-cli/release
Any agent
npx skills add drvoss/everything-copilot-cli --skill release
Clone the repo
git clone --depth 1 https://github.com/drvoss/everything-copilot-cli

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/drvoss/everything-copilot-cli/release.svg)](https://agentmods.dev/skills/drvoss/everything-copilot-cli/release)
Your own site
<a href="https://agentmods.dev/skills/drvoss/everything-copilot-cli/release"><img src="https://agentmods.dev/badge/skills/drvoss/everything-copilot-cli/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,408 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00043 $0.02408
Opus 5 $0.00022 $0.01204
Sonnet 5 $0.00009 $0.00482
Haiku 4.5 $0.00004 $0.00241

Measured yesterday against content hash f58cdbb478e1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

release 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 yesterday.

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.

skills/workflow/release/SKILL.md · 285 lines

How it starts

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

Release

When to Use

  • After completing a sprint and CHANGELOG [Unreleased] section is ready
  • When tagging a version for production deployment
  • As the final step in the commit-workflowadd-to-changelogrelease pipeline

Prerequisites

  • CHANGELOG.md has a populated [Unreleased] section
  • All commits for this release are on the target branch (usually main)
  • CI passes on the target branch

Workflow

1. Confirm CHANGELOG is Ready

# Review Unreleased changes
$changelog = Get-Content CHANGELOG.md
$unreleased = $changelog | Select-String -Pattern '\[Unreleased\]' -Context 0, 30
$unreleased.Context.PostContext

# Confirm there are actual changes
if ($unreleased -match 'Added|Changed|Fixed|Security|Removed|Deprecated') {
    Write-Host "✅ CHANGELOG has content — ready to release"
} else {
    Write-Host "⚠️  [Unreleased] section is empty — nothing to release"
}

2. Determine the Next Version

Use Semantic Versioning:

Change type Version bump Example
Bug fixes only PATCH 1.2.31.2.4
New features (backwards-compatible) MINOR 1.2.31.3.0
Breaking changes MAJOR 1.2.32.0.0
# Get current version
$currentTag = git --no-pager describe --tags --abbrev=0 2>$null
if (-not $currentTag) { $currentTag = "v0.0.0" }
Write-Host "Current: $currentTag"

# Decide next version
$nextVersion = "1.3.0"  # Set this based on the change type above

3. Promote CHANGELOG [Unreleased] to Versioned Section

$version = $nextVersion  # e.g. "1.3.0"
$date = Get-Date -Format "yyyy-MM-dd"

$changelog = Get-Content CHANGELOG.md -Raw

# Replace [Unreleased] header with versioned section and add new empty [Unreleased]
$newContent = $changelog -replace '## \[Unreleased\]', "## [Unreleased]`n`n## [$version] - $date"
Set-Content CHANGELOG.md $newContent

# Add version comparison link at bottom (optional but recommended)
$repoUrl = git remote get-url origin -replace '\.git$', ''
$prevVersion = $currentTag -replace '^v', ''
"`n[$version]: $repoUrl/compare/v$prevVersion...v$version" | Add-Content CHANGELOG.md

Read the full file on GitHub · 285 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. yesterday First seen · 285 lines · 43 tokens per session scan A f58cdbb478e1

Subscribe to this mod's changes

release is a skill published in the GitHub repository drvoss/everything-copilot-cli (45 stars, last pushed 8d ago), licensed MIT. It adds 43 tokens to every session and 2,408 once invoked, about $0.0002 per session on Opus 5. 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-09-03.