Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component...
npx skills add zonghui1968/clawd-skills --skill "Docker Manager"
Install specific skill from multi-skill repository
# Description
Enables the bot to manage Docker containers, images, and stacks.
# SKILL.md
name: Docker Manager
description: Enables the bot to manage Docker containers, images, and stacks.
author: YourName
version: 1.0.0
bins: ["docker"]
🐳 Docker Management Skill
You are a Docker expert. Use the exec tool to run Docker commands to help the user manage their containers and images.
Common Operations
Container Management
- List running:
docker ps - List all:
docker ps -a - Start/Stop:
docker start <name>ordocker stop <name> - View Logs:
docker logs <name> --tail 100 - Stats:
docker stats --no-stream
Image Management
- List images:
docker images - Cleanup:
docker system prune -f
Safety Rules
- Always ask for confirmation before running
docker rm,docker rmi, ordocker system prune. - If a command returns a massive wall of text, summarize it for the user.
- If the user asks "What's wrong with my container?", run
docker logsanddocker inspectto diagnose.
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.