AI Agent Skill
Let your coding agent check images for NSFW content with one command. Pure Python stdlib — no pip installs. It self-installs from this site and stays up to date.
Current version: 1.3.01 · Install
mkdir -p ~/.claude/skills/nsfwdetector && cd ~/.claude/skills/nsfwdetector \
&& curl -fsSL https://nsfwdetector.litelake.com/skill/SKILL.md -o SKILL.md \
&& curl -fsSL https://nsfwdetector.litelake.com/skill/nsfwdetector.py -o nsfwdetector.py \
&& chmod +x nsfwdetector.py2 · Verify
python3 ~/.claude/skills/nsfwdetector/nsfwdetector.py --version
# nsfwdetector-skill 1.3.0
python3 ~/.claude/skills/nsfwdetector/nsfwdetector.py detect --help3 · Quick start
detect a local image
python3 ~/.claude/skills/nsfwdetector/nsfwdetector.py detect /path/to/image.jpgdetect a remote image
python3 ~/.claude/skills/nsfwdetector/nsfwdetector.py detect --url "https://example.com/pic.jpg" --jsonhigher quota with an API key (optional)
export NSFWDETECTOR_API_KEY=nsk_live_xxxx # per-account quota
python3 ~/.claude/skills/nsfwdetector/nsfwdetector.py detect /path/to/image.jpg🤖 AI agents: fetch the raw markdown instead of this page — the files below are the single source of truth./docs/skill.md