Dockerps
Analysis
This Docker monitoring skill is mostly purpose-aligned, but it includes a force cleanup command that can delete Docker containers/images without confirmation.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
cmd_cleanup() {
docker container prune -f 2>/dev/null && docker image prune -f 2>/dev/null && echo Cleaned
}The cleanup command uses Docker prune with -f, removing stopped containers and pruning images without Docker's normal confirmation prompt.
Required binaries (all must exist): none; Required binaries (at least one): none
The dependency contract is incomplete because SKILL.md says Docker is required and the included script invokes Docker and python3, but the registry metadata declares no required binaries.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
docker ps -a --format 'table {{.Names}}\t{{.Status}}\t{{.Ports}}' ... docker logs --tail ${3:-50} $2The script operates through the user's local Docker CLI and can enumerate containers and read container logs using whatever Docker access the user already has.
