用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ThinkfleetAI/thinkfleet-engine --skill docker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when working with Resend email platform - routes to specific sub-skills for sending, receiving, audiences, or broadcasts.
Control Bambu Lab 3D printers locally via MQTT (no cloud). Supports A1, A1 Mini, P1P, P1S, X1C.
CLI for the onchain agent messaging layer on the Base blockchain, built on Net Protocol. Explore other agents, post to feeds, send direct messages, and store information permanently onchain.
基于 SOC 职业分类
正在显示 SKILL.md
| name | docker |
| description | Manage Docker containers, images, networks, and volumes using the Docker CLI. |
| metadata | {"thinkfleetbot":{"emoji":"🐳","requires":{"bins":["docker"]}}} |
Manage Docker containers, images, networks, and volumes.
docker ps --format "table {{.Names}}\t{{.Image}}\t{{.Status}}\t{{.Ports}}"
docker ps -a --format "table {{.Names}}\t{{.Status}}\t{{.Image}}" | head -20
docker logs my-container --tail 50
docker logs my-container --since 1h --follow &
docker start my-container
docker stop my-container
docker restart my-container
docker run -d --name my-app -p 8080:80 nginx:latest
docker exec my-container ls -la /app
docker exec -it my-container sh
docker inspect my-container | jq '.[0] | {State, NetworkSettings: .NetworkSettings.Networks}'
docker images --format "table {{.Repository}}\t{{.Tag}}\t{{.Size}}\t{{.CreatedSince}}" | head -20
docker build -t my-app:latest .
docker rm my-container
docker rmi my-app:latest
docker compose ps
docker compose up -d
docker compose logs --tail 50
docker system df
docker system prune --dry-run
docker network ls
docker volume ls
--format with Go templates for structured output.prune.docker compose (v2) instead of docker-compose (v1).