deploy-workflow

deploy-workflow is a skill for Claude Code, Codex from nwiizo/ccswarm. It costs 24 tokens per session (291 once invoked), scanned A, original, MIT.

A release checklist for a Rust project that updates versions, checks the code, builds it, and publishes a new release.

In plain words
What is it for?
Use it to prepare and publish ccswarm releases, create GitHub releases and Rust packages, or roll back a release.
Why use it?
It puts the required release steps in one place, reducing the chance of forgetting tests, documentation, tags, or package publishing.

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/nwiizo/ccswarm/deploy-workflow
Any agent
npx skills add nwiizo/ccswarm --skill deploy-workflow
Clone the repo
git clone --depth 1 https://github.com/nwiizo/ccswarm

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 deploy-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/nwiizo/ccswarm/deploy-workflow.svg)](https://agentmods.dev/skills/nwiizo/ccswarm/deploy-workflow)
Your own site
<a href="https://agentmods.dev/skills/nwiizo/ccswarm/deploy-workflow"><img src="https://agentmods.dev/badge/skills/nwiizo/ccswarm/deploy-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 291 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.00024 $0.00291
Opus 5 $0.00012 $0.00146
Sonnet 5 $0.00005 $0.00058
Haiku 4.5 $0.00002 $0.00029

Measured 4d ago against content hash 84695c79ffc1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

deploy-workflow 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 4d 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.

.agents/skills/deploy-workflow/SKILL.md · 46 lines

What it actually says

Deploy a new ccswarm release.

Pre-Deployment

# Update version in Cargo.toml files (root, crates/ccswarm, crates/ai-session)
# Update CHANGELOG.md

# Quality gates
cargo fmt --all && cargo clippy --workspace -- -D warnings && cargo test --workspace
cargo audit
cargo doc --no-deps --workspace

Build & Release

cargo build --release --workspace

# Tag and push
git tag -a v$ARGUMENTS -m "Release v$ARGUMENTS"
git push origin v$ARGUMENTS

# GitHub release
gh release create v$ARGUMENTS --title "ccswarm v$ARGUMENTS" --notes-file CHANGELOG.md

# Crates.io (publish ai-session first, then ccswarm)
cargo publish -p ai-session
cargo publish -p ccswarm

Rollback

git tag -d v$ARGUMENTS && git push origin :refs/tags/v$ARGUMENTS
gh release delete v$ARGUMENTS
cargo yank --version $ARGUMENTS ccswarm
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. 4d ago First seen · 46 lines · 24 tokens per session scan A 84695c79ffc1

Subscribe to this mod's changes

deploy-workflow is a skill published in the GitHub repository nwiizo/ccswarm (149 stars, last pushed 1mo ago), licensed MIT. It adds 24 tokens to every session and 291 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories

release

Cut a Symphony release by bumping the committed version, landing it, tagging the merged commit, and verifying the Burrito release workflow. Use when asked to release, tag, or retag Symphony.

openai/symphony · 42 tokens

release-notes

Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.

phuryn/pm-skills · 57 tokens

snapshot-release

Drives the snapshot-release flow for the current branch's PR. Posts a /snapshot comment on the PR if one isn't already there (with confirmation), waits for the Continuous Releases workflow to finish, and reports the tarball URLs from the resulting 📦 Snapshot Release comment. Use for both triggering and waiting …

daangn/seed-design · 142 tokens

multi-repo-release

Prepares and validates GPT-RAG umbrella releases across component repositories and the AI Landing Zone. Use for manifest pins, changelog entries, release branches, tags, and GitHub Release notes.

Azure/GPT-RAG · 43 tokens

release-rome-image

Release a new Rome runtime image by pushing a vX.Y.Z tag — pick the version, verify main is releasable, push the tag, and confirm the image published to Docker Hub. Covers the v runtime-image tag only, not the desktop app (desktop-v) and not npm packages (ui-v, app-runtime-v).

rome-os/rome · 81 tokens

changelog-composer

Generates structured changelogs and release notes from git history and PRs, classifying breaking changes, features, fixes, performance, docs. Triggers on: "generate changelog", "write release notes", "what changed since", "prepare release", "release notes for", "diff since tag".

Mathews-Tom/armory · 67 tokens