Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Detect and remove AI fingerprints from AI-generated images. Strip metadata, add film grain, recompress, and bypass AI image detectors. Works with Midjourney, DALL-E, Stable Diffusion, Flux output. --- name: humanize-image description: Detect and remove AI fingerprints from AI-generated images. Strip metadata, add film grain, recompress, and bypass AI image detectors. Works with Midjourney, DALL-E, Stable Diffusion, Flux output. allowed-tools: - Read - Write - Edit - exec --- AI Image De-Fingerprinting Skill Comprehensive CLI for removing AI detection patterns from AI-generated images. Transforms detectable AI Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/24/2026
Best For
humanize-image is best for for workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Detect and remove AI fingerprints from AI-generated images. Strip metadata, add film grain, recompress, and bypass AI image detectors. Works with Midjourney, DALL-E, Stable Diffusion, Flux output. --- name: humanize-image description: Detect and remove AI fingerprints from AI-generated images. Strip metadata, add film grain, recompress, and bypass AI image detectors. Works with Midjourney, DALL-E, Stable Diffusion, Flux output. allowed-tools: - Read - Write - Edit - exec --- AI Image De-Fingerprinting Skill Comprehensive CLI for removing AI detection patterns from AI-generated images. Transforms detectable AI
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 24, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
Voidborne D
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/voidborne-d/deai-image.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Voidborne D
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# Basic processing (medium strength) python scripts/deai.py input.png # Specify output file python scripts/deai.py input.png -o output.jpg # Adjust processing strength python scripts/deai.py input.png --strength heavy # Only strip metadata (fastest) python scripts/deai.py input.png --no-metadata # Batch process directory python scripts/deai.py input_dir/ --batch # Pure Bash version (no Python needed) bash scripts/deai.sh input.png output.jpg
text
Input → Metadata Strip → Grain Addition → Color Adjustment → Blur/Sharpen → Resize Cycle → JPEG Recompress → Final Metadata Clean → Output
bash
# Default medium strength python scripts/deai.py ai_portrait.png # Light processing for high-quality images python scripts/deai.py artwork.png --strength light -o clean_artwork.jpg # Heavy processing for stubborn detection python scripts/deai.py midjourney_out.png --strength heavy
bash
# Process entire directory python scripts/deai.py ./ai_images/ --batch -o ./cleaned/ # Batch with specific strength python scripts/deai.py ./gallery/*.png --batch --strength heavy
bash
# Only strip metadata (instant, no quality loss) python scripts/deai.py image.jpg --no-metadata
bash
# No Python/Pillow needed, pure ImageMagick + ExifTool bash scripts/deai.sh input.png output.jpg # Specify strength bash scripts/deai.sh input.png output.jpg heavy
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Detect and remove AI fingerprints from AI-generated images. Strip metadata, add film grain, recompress, and bypass AI image detectors. Works with Midjourney, DALL-E, Stable Diffusion, Flux output. --- name: humanize-image description: Detect and remove AI fingerprints from AI-generated images. Strip metadata, add film grain, recompress, and bypass AI image detectors. Works with Midjourney, DALL-E, Stable Diffusion, Flux output. allowed-tools: - Read - Write - Edit - exec --- AI Image De-Fingerprinting Skill Comprehensive CLI for removing AI detection patterns from AI-generated images. Transforms detectable AI
name: humanize-image description: Detect and remove AI fingerprints from AI-generated images. Strip metadata, add film grain, recompress, and bypass AI image detectors. Works with Midjourney, DALL-E, Stable Diffusion, Flux output. allowed-tools:
Comprehensive CLI for removing AI detection patterns from AI-generated images. Transforms detectable AI images into human-camera-like photographs using multiple processing techniques.
Supported Models: Midjourney, DALL-E 3, Stable Diffusion, Flux, Firefly, Leonardo, and more.
# Basic processing (medium strength)
python scripts/deai.py input.png
# Specify output file
python scripts/deai.py input.png -o output.jpg
# Adjust processing strength
python scripts/deai.py input.png --strength heavy
# Only strip metadata (fastest)
python scripts/deai.py input.png --no-metadata
# Batch process directory
python scripts/deai.py input_dir/ --batch
# Pure Bash version (no Python needed)
bash scripts/deai.sh input.png output.jpg
AI-generated images contain multiple detection layers:
Our de-fingerprinting pipeline applies 7 transformation stages:
Input → Metadata Strip → Grain Addition → Color Adjustment →
Blur/Sharpen → Resize Cycle → JPEG Recompress → Final Metadata Clean → Output
| Stage | Purpose | Technique | |-------|---------|-----------| | Metadata Strip | Remove EXIF/C2PA/JUMBF tags | ExifTool | | Grain Addition | Add camera sensor noise | Poisson/Gaussian noise overlay | | Color Adjustment | Break color distribution patterns | Contrast/saturation/brightness tweak | | Blur/Sharpen | Disrupt edge detection patterns | Gaussian blur + unsharp mask | | Resize Cycle | Introduce resampling artifacts | Downscale → upscale with Lanczos | | JPEG Recompress | Add compression artifacts | Quality 75 → 95 cycle | | Final Clean | Ensure no metadata leakage | ExifTool re-run |
Choose strength based on detection risk vs quality tradeoff:
| Strength | Description | Success Rate | Quality Loss |
|----------|-------------|--------------|--------------|
| light | Minimal processing, preserve quality | 35-45% | Very low |
| medium | Balanced (default) | 50-65% | Low |
| heavy | Aggressive processing | 65-80% | Medium |
Success rate = percentage of images passing common AI detectors (Hive, Illuminarty, AI or Not)
# Default medium strength
python scripts/deai.py ai_portrait.png
# Light processing for high-quality images
python scripts/deai.py artwork.png --strength light -o clean_artwork.jpg
# Heavy processing for stubborn detection
python scripts/deai.py midjourney_out.png --strength heavy
# Process entire directory
python scripts/deai.py ./ai_images/ --batch -o ./cleaned/
# Batch with specific strength
python scripts/deai.py ./gallery/*.png --batch --strength heavy
# Only strip metadata (instant, no quality loss)
python scripts/deai.py image.jpg --no-metadata
# No Python/Pillow needed, pure ImageMagick + ExifTool
bash scripts/deai.sh input.png output.jpg
# Specify strength
bash scripts/deai.sh input.png output.jpg heavy
bash scripts/check_deps.sh
This will verify all dependencies and provide installation commands if missing.
Debian/Ubuntu:
sudo apt update
sudo apt install -y imagemagick libimage-exiftool-perl python3 python3-pip
pip3 install Pillow numpy
macOS:
brew install imagemagick exiftool python3
pip3 install Pillow numpy
Fedora/RHEL:
sudo dnf install -y ImageMagick perl-Image-ExifTool python3-pip
pip3 install Pillow numpy
python scripts/deai.py <input> [options]
Arguments:
input Input image file or directory (batch mode)
Options:
-o, --output FILE Output file path (default: input_deai.jpg)
--strength LEVEL Processing strength: light|medium|heavy (default: medium)
--no-metadata Only strip metadata, skip image processing
--batch Process entire directory
-q, --quiet Suppress progress output
-v, --verbose Show detailed processing steps
Examples:
python scripts/deai.py image.png
python scripts/deai.py image.png -o clean.jpg --strength heavy
python scripts/deai.py folder/ --batch
bash scripts/deai.sh <input> <output> [strength]
Arguments:
input Input image file
output Output file path
strength light|medium|heavy (default: medium)
Examples:
bash scripts/deai.sh input.png output.jpg
bash scripts/deai.sh input.png output.jpg heavy
| Detector | Method | Bypass Rate | |----------|--------|-------------| | Hive Moderation | Deep learning model | 50-70% (medium) | | Illuminarty | Computer vision analysis | 60-75% (medium) | | AI or Not | Binary classification | 55-70% (medium) | | SynthID | Pixel-level watermark | 35-50% (heavy) | | C2PA Verify | Metadata check | 100% (metadata strip) |
❌ Not a Silver Bullet:
❌ Limitations:
✅ What It DOES Do:
Process Image:
python scripts/deai.py ai_image.png -o clean.jpg --strength medium
Test on Multiple Detectors:
If Still Detected:
--strength heavyQuality Check:
Edit scripts/deai.py to adjust parameters:
# Noise strength (line ~80)
noise = np.random.normal(0, 3, img_array.shape) # Increase 3 → 5 for more grain
# Contrast adjustment (line ~95)
enhancer.enhance(1.05) # Increase 1.05 → 1.08 for stronger effect
# JPEG quality (line ~120)
img.save(temp_path, "JPEG", quality=80) # Decrease 80 → 70 for more compression
# Step 1: De-fingerprint
python scripts/deai.py ai_gen.png -o step1.jpg
# Step 2: Add subtle texture overlay (GIMP/Photoshop)
# (Manual step)
# Step 3: Re-strip metadata
exiftool -all= step1_edited.jpg
medium strength (good balance)light (preserve quality)heavy for stress testing⚠️ Use Responsibly:
This tool is intended for:
DO NOT use for:
Legal Risks:
You are responsible for compliance with applicable laws and terms of service.
# Install ExifTool
sudo apt install libimage-exiftool-perl # Debian/Ubuntu
brew install exiftool # macOS
pip3 install Pillow numpy
# Edit /etc/ImageMagick-7/policy.xml
# Change: <policy domain="coder" rights="none" pattern="PNG" />
# To: <policy domain="coder" rights="read|write" pattern="PNG" />
# Pre-resize before processing
magick large.png -resize 2048x2048\> resized.png
python scripts/deai.py resized.png
# Use light strength
python scripts/deai.py input.png --strength light
# Test dependency check
bash scripts/check_deps.sh
# Test single image (verbose)
python scripts/deai.py test_images/sample.png -v
# Test batch mode
mkdir test_output
python scripts/deai.py test_images/ --batch -o test_output/
Improvements welcome! Focus areas:
Detection Research:
Open Source Projects:
Detection Tools:
Version: 1.0.0
License: MIT (for educational/research use)
Maintainer: voidborne-d
Last Updated: 2026-02-23
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/snapshot"
curl -s "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/contract"
curl -s "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/voidborne-d-deai-image/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/voidborne-d-deai-image/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/voidborne-d-deai-image/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T01:49:07.700Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "for",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:for|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Voidborne D",
"href": "https://github.com/voidborne-d/deai-image",
"sourceUrl": "https://github.com/voidborne-d/deai-image",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:44:09.672Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:44:09.672Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/voidborne-d-deai-image/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to humanize-image and adjacent AI workflows.