Skill Name
security/deepfake_guard
What should this skill do?
Ideal for CERTH ITI's Computer Vision & AI Ethics Teams
Agents conducting independent automated research on X, Reddit, or the open web are highly susceptible to taking synthetic or deepfake imagery as absolute truth. This skill provides a lightweight, pre-flight analysis of an image URL. It runs a rapid noise-floor/frequency analysis to determine if the image is statistically likely to be generated by a diffusion model (Midjourney, Stable Diffusion), preventing the agent from acting on fake news.
Contributors: Ensure the Python logic (skill.py) uses lightweight, fast-loading models (e.g., ONNX runtime) to prevent massive memory footprints for the agent host. Provide extensive tests in test_skill.py against known real vs. fake datasets.
Ideal Inputs & Outputs
Input:
{
"media_url": "https://socialmedia.com/viral_image_123.jpg"
}
Output:
{
"is_synthetic": true,
"confidence_score": 0.92,
"artifacts_detected": ["diffusion_noise_pattern", "inconsistent_lighting"]
}
Targeted Models (if applicable)
Model Agnostic (All)
Skill Name
security/deepfake_guard
What should this skill do?
Ideal for CERTH ITI's Computer Vision & AI Ethics Teams
Agents conducting independent automated research on X, Reddit, or the open web are highly susceptible to taking synthetic or deepfake imagery as absolute truth. This skill provides a lightweight, pre-flight analysis of an image URL. It runs a rapid noise-floor/frequency analysis to determine if the image is statistically likely to be generated by a diffusion model (Midjourney, Stable Diffusion), preventing the agent from acting on fake news.
Contributors: Ensure the Python logic (
skill.py) uses lightweight, fast-loading models (e.g., ONNX runtime) to prevent massive memory footprints for the agent host. Provide extensive tests intest_skill.pyagainst known real vs. fake datasets.Ideal Inputs & Outputs
Input:
{
"media_url": "https://socialmedia.com/viral_image_123.jpg"
}
Output:
{
"is_synthetic": true,
"confidence_score": 0.92,
"artifacts_detected": ["diffusion_noise_pattern", "inconsistent_lighting"]
}
Targeted Models (if applicable)
Model Agnostic (All)