release

release is a skill for Claude Code, Codex from YuriyEnshin/ConfluenceImportExport. It costs 132 tokens per session (1,210 once invoked), scanned A, original, MIT.

A release procedure for Confluence Page Exporter, a tool that exports Confluence pages to local files. It coordinates version updates, changelog changes, tagging, and the CI process that publishes binaries and a GitHub Release.

In plain words
What is it for?
Use it when preparing or publishing a release, bumping the version, checking prerequisites, or handing the final build to CI.
Why use it?
It keeps version information consistent and makes clear that pushing a version tag publishes a public release.

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/yuriyenshin/confluenceimportexport/release
Any agent
npx skills add YuriyEnshin/ConfluenceImportExport --skill release
Clone the repo
git clone --depth 1 https://github.com/YuriyEnshin/ConfluenceImportExport

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/yuriyenshin/confluenceimportexport/release.svg)](https://agentmods.dev/skills/yuriyenshin/confluenceimportexport/release)
Your own site
<a href="https://agentmods.dev/skills/yuriyenshin/confluenceimportexport/release"><img src="https://agentmods.dev/badge/skills/yuriyenshin/confluenceimportexport/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 132 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,210 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.00132 $0.01210
Opus 5 $0.00066 $0.00605
Sonnet 5 $0.00026 $0.00242
Haiku 4.5 $0.00013 $0.00121

Measured 5d ago against content hash db3ff4f6d278, 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 5d 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.

.claude/skills/release/SKILL.md · 97 lines

How it starts

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

Release Confluence Page Exporter

The model (read first)

The git tag vX.Y.Z is the source of truth for the released build.github/workflows/release.yml triggers on push of a v* tag, extracts the version from the tag name, and publishes self-contained single-file binaries for win-x64, linux-x64, osx-arm64 plus a GitHub Release with auto-generated notes. Nothing you build locally is published; the tag drives everything.

Even so, keep every in-repo version string in sync with the tag so the source is honest (a README that says v2.16.0 for a v2.18.0 tool misleads users). This skill bumps all five places and, if they had drifted, this run silently corrects them.

Pushing the tag is irreversible and outward-facing — it publishes a public GitHub Release. Do the commit/PR/merge first; tag only at the very end, after confirming the version with the user.

Preconditions

  1. On master, clean tree, up to date with origin.
  2. Tests green. Run them (xunit.v3 on MTP — dotnet test prints nothing useful):
    dotnet build tests/ConfluencePageExporter.Tests/ConfluencePageExporter.Tests.csproj
    tests/ConfluencePageExporter.Tests/bin/Debug/net10.0/ConfluencePageExporter.Tests.exe
    
  3. CHANGELOG.md has a non-empty ## [Unreleased] section. If it's empty or missing, there is nothing user-facing to release — stop and ask the user.

Choose the version

Infer the next semver bump from what's under [Unreleased], then confirm with the user before tagging:

  • new features / commands / flags (### Добавлено) → minor (2.18.0 → 2.19.0)
  • only fixes (### Исправлено) → patch (2.18.0 → 2.18.1)
  • breaking changes → major

History is almost all minor bumps with the occasional patch (e.g. 2.13.1).

Steps

Let X.Y.Z be the new version and DATE today's date as YYYY-MM-DD.

  1. Branch: git checkout -b chore/release-X.Y.Z
  2. Edit five files (all in one commit):
    • CHANGELOG.md — rename the heading ## [Unreleased]## [X.Y.Z] — DATE.
    • CHANGELOG.en.md — same rename, mirroring the existing entry format exactly (same ## [X.Y.Z] — DATE shape). Per the bilingual rule both CHANGELOGs move together.
    • Directory.Build.props<Version>OLD</Version><Version>X.Y.Z</Version>.
    • README.md — first line # Confluence Page Sync vOLDvX.Y.Z.
    • README.en.md — first line, same bump.
  3. Commit (message in Russian, per project convention):
    chore(release): версия X.Y.Z
    
    <2–4 line summary of the release highlights, taken from the CHANGELOG entry>
    
    Co-Authored-By: Claude Opus 4.8 <[email protected]>
    
  4. PR + self-merge (the user's standing workflow — don't wait for review): git push -u origin chore/release-X.Y.Z, gh pr create --base master ... (Russian title/body), then gh pr merge <n> --merge --delete-branch.
  5. Sync master: git checkout master && git pull --ff-only.
  6. Tag on the merge commit and push — this publishes the release:
    git tag vX.Y.Z
    git push origin vX.Y.Z
    
  7. Verify CI: gh run watch (or gh run list --workflow=Release) until green, then gh release view vX.Y.Z to confirm the three archives attached.

Read the full file on GitHub · 97 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. 5d ago First seen · 97 lines · 132 tokens per session scan A db3ff4f6d278

Subscribe to this mod's changes

release is a skill published in the GitHub repository YuriyEnshin/ConfluenceImportExport (5 stars, last pushed 23d ago), licensed MIT. It adds 132 tokens to every session and 1,210 once invoked, about $0.0007 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-08-31.

Related

Other skills, from other repositories

publish-release

Releases a new McpOrchestrator version end to end — version bump PR, tag, and the automated deploy to GitHub Releases, NuGet, and the MCP Registry. Use when asked to release, publish, deploy, ship, or bump the version of McpOrchestrator.

Byggarepop/dotnet-mcp-orchestrator · 63 tokens

release

Release a new version of debug-mcp to NuGet and GitHub.

jkolo/debug-mcp · 16 tokens

release-notes

Writes user-facing release notes from a git commit range. Use when asked to draft release notes, a changelog entry, or "what's new" text for a release.

Byggarepop/dotnet-mcp-orchestrator · 39 tokens

split-commit-into-stack

Split one oversized commit or branch into a stack of independently reviewable Graphite (gt) PRs - deciding what genuinely separates, what is atomic and must stay whole, and proving each lower PR builds and passes without the ones above it. Use when asked to "split this PR", "this commit is too big", "break this into a…

maximhq/bifrost · 96 tokens

azsdk-common-prepare-release-plan

Create, get, update, abandon, and link SDK PRs to release plan work items for Azure SDK releases. UTILITY SKILL. USE FOR: "create release plan", "get release plan", "update release plan", "update API spec in release plan", "update SDK details in release plan", "abandon release plan", "link SDK PR to plan", "namespace…

Azure/azure-sdk-for-net · 231 tokens

refresh-arm-sdk-release

WORKFLOW SKILL — Prepares Azure.ResourceManager SDK refresh pull requests in azure-sdk-for-net. WHEN: "prepare sdk refresh", "refresh Azure.ResourceManager package", "update ARM SDK from autorest tag", "refresh changelog dependencies". INVOKES: git and GitHub pull request tools for branch, commit, push, and PR…

Azure/azure-sdk-for-net · 91 tokens