deploy

deploy is a skill for Claude Code from justnau1020/claude-os. It costs 24 tokens per session (433 once invoked), scanned A, original, Apache-2.0.

A production-release procedure that checks a project, pushes the deploy branch, and monitors the automated delivery pipeline. It also checks whether the live service responds after deployment.

In plain words
What is it for?
Use it to release a prepared project to production through CI/CD. It runs the required checks, watches the CI jobs, performs a health check, and shows where to inspect failures.
Why use it?
It prevents deployment when tests, linting, types, branch state, or uncommitted changes are not in the required condition. It provides checks for detecting a failed release or unhealthy service.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to release a prepared project to production through CI/CD. It runs the required checks, watches the CI jobs, performs a health check, and shows where to inspect failures.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/justnau1020/claude-os/deploy
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.

Any agent
npx skills add justnau1020/claude-os --skill deploy
Clone the repo
git clone --depth 1 https://github.com/justnau1020/claude-os

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/justnau1020/claude-os/deploy.svg)](https://agentmods.dev/skills/justnau1020/claude-os/deploy)
Your own site
<a href="https://agentmods.dev/skills/justnau1020/claude-os/deploy"><img src="https://agentmods.dev/badge/skills/justnau1020/claude-os/deploy.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 433 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00024 $0.00433
Opus 5 $0.00012 $0.00217
Sonnet 5 $0.00005 $0.00087
Haiku 4.5 $0.00002 $0.00043

Measured 8d ago against content hash 195fca4ed295, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

deploy scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

allowed-tools: Bash(git *), Bash(gh *), Bash(curl *), Bash(pytest *), Bash(ruff *), Bash(mypy *), Bash(npm *)
skills/operations/deploy/SKILL.md · 52 lines

What it actually says

Deploy to Production

WARNING: This deploys to the live production environment.

Pre-Deploy Checklist

Before pushing, verify ALL of these pass:

  1. Tests pass: Run the full test suite
  2. Lint clean: Run the project's linter with no errors
  3. Types clean: Run the type checker with no errors (if applicable)
  4. On deploy branch: git branch --show-current must be the deploy branch (usually main)
  5. Working tree clean: git status shows no uncommitted changes
  6. Up to date: git pull origin main has no conflicts

If ANY check fails, stop and report the issue. Do NOT proceed with deployment.

Deploy

Push to the deploy branch to trigger the CI/CD pipeline:

git push origin main

Monitor

  1. Watch CI: gh run list --limit 1 -- wait for the run to complete
  2. Check run status: gh run view <run-id> -- verify all jobs pass
  3. Health check: After CI completes, wait 60 seconds then:
    curl -sf https://{PRODUCTION_URL}/health
    
  4. Expected healthy response includes a status field indicating the service is running

If Deployment Fails

  1. Check CI logs: gh run view <run-id> --log-failed
  2. If the app is down, refer to the project's runbook for rollback procedures
  3. Quick rollback: revert the commit and push again

Reference

Check the project's deploy/ directory or ops documentation for full operational procedures.

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. 8d ago First seen · 52 lines · 24 tokens per session scan A 195fca4ed295

Subscribe to this mod's changes

deploy is a skill published in the GitHub repository justnau1020/claude-os (3 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 24 tokens to every session and 433 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

changelog-gen

A changelog generator that turns Git history into a version-by-version record of project changes. A changelog is a readable summary of new features, fixes, breaking changes, documentation, and other updates.

laolaoshiren/claude-code-skills-zh · 19 tokens

changelog-rules

Shared changelog conventions and formatting rules referenced by /create-changelog and /update-changelog. Not typically invoked directly.

tobihagemann/turbo · 29 tokens

release-engineering

Plan and verify software releases with versioning, changelogs, release branches, feature flags, canaries, migration gates, rollback, deployment checks, and release readiness. Use when preparing a release, shipping a risky PR, coordinating app/backend/database rollout, recovering from a bad deploy, or defining release…

majiayu000/spellbook · 69 tokens

create-changelog

Create a CHANGELOG.md following keepachangelog.com conventions with version history backfilled from GitHub releases or git tags. Use when the user asks to "create a changelog", "add a changelog", "initialize changelog", "start a changelog", "set up changelog", "generate changelog", or "backfill changelog".

tobihagemann/turbo · 75 tokens

update-changelog

Update the Unreleased section of CHANGELOG.md based on current changes. No-op if CHANGELOG.md does not exist. Use when the user asks to "update changelog", "add to changelog", "update the changelog", "changelog entry", "add changelog entry", or "log this change".

tobihagemann/turbo · 68 tokens

ship

Verify and publish by pushing, opening a PR, and watching CI; land mode merges then cleans branches. Triggers "ship it", "create PR", "/ship", "watch the PR", "babysit CI"; land mode "land it", "/ship land", "fix CI and merge".

darkroomengineering/cc-settings · 63 tokens