轻湖NSFW检测

AI Agent Skill

让你的编码 Agent 用一条命令检测图片 NSFW 内容。纯 Python 标准库——无需 pip 安装。它从本站自装并保持更新。

当前版本: 1.3.0
1 · 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.py

2 · 验证

python3 ~/.claude/skills/nsfwdetector/nsfwdetector.py --version
# nsfwdetector-skill 1.3.0
python3 ~/.claude/skills/nsfwdetector/nsfwdetector.py detect --help

3 · Quick start

detect a local image

python3 ~/.claude/skills/nsfwdetector/nsfwdetector.py detect /path/to/image.jpg

detect a remote image

python3 ~/.claude/skills/nsfwdetector/nsfwdetector.py detect --url "https://example.com/pic.jpg" --json

higher 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 Agent:请直接抓取下方 markdown 原文而不是本页——它们是唯一事实源。/docs/skill.md

完整 API 文档