✓ Verified ✍️ Content Creation ✓ Enhanced Data

Image Detection

Skills for analyzing and detecting AI-generated images.

Rating
4.2 (148 reviews)
Downloads
754 downloads
Version
1.0.0

Overview

Skills for analyzing and detecting AI-generated images.

Complete Documentation

View Source →

Image Detection Skills

Skills for analyzing and detecting AI-generated images.

Essential Skills

1. Image Analyzer

Skill ID: image-analyzer

Purpose: Local image analysis without external APIs

Features:

  • EXIF metadata extraction
  • AI artifact detection (weird hands, blurred backgrounds)
  • Visual similarity comparison
  • Reverse image search integration
Installation:
bash
npm install @clawhub/image-analyzer

Configuration:

javascript
{
  "skill": "image-analyzer",
  "settings": {
    "detectArtifacts": true,
    "extractMetadata": true,
    "localOnly": true,
    "checkSignatures": ["DALL-E", "Midjourney", "Stable-Diffusion"]
  }
}

Use Cases: Fast local detection, metadata verification, artifact identification


2. HuggingFace Image Detector

Skill ID: hf-image-detector

Purpose: ML-based AI image detection

Features:

  • Pre-trained models (umm-maybe/AI-image-detector)
  • High accuracy (90-95%)
  • Supports SD, Midjourney, DALL-E
  • Local inference (no API calls)
Installation:
bash
npm install @clawhub/hf-image-detector

Use Cases: High-accuracy detection, privacy-focused analysis


3. Hive Moderation API

Skill ID: hive-api

Purpose: Cloud-based image analysis

Features:

  • AI-generated detection
  • NSFW filtering
  • Object detection
  • Fast inference (500ms)
Installation: API integration via REST

Use Cases: Quick detection, multi-purpose analysis, NSFW filtering


Installation

Via ClawHub

text
https://clawhub.ai/raghulpasupathi/image-detection

Via npm

bash
npm install @raghulpasupathi/image-detection

Configuration Examples

High Accuracy Stack

json
{
  "skills": ["image-analyzer", "hf-image-detector", "hive-api"],
  "votingStrategy": "majority"
}

Privacy-Focused Stack

json
{
  "skills": ["image-analyzer", "hf-image-detector"],
  "externalAPIs": false
}

Fast Detection Stack

json
{
  "skills": ["hive-api"],
  "cacheResults": true
}


For video detection, see VIDEO_DETECTION.md.

Installation

Terminal bash

openclaw install image-detection
    
Copied!

💻Code Examples

**Configuration**:

configuration.js
{
  "skill": "image-analyzer",
  "settings": {
    "detectArtifacts": true,
    "extractMetadata": true,
    "localOnly": true,
    "checkSignatures": ["DALL-E", "Midjourney", "Stable-Diffusion"]
  }
}

### High Accuracy Stack

-high-accuracy-stack.json
{
  "skills": ["image-analyzer", "hf-image-detector", "hive-api"],
  "votingStrategy": "majority"
}

### Privacy-Focused Stack

-privacy-focused-stack.json
{
  "skills": ["image-analyzer", "hf-image-detector"],
  "externalAPIs": false
}

### Fast Detection Stack

-fast-detection-stack.json
{
  "skills": ["hive-api"],
  "cacheResults": true
}

Tags

#image_and-video-generation

Quick Info

Category Content Creation
Model Claude 3.5
Complexity One-Click
Author raghulpasupathi
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install image-detection