container-and-deployment

container-and-deployment is a skill for Claude Code, Codex from jxoesneon/Ciel. It costs 19 tokens per session (521 once invoked), scanned A, original, Apache-2.0.

A framework for packaging services in Docker containers and delivering them through continuous integration and continuous delivery (CI/CD), where code is automatically checked and deployed.

In plain words
What is it for?
Writing multi-stage Docker builds, selecting pinned image versions, adding health checks, configuring rolling, blue-green, or canary releases, and setting up lint, test, audit, and deployment stages.
Why use it?
It helps produce repeatable builds, smaller and safer container images, reliable health checks, and controlled deployments with quality and security gates.

Skill for Claude CodeCodex

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

Good fit Writing multi-stage Docker builds, selecting pinned image versions, adding health checks, configuring rolling, blue-green, or canary releases, and setting up lint, test, audit, and deployment stages.

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

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 container-and-deployment

README.md
[![agentmods](https://agentmods.dev/badge/skills/jxoesneon/ciel/container-and-deployment/github.svg)](https://agentmods.dev/skills/jxoesneon/ciel/container-and-deployment)
Your own site
<a href="https://agentmods.dev/skills/jxoesneon/ciel/container-and-deployment"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/container-and-deployment/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for container-and-deployment

Your own site · 80×15
<a href="https://agentmods.dev/skills/jxoesneon/ciel/container-and-deployment"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/container-and-deployment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 521 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.00019 $0.00521
Opus 5 $0.00010 $0.00260
Sonnet 5 $0.00004 $0.00104
Haiku 4.5 $0.00002 $0.00052

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

Security

Grade A, and why

container-and-deployment 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 6d 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.

3. **Health Checks**: ALWAYS include a `HEALTHCHECK` instruction using `wget` or a simple script.
skills/container-and-deployment/SKILL.md · 52 lines

What it actually says

CIEL ADAPTATION: Containers & Deployment (The Ship Layer)

This skill formalizes the packaging and delivery of services. it prioritizes reproducible builds and zero-downtime rollouts.

Docker Patterns

  1. Multi-Stage Mandate: Separate deps -> builder -> runner. Runner MUST be minimal (e.g., alpine) and non-root.
  2. Layer Optimization: Copy dependency files (package.json, go.mod) first to maximize cache hits.
  3. Health Checks: ALWAYS include a HEALTHCHECK instruction using wget or a simple script.
  4. Security: Prohibit :latest tags. Use pinned versions (e.g., node:22.12-alpine).

Deployment Strategies

  • Rolling: Default for non-breaking changes. Requires backward-compatible DB schemas.
  • Blue-Green: Mandate for critical services or major breaking changes. Requires 2x infra capacity.
  • Canary: Use for high-risk UI or performance changes. Start with 5% traffic.

CI/CD Pipeline

  • Gate 1: Quality: Lint -> Typecheck -> Unit Tests.
  • Gate 2: Security: Dependency Audit -> Secret Grep.
  • Gate 3: Performance: Benchmark vs Baseline.
  • Deploy: Environment-specific secrets injected at runtime; never baked into images.

Anti-Patterns

  • The Giant Image: Including node_modules or build tools in the final production image.
  • Root Runner: Running the container process as UID 0.
  • Blind Migrations: Running destructive DB migrations during a rolling deployment.
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. 6d ago First seen · 52 lines · 19 tokens per session scan A 988da21525e8

Subscribe to this mod's changes

container-and-deployment is a skill published in the GitHub repository jxoesneon/Ciel (1 stars, last pushed 2d ago), licensed Apache-2.0. It adds 19 tokens to every session and 521 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-09-03.

Related

Other skills, from other repositories

devops-engineer

Creates Dockerfiles, configures CI/CD pipelines, writes Kubernetes manifests, and generates Terraform/Pulumi infrastructure templates. Handles deployment automation, GitOps configuration, incident response runbooks, and internal developer platform tooling. Use when setting up CI/CD pipelines, containerizing…

firstsun-dev/skills · 107 tokens

build-yaml-misconfiguration

Apply when reviewing or writing GitLab CI (.gitlab-ci.yml), Tekton pipeline/task YAML, or Containerfiles/Dockerfiles used in CI builds. Detects common misconfigurations that expose secrets, weaken isolation, skip security gates, grant excessive privileges, or produce insecure container images.

backspace-shmackspace/claude-devkit · 65 tokens

deployment-patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications.

Jamkris/everything-gemini-code · 31 tokens

deployment-patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications.

x-cmd/skill · 31 tokens

cicd-pipeline-setup

Group skill: CI/CD pipeline setup — GitHub Actions, GitLab CI, Docker build, Kubernetes, Helm, Terraform, secrets, monitoring, and GitOps.

may215/antigravity-awesome-group-skills · 41 tokens

dev-environment-setup

Group skill: Set up a new development environment — project init, toolchain, package manager, dev container, editor config, git hooks, database, env vars, documentation, and CI/CD.

may215/antigravity-awesome-group-skills · 45 tokens