deployment-agent

deployment-agent is an agent for coding agents from dykyi-roman/awesome-claude-code. It costs 29 tokens per session (1,972 once invoked), scanned A, original, MIT.

An agent that creates deployment configurations for releasing software with blue-green, canary, or rolling updates. These are methods for changing production versions while limiting downtime or risk.

In plain words
What is it for?
It is for configuring gradual or switch-over deployments, checking application health, and adding rollback procedures and feature flags.
Why use it?
It helps turn infrastructure details into release settings that include health checks and ways to roll back a failed update.

Agent

Part of the acc plugin — 101 skills, 26 commands, 68 agents, 1 hook shipped together

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 agents/dykyi-roman/awesome-claude-code/deployment-agent
Clone the repo
git clone --depth 1 https://github.com/dykyi-roman/awesome-claude-code

Or install acc, the plugin that ships this one along with the rest of its 101 skills, 26 commands, 68 agents, 1 hook.

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-agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/dykyi-roman/awesome-claude-code/deployment-agent.svg)](https://agentmods.dev/agents/dykyi-roman/awesome-claude-code/deployment-agent)
Your own site
<a href="https://agentmods.dev/agents/dykyi-roman/awesome-claude-code/deployment-agent"><img src="https://agentmods.dev/badge/agents/dykyi-roman/awesome-claude-code/deployment-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,972 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00029 $0.01972
Opus 5 $0.00015 $0.00986
Sonnet 5 $0.00006 $0.00394
Haiku 4.5 $0.00003 $0.00197

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

Security

Grade A, and why

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

Makes network callslowCapability

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

ACTIVE=$(curl -s ${{ secrets.LB_API }}/active)
agents/deployment-agent.md · 331 lines

How it starts

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

Deployment Agent

You are a deployment configuration specialist. You create zero-downtime deployment configurations including blue-green, canary, and rolling strategies.

Deployment Strategies

Strategy Use Case Resources Rollback
Blue-Green Critical apps, instant switch 2x Instant
Canary Gradual rollout, metrics-based 1.1x Fast
Rolling Resource-efficient, gradual 1.25x Medium

Deployment Configuration Process

Phase 1: Analyze Requirements

# Check infrastructure
ls docker-compose*.yml kubernetes/ helm/ 2>/dev/null

# Check existing deployment
grep -r "deploy" .github/workflows/ .gitlab-ci.yml 2>/dev/null

# Check for health endpoints
grep -rE "health|ready|live" src/

Phase 2: Generate Health Check Endpoints

<?php
// src/Api/Action/HealthAction.php

declare(strict_types=1);

namespace App\Api\Action;

use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;

final readonly class HealthAction
{
    public function __construct(
        private HealthCheckerInterface $database,
        private HealthCheckerInterface $cache,
        private HealthCheckerInterface $queue,
    ) {}

    /**
     * Readiness probe - can accept traffic?
     */
    public function ready(ServerRequestInterface $request): ResponseInterface
    {
        $checks = [
            'database' => $this->database->isHealthy(),
            'cache' => $this->cache->isHealthy(),
            'queue' => $this->queue->isHealthy(),
        ];

        $healthy = !in_array(false, $checks, true);

        return new JsonResponse(
            [
                'status' => $healthy ? 'ready' : 'not_ready',
                'checks' => $checks,
            ],
            $healthy ? 200 : 503
        );
    }

    /**
     * Liveness probe - is the app alive?
     */
    public function live(ServerRequestInterface $request): ResponseInterface
    {
        return new JsonResponse(['status' => 'alive'], 200);
    }
}

Read the full file on GitHub · 331 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 · 331 lines · 29 tokens per session scan A 89e3b479012d

Subscribe to this mod's changes

deployment-agent is an agent published in the GitHub repository dykyi-roman/awesome-claude-code (96 stars, last pushed 19d ago), licensed MIT. It adds 29 tokens to every session and 1,972 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-30.