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.
npx agentmods add skills/yuriyenshin/confluenceimportexport/releasenpx skills add YuriyEnshin/ConfluenceImportExport --skill releasegit clone --depth 1 https://github.com/YuriyEnshin/ConfluenceImportExportWrote 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.
[](https://agentmods.dev/skills/yuriyenshin/confluenceimportexport/release)<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>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.
| Model | Per session | Once 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 |
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.
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
- On
master, clean tree, up to date with origin. - Tests green. Run them (xunit.v3 on MTP —
dotnet testprints nothing useful):dotnet build tests/ConfluencePageExporter.Tests/ConfluencePageExporter.Tests.csproj tests/ConfluencePageExporter.Tests/bin/Debug/net10.0/ConfluencePageExporter.Tests.exe CHANGELOG.mdhas 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.
- Branch:
git checkout -b chore/release-X.Y.Z - 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] — DATEshape). 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 vOLD→vX.Y.Z.README.en.md— first line, same bump.
- 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]> - 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), thengh pr merge <n> --merge --delete-branch. - Sync master:
git checkout master && git pull --ff-only. - Tag on the merge commit and push — this publishes the release:
git tag vX.Y.Z git push origin vX.Y.Z - Verify CI:
gh run watch(orgh run list --workflow=Release) until green, thengh release view vX.Y.Zto confirm the three archives attached.
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.
- 5d ago First seen · 97 lines · 132 tokens per session scan A db3ff4f6d278
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.
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.
release
Release a new version of debug-mcp to NuGet and GitHub.
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.
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…
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…
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…