Automates Docker Compose Watch mode for hot reload in local development using sync for hot-reload frameworks like React/Next.js, rebuild for Go/Rust/Java, and restart for configs on file changes.
npx claudepluginhub josiahsiegel/claude-plugin-marketplace --plugin azure-to-docker-masterThis skill uses the workspace's default tool permissions.
Docker Compose Watch enables automatic hot reload during local development by synchronizing file changes instantly without manual container restarts.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Docker Compose Watch enables automatic hot reload during local development by synchronizing file changes instantly without manual container restarts.
For frameworks with hot reload (React, Next.js, Node.js, Flask). Copies changed files directly into running container.
For compiled languages (Go, Rust, Java) or dependency changes. Rebuilds image and recreates container when files change.
For configuration files requiring restart. Syncs files and restarts container.
services:
frontend:
build: ./frontend
develop:
watch:
- action: sync
path: ./frontend/src
target: /app/src
ignore: [node_modules/, .git/]
- action: rebuild
path: ./frontend/package.json
Start with: docker compose up --watch