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-mpmProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.