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.
npx skills add jxoesneon/Ciel --skill container-and-deploymentgit clone --depth 1 https://github.com/jxoesneon/CielWrote 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.
[](https://agentmods.dev/skills/jxoesneon/ciel/container-and-deployment)<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.
<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>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.
| Model | Per session | Once 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 |
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. 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
- Multi-Stage Mandate: Separate
deps->builder->runner. Runner MUST be minimal (e.g.,alpine) and non-root. - Layer Optimization: Copy dependency files (
package.json,go.mod) first to maximize cache hits. - Health Checks: ALWAYS include a
HEALTHCHECKinstruction usingwgetor a simple script. - Security: Prohibit
:latesttags. 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_modulesor 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.
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.
- 6d ago First seen · 52 lines · 19 tokens per session scan A 988da21525e8
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.
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…
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.
deployment-patterns
Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications.
deployment-patterns
Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications.
cicd-pipeline-setup
Group skill: CI/CD pipeline setup — GitHub Actions, GitLab CI, Docker build, Kubernetes, Helm, Terraform, secrets, monitoring, and GitOps.
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.