Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-mpm:dockerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```dockerfile
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
If reload does not trigger inside containers (common on mounted volumes), set polling:
environment:
- WATCHFILES_FORCE_POLLING=true
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["gunicorn", "app.main:app", "-k", "uvicorn.workers.UvicornWorker", "-w", "4", "--bind", "0.0.0.0:8000"]
services:
api:
build: .
ports: ["8000:8000"]
volumes: ["./:/app"]
environment:
- PYTHONUNBUFFERED=1
- WATCHFILES_FORCE_POLLING=true
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
npx claudepluginhub bobmatnyc/claude-mpm-marketplace --plugin claude-mpmGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.