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 agentmods add commands/dewtech-technologies/dare-method/dare-dockergit clone --depth 1 https://github.com/dewtech-technologies/dare-methodWrote 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/commands/dewtech-technologies/dare-method/dare-docker)<a href="https://agentmods.dev/commands/dewtech-technologies/dare-method/dare-docker"><img src="https://agentmods.dev/badge/commands/dewtech-technologies/dare-method/dare-docker.svg" alt="Measured on agentmods" 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 | $0.00000 | $0.01278 |
| Opus 5 | $0.00000 | $0.00639 |
| Sonnet 5 | $0.00000 | $0.00256 |
| Haiku 4.5 | $0.00000 | $0.00128 |
Grade C, and why
dare-docker scanned grade C 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 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf /var/lib/apt/lists/* How it starts
The opening of the file, as written. The whole thing — 208 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/dare-docker
Containerização DARE com Dockerfile e docker-compose seguros, performantes e idiomáticos. Multi-stage, usuário não-root, healthchecks, redes isoladas.
Como usar
/dare-docker # detecta stack e gera Dockerfile + compose + .dockerignore
/dare-docker dockerfile # só Dockerfile
/dare-docker compose # só docker-compose.yml
/dare-docker review # audita Dockerfile/compose existente
Padrões para Dockerfile
1. Multi-stage build (obrigatório)
Separe build (compiladores) de runtime (artefato + libs mínimas).
2. Imagens base
- Alpine ou distroless quando possível
- Tag explícita (
php:8.3-fpm-alpine, nuncalatest) - Pin de versão
3. Usuário não-root
RUN adduser -D -u 1000 appuser
USER appuser
4. Cache de camadas
Ordem: FROM → install deps → COPY deps lockfile → install deps → COPY src → build.
5. Limpeza na mesma camada
RUN apt-get update && \
apt-get install -y --no-install-recommends pkg && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
Padrões por stack
PHP/Laravel
FROM php:8.3-fpm-alpine
RUN docker-php-ext-install pdo_pgsql opcache bcmath
WORKDIR /var/www/html
COPY composer.json composer.lock ./
RUN composer install --no-dev --no-interaction --optimize-autoloader
COPY . .
USER www-data
EXPOSE 9000
CMD ["php-fpm"]
Python/FastAPI
FROM python:3.11-slim
RUN useradd -m -u 1000 appuser
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY --chown=appuser:appuser . .
USER appuser
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
Go
FROM golang:1.22-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o /server ./cmd/server
FROM scratch
COPY --from=builder /server /server
EXPOSE 8080
USER 1000:1000
ENTRYPOINT ["/server"]
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.
- yesterday First seen · 208 lines · 0 tokens per session scan C b468805bb9b6
dare-docker is a command published in the GitHub repository dewtech-technologies/dare-method (5 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,278 tokens. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other commands, from other repositories
health
Check remote dev environment health dashboard.
implementar
Ejecutar tareas TDD fase por fase dentro de Docker hasta que todos los tests pasen.
ops-k8s
Kubernetes deployment and orchestration.
ops-vps
Deployment to a VPS server (OVH, Hetzner, DigitalOcean, Scaleway, etc.).
remote-status
Check if remote Docker environment needs updating.
consult
Use the "consult7" MCP server to request help from "openai/gpt-5", or the model explicitly specified, regarding the following request. Send it the following request, along with the relevant codebase, ALWAYS EXCLUDING all files and folders described in .claudeignore and .gitignore, as well as any file for which the…