Communitygithub.com

xiaowu89/skill-function

name: image-audit

skill-function란 무엇인가요?

skill-function is a Claude Code agent skill that name: image-audit.

지원 대상Claude Code~Codex CLI~Cursor
npx skills add xiaowu89/skill-function

즐겨 사용하는 AI에게 물어보기

이 에이전트 스킬이 미리 로드된 새 채팅을 엽니다.

문서

Image Content Moderation

Audit images for adult, political, and violent content using the nx-mcp-audit MCP service.

Setup

Configure the MCP server and API key in .mcp.json:

{
  "mcpServers": {
    "nx-mcp-audit": {
      "type": "url",
      "url": "https://mcp.api-inference.modelscope.net/da16b3f65bdb4e/mcp",
      "env": {
        "NX_API_KEY": "your-api-key-here"
      }
    }
  }
}

Restart Claude Code after configuring.

Usage

  1. Collect images from a folder path or URL
  2. Compress large images to fit gateway limits (sharp auto-install)
  3. Call the nx_img_audit MCP tool for each image
  4. Summarize results in a table with pass, block, or fail status
  5. Provide recommendations for blocked images

Response Fields

  • safe: true for pass, false for blocked
  • source: audit engine (e.g. wechat)
  • summary: aggregate stats (total, pass, block, error)

관련 스킬