docker-architect

docker-architect is an agent for Claude Code from TheBeardedBearSAS/claude-craft. It costs 7 tokens per session (2,118 once invoked), scanned A, original, MIT.

A Docker architecture guide that designs complete container-based systems from functional requirements, including multiple services and deployment patterns. It can cover containers, security, performance, and monitoring.

In plain words
What is it for?
Use it to plan containerized monoliths, separate services, microservices, event-driven systems, or data pipelines, including their databases, networks, security, and monitoring needs.
Why use it?
It helps turn a broad application description into a structured container setup and surfaces the services and deployment choices needed from development through production.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is build: ./docker/app.

Part of the claude-craft plugin — 56 skills, 94 commands, 47 agents, 5 hooks shipped together

Good fit Use it to plan containerized monoliths, separate services, microservices, event-driven systems, or data pipelines, including their databases, networks, security, and monitoring needs.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/TheBeardedBearSAS/claude-craft
agentmods
npx agentmods add agents/thebeardedbearsas/claude-craft/docker-architect

Made for: Claude Code.

Or install claude-craft, the plugin that ships this one along with the rest of its 56 skills, 94 commands, 47 agents, 5 hooks.

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 docker-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/thebeardedbearsas/claude-craft/docker-architect.svg)](https://agentmods.dev/agents/thebeardedbearsas/claude-craft/docker-architect)
Your own site
<a href="https://agentmods.dev/agents/thebeardedbearsas/claude-craft/docker-architect"><img src="https://agentmods.dev/badge/agents/thebeardedbearsas/claude-craft/docker-architect.svg" alt="Measured on agentmods" height="20"></a>
Per session 7 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,118 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.00007 $0.02118
Opus 5 $0.00003 $0.01059
Sonnet 5 $0.00001 $0.00424
Haiku 4.5 $0.00001 $0.00212

Measured 3d ago against content hash 646241deb41a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

docker-architect 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 3d 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.

Infra/i18n/de/Docker/agents/docker-architect.md · 316 lines

How it starts

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

Docker Architekt

Identität

Du bist ein Senior Docker Architekt, der in der Lage ist, vollständige containerisierte Architekturen aus funktionalen Spezifikationen zu entwerfen. Du koordinierst implizit Dockerfile-, Compose-, CI/CD- und Debugging-Expertise, um produktionsreife Lösungen zu liefern.

Technische Expertise

Design

Bereich Expertise Umfang
Multi-Service-Architektur Experte Vollständiges Design
Deployment-Patterns Experte Dev → Prod
Container-Sicherheit Experte Zero-Trust
Performance Experte Optimierung
Observability Fortgeschritten Logs, Metriken, Traces

Beherrschte Patterns

Pattern Verwendung Komplexität
Containerisierter Monolith MVP, Migration Niedrig
Entkoppelte Services Standard-Anwendung Mittel
Microservices Große Skalierung Hoch
Event-driven Async-Verarbeitung Hoch
Data Pipeline ETL, ML Mittel-Hoch

Methodik

Phase 1 — Discovery

Extrahieren und klären:

  1. Tech Stack

    • Sprachen und Frameworks
    • Spezifische Versionen
    • Externe Abhängigkeiten
  2. Benötigte Services

    • Datenbank (PostgreSQL, MySQL, MongoDB)
    • Cache (Redis, Memcached)
    • Queue (RabbitMQ, Kafka)
    • Suche (Elasticsearch, Meilisearch)
  3. Umgebungen

    • Entwicklung (Hot-reload, Debug)
    • Test (CI, Isolation)
    • Staging (produktionsähnlich)
    • Produktion (Performance, Sicherheit)
  4. Einschränkungen

    • Performance (Latenz, Durchsatz)
    • Sicherheit (Compliance, Isolation)
    • Budget (Ressourcen, Cloud)
    • Team (Docker-Expertise)

Phase 2 — Architektur-Design

  1. Service-Topologie
    ┌─────────────────────────────────────────────┐
    │                 FRONTEND                     │
    │  ┌─────────┐         ┌─────────┐            │
    │  │  Nginx  │─────────│  React  │            │
    │  └────┬────┘         └─────────┘            │
    └───────┼─────────────────────────────────────┘
            │
    ┌───────▼─────────────────────────────────────┐
    │                 BACKEND                      │
    │  ┌─────────┐    ┌─────────┐    ┌─────────┐ │
    │  │   API   │────│ Workers │────│  Jobs   │ │
    │  └────┬────┘    └────┬────┘    └────┬────┘ │
    └───────┼──────────────┼──────────────┼──────┘
            │              │              │
    ┌───────▼──────────────▼──────────────▼──────┐
    │                  DATA                       │
    │  ┌──────────┐  ┌─────────┐  ┌───────────┐ │
    │  │PostgreSQL│  │  Redis  │  │ RabbitMQ  │ │
    │  └──────────┘  └─────────┘  └───────────┘ │
    └─────────────────────────────────────────────┘
    

Read the full file on GitHub · 316 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. 3d ago First seen · 316 lines · 7 tokens per session scan A 646241deb41a

Subscribe to this mod's changes

docker-architect is an agent published in the GitHub repository TheBeardedBearSAS/claude-craft (105 stars, last pushed 4d ago), licensed MIT. It adds 7 tokens to every session and 2,118 once invoked, about $0.0000 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-09-03.

Related

Other agents, from other repositories

devsecops-engineer

CI/CD security, SAST/DAST pipelines, supply chain security, container scanning, and security automation specialist. Use when securing CI/CD pipelines, implementing security scanning, or hardening build processes. Trigger phrases: DevSecOps, SAST, DAST, supply chain security, container scanning, CI/CD security, SBOM…

travisjneuman/.claude · 83 tokens

devops-engineer

Expert DevOps and cloud infrastructure engineer for AWS, GCP, Azure, Kubernetes, Terraform, and CI/CD pipelines. Use when setting up pipelines, containerizing apps, writing infrastructure as code, or troubleshooting deployments.

travisjneuman/.claude · 48 tokens

security-auditor

Deep security analysis for OWASP Top 10, auth vulnerabilities, secrets exposure, and dependency risks. Use when reviewing code security, before deployments, or investigating security concerns.

travisjneuman/.claude · 39 tokens

ux-researcher

UX research, usability testing, user interviews, wireframing, and information architecture specialist. Use when planning user research, designing interfaces, conducting heuristic evaluations, or creating wireframes. Trigger phrases: UX research, user research, usability, wireframe, user interview, persona, journey…

travisjneuman/.claude · 69 tokens

gsd-plan-checker

Verifies plans will achieve phase goal before execution. Goal-backward analysis of plan quality. Spawned by /gsd:plan-phase orchestrator.

travisjneuman/.claude · 36 tokens

Kubernetes FinOps Engineer

Specialist in Kubernetes cost allocation, namespace and label-based chargeback, and cluster-level optimization. Comfortable with OpenCost, Kubecost, Karpenter, cluster autoscaler, and vertical pod autoscaler.

Cletrics/finops-agents · 48 tokens