deployment

deployment is a skill for Claude Code, Codex from anatolykoptev/dozor. It costs 40 tokens per session (662 once invoked), scanned A, original, MIT.

A procedure for deploying software services, including checks before and after the update. Deployment means putting a new version of an application onto its server.

In plain words
What is it for?
Use it when deploying a service, updating a Docker stack, or running server deployment. It covers building, pulling updates, monitoring progress, verification, and reporting failures or rollback details.
Why use it?
It checks service health, available resources, and active incidents before deployment, then verifies the result and checks logs if something fails.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when deploying a service, updating a Docker stack, or running server deployment. It covers building, pulling updates, monitoring progress, verification, and reporting failures or rollback details.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anatolykoptev/dozor/deployment
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 anatolykoptev/dozor --skill deployment
Clone the repo
git clone --depth 1 https://github.com/anatolykoptev/dozor

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 deployment

README.md
[![agentmods](https://agentmods.dev/badge/skills/anatolykoptev/dozor/deployment.svg)](https://agentmods.dev/skills/anatolykoptev/dozor/deployment)
Your own site
<a href="https://agentmods.dev/skills/anatolykoptev/dozor/deployment"><img src="https://agentmods.dev/badge/skills/anatolykoptev/dozor/deployment.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 662 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00040 $0.00662
Opus 5 $0.00020 $0.00331
Sonnet 5 $0.00008 $0.00132
Haiku 4.5 $0.00004 $0.00066

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

Security

Grade A, and why

deployment 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 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.

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/deployment/SKILL.md · 89 lines

How it starts

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

Deployment

Safe deployment flow: pre-check, deploy, verify.

Deploy Flow

1. PRE-CHECK
   - server_inspect(mode: "health") — are all services healthy?
   - server_inspect(mode: "overview") — enough disk/memory for build?
   - If issues exist: fix first, then deploy

2. DEPLOY
   - server_deploy(project_path: PATH, build: true, pull: true)
   - Returns deploy_id for status polling

3. MONITOR
   - server_deploy(deploy_id: ID) — poll until complete
   - Watch for build errors, timeout (5 min max)

4. VERIFY
   - server_inspect(mode: "health") — all services came back?
   - server_triage() — any new issues?
   - If service is down after deploy: check logs immediately

5. NOTIFY
   - Report success/failure to user
   - If failed: include error details and what was rolled back

Pre-Deploy Checklist

Check Tool Threshold
All services healthy server_inspect(mode: "health") No exited/unhealthy
Disk space server_inspect(mode: "overview") < 80% used
Memory available server_inspect(mode: "overview") > 1GB free
No active incidents server_triage() No P0 issues

If any check fails, warn user before proceeding.

Docker Compose Deploy

Standard deployment for a Docker Compose project:

server_deploy(project_path: "/path/to/your/project")

Deploy specific services only:

server_deploy(project_path: "/path/to/your/project", services: ["api-service", "worker-service"])

Skip pull (local changes only):

server_deploy(project_path: "/path/to/your/project", pull: false)

Post-Deploy Issues

Service Won't Start After Deploy

  1. server_inspect(mode: "logs", service: NAME, lines: 50) to check startup errors
  2. Common causes: config mismatch, missing env vars, port conflict
  3. If code issue: escalate to devops

Performance Degradation After Deploy

  1. server_inspect(mode: "overview") to check resource usage
  2. Compare with pre-deploy baseline
  3. May need container resource limit adjustment

Read the full file on GitHub · 89 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. 8d ago First seen · 89 lines · 40 tokens per session scan A c4f504064ee5

Subscribe to this mod's changes

deployment is a skill published in the GitHub repository anatolykoptev/dozor (5 stars, last pushed today), licensed MIT. It adds 40 tokens to every session and 662 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-08-31.

Related

Other skills, from other repositories

cloudstudio_deploy

Deploy static sites to CloudStudio sandbox workspaces or take published sites offline. This skill should be used when users want to deploy a local build directory (e.g. dist/, build/, out/) to a CloudStudio workspace, preview or publish a static site with a shareable URL, or unpublish an existing deployment.

crane-in-clear-sky/WorkWit-AI-Agent · 69 tokens

cloudflare-temporary-deploy

Deploy a Worker live, no account, via wrangler --temporary.

NousResearch/hermes-agent · 21 tokens

tensorrt-llm

High-throughput LLM inference on NVIDIA GPUs.

NousResearch/hermes-agent · 18 tokens

network-rca

Kubernetes network root cause analysis skill powered by Kubeshark MCP. Use this skill whenever the user wants to investigate past incidents, perform retrospective traffic analysis, take or manage traffic snapshots, extract PCAPs, dissect L7 API calls from historical captures, compare traffic patterns over time, detect…

kubeshark/kubeshark · 163 tokens

langbot-deploy

Deploy and configure a LangBot instance — Docker / Docker Compose, Kubernetes, the config.yaml model, the Box sandbox runtime, the plugin runtime, and the global API key. Use when installing, deploying, upgrading, or configuring LangBot in production or self-hosted environments. Triggers on "deploy langbot", "langbot…

langbot-app/LangBot · 104 tokens

latchbio-integration

Latch platform for bioinformatics workflows. Build pipelines with Latch SDK, @workflow/@task decorators, deploy serverless workflows, LatchFile/LatchDir, Nextflow/Snakemake integration.

synthetic-sciences/openscience · 45 tokens