dokploy-create

A command for creating a Dokploy deployment template, including custom container builds when needed. Dokploy is a platform for deploying and managing applications on servers.

In plain words
What is it for?
Use it to create templates for named applications or application URLs, identify dependencies and storage needs, choose ports, and account for custom builds and external services.
Why use it?
It organizes application research and deployment requirements before producing a reusable template.

Command for Claude Code

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 commands/enuno/dokploy/dokploy-create
Clone the repo
git clone --depth 1 https://github.com/enuno/dokploy

Made for: Claude Code.

Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 10,584 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. 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.00019 $0.10584
Opus 5 $0.00010 $0.05292
Sonnet 5 $0.00004 $0.02117
Haiku 4.5 $0.00002 $0.01058

Measured yesterday against content hash 62daebf0706f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

dokploy-create scanned grade B with 2 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 yesterday.

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.

Enumerates other installed skillsmediumAgent snooping

Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.

ls .claude/skills/dokploy-* | wc -l

Makes network callslowCapability

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

RUN wget [source-url] \
.claude/commands/dokploy-create.md · 1,413 lines

How it starts

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

Create Dokploy Template (Skills-First + Cloudflare-First)

Create a complete, production-ready Dokploy template for $ARGUMENTS using progressive skill loading for optimal token efficiency. Defaults to Cloudflare services for all external integrations.

Invocation

/dokploy-create [application-name]
/dokploy-create [application-url]  # GitHub/Docker Hub URL

Examples:

/dokploy-create gitea
/dokploy-create nextcloud
/dokploy-create https://github.com/paperless-ngx/paperless-ngx
/dokploy-create https://hub.docker.com/r/vaultwarden/server

Workflow Architecture

Multi-Phase Execution with Progressive Skill Loading:

┌─────────────────────────────────────────────────────────┐
│  Phase 1: Discovery (No Skills)                         │
│  • Research application (WebSearch, WebFetch)           │
│  • Identify dependencies, storage needs, ports          │
│  • DETECT: Custom build needed?                         │
│  • Output: Requirements document                        │
└───────────────────────┬─────────────────────────────────┘
                        │
                        ├──[Custom Build Needed?]──┐
                        │                           │
                   [No] │                       [Yes│
                        │                           │
                        │                           ▼
                        │        ┌─────────────────────────────────────────┐
                        │        │  Phase 1.5: Custom Build (Conditional)  │
                        │        │  • Check Dockerfiles/[app]/ exists      │
                        │        │  • Create Dockerfile (if needed)        │
                        │        │  • INVOKE: /create-container            │
                        │        │  • Build → Push → Index Update          │
                        │        │  • Output: registry.hashgrid.net/app:tag│
                        │        └───────────────────┬─────────────────────┘
                        │                           │
                        └───────────────────────────┘
                        │
                        ▼
┌─────────────────────────────────────────────────────────┐
│  Phase 2: Architecture (Load: dokploy-multi-service)    │
│  • Design service dependency graph                      │
│  • Plan network topology                                │
│  • SELECT CLOUDFLARE SERVICES (R2, Workers, D1, etc.)   │
│  • Use custom image if built in Phase 1.5               │
│  • Output: Architecture design document                 │
└───────────────────────┬─────────────────────────────────┘
                        │
                        ▼
┌─────────────────────────────────────────────────────────┐
│  Phase 3: Generation (Load 6 Skills Progressively)      │
│  1. dokploy-compose-structure → Base YAML               │
│     → Use registry.hashgrid.net/app:tag if custom       │
│  2. dokploy-traefik-routing → Routing labels            │
│  3. dokploy-health-patterns → Health checks             │
│  4. dokploy-cloudflare-integration → CF SERVICES ⭐     │
│  5. dokploy-environment-config → Env vars               │
│  6. dokploy-template-toml → Template config             │
│  • Output: Complete docker-compose.yml + template.toml  │
└───────────────────────┬─────────────────────────────────┘
                        │
                        ▼
┌─────────────────────────────────────────────────────────┐
│  Phase 4: Validation (Load 2 Skills Sequentially)       │
│  1. dokploy-security-hardening → Security review        │
│  2. dokploy-template-validation → Convention check      │
│  • Final: docker compose config (syntax validation)     │
│  • Output: Validation reports + fixes                   │
└───────────────────────┬─────────────────────────────────┘
                        │
                        ▼
┌─────────────────────────────────────────────────────────┐
│  Phase 5: Documentation (No Skills)                     │
│  • Generate comprehensive README.md                     │
│  • Include Cloudflare setup guide (if applicable)       │
│  • Note custom build if used from registry              │
│  • Output: Complete documentation                       │
└───────────────────────┬─────────────────────────────────┘
                        │
                        ▼
┌─────────────────────────────────────────────────────────┐
│  Phase 6: Index Update (No Skills)                      │
│  • Update blueprints/README.md table                    │
│  • Insert in alphabetical order                         │
│  • Output: Updated repository index                     │
└─────────────────────────────────────────────────────────┘

Feedback Loops:
• Phase 3 ↔ Phase 4: Iterative refinement if validation fails
• Phase 2 → Phase 3: Architecture adjustments if needed
• Phase 1 → Phase 1.5: Trigger custom build if no official image

Read the full file on GitHub · 1,413 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. yesterday First seen · 1,413 lines · 19 tokens per session scan B 62daebf0706f

Subscribe to this mod's changes

dokploy-create is a command published in the GitHub repository enuno/dokploy (2 stars, last pushed 21d ago), licensed Apache-2.0. It adds 19 tokens to every session and 10,584 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (enumerates other installed skills, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.