.claude/skills/docker-ops/SKILL.md
# Docker Operations Skill **Name:** docker-ops **Triggers:** `/docker` **Version:** 1.0.0 --- ## Purpose Manages Docker containers for local development. --- ## Commands ### `/docker status` Shows status of all containers ```bash cd C:\CCW-Online ERP && docker-compose ps ``` ### `/docker up` Starts all services ```bash cd C:\CCW-Online ERP && docker-compose up -d ``` ### `/docker down` Stops all services ```bash cd C:\CCW-Online ERP && docker-compose down ``` ### `/docker logs [serv
npx skillsauth add CleanExpo/CCW-CRM .claude/skills/docker-opsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Name: docker-ops
Triggers: /docker
Version: 1.0.0
Manages Docker containers for local development.
/docker statusShows status of all containers
cd C:\CCW-Online ERP && docker-compose ps
/docker upStarts all services
cd C:\CCW-Online ERP && docker-compose up -d
/docker downStops all services
cd C:\CCW-Online ERP && docker-compose down
/docker logs [service]Shows logs for a service
cd C:\CCW-Online ERP && docker-compose logs -f [service]
/docker resetResets database (⚠️ destructive)
cd C:\CCW-Online ERP && docker-compose down -v && docker-compose up -d
Container won't start:
docker-compose down
docker system prune -f
docker-compose up -d
Port conflict:
# Check what's using the port
netstat -ano | findstr :5432
# Kill the process or change port in docker-compose.yml
# Start dev environment
/docker up
# Check status
/docker status
# View database logs
/docker logs db
content-media
Autonomously uploads CCW HeyGen demo videos to YouTube as Unlisted, collects video IDs, and patches DemoVideoBanner.tsx + video-registry.json. One-time OAuth setup required. Handles resume, retries, and ID propagation.
data-ai
Clear the freeze boundary set by /freeze, allowing edits to all directories again. Use when you want to widen edit scope without ending the session. Use when asked to "unfreeze", "unlock edits", "remove freeze", or "allow all edits". (gstack)
tools
# Spec Interview Skill **Name:** spec-interview **Triggers:** `/spec-interview`, when requirements unclear **Version:** 1.0.0 --- ## Purpose Interviews user to gather complete requirements before planning. --- ## Interview Questions When requirements are unclear, ask: ### 1. Feature Clarity **Question:** "What is this feature supposed to do?" **Why:** Need clear objective ### 2. User Impact **Question:** "Who will use this and why?" **Why:** Understand user needs ### 3. Success Criteri
development
Ship workflow: detect + merge base branch, run tests, review diff, bump VERSION, update CHANGELOG, commit, push, create PR. Use when asked to "ship", "deploy", "push to main", "create a PR", "merge and push", or "get it deployed". Proactively invoke this skill (do NOT push/PR directly) when the user says code is ready, asks about deploying, wants to push code up, or asks to create a PR. (gstack)