GifHorse

ReviewAudited by ClawScan on May 1, 2026.

Overview

GifHorse is a coherent, user-directed GIF-making skill, but users should notice that it installs an external CLI, indexes local video dialogue, and can optionally send GIFs via iMessage.

Before installing, make sure you trust the external GifHorse GitHub repository and are comfortable indexing the chosen video folders. Use explicit paths rather than broad folders if privacy matters, and treat iMessage sending options as actions that should require your direct confirmation.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing the skill depends on external project code that was not included in the submitted artifact set.

Why it was flagged

The documented install path pulls and installs code from GitHub without a pinned commit in the provided artifacts. This is expected for installing the GifHorse CLI, but users should recognize the supply-chain dependency.

Skill content
git clone https://github.com/Coyote-git/gifhorse.git ~/gifhorse && cd ~/gifhorse && python3 -m venv venv && source venv/bin/activate && pip install -e .
Recommendation

Install only if you trust the GitHub repository, and preferably review the repository or pin a known commit before running the install command.

What this means

Private video dialogue may become searchable and persist locally in GifHorse’s database.

Why it was flagged

The skill is designed to index dialogue from a local video library into a searchable database. This is central to the purpose, but it can create a persistent searchable record of private media dialogue.

Skill content
Find quotes across your entire video library instantly
Recommendation

Transcribe only folders you intend to index, understand where the database is stored, and use the documented remove/status commands to manage retained entries.

What this means

If used, the skill may send GIFs through the user's messaging account to a configured or specified phone number.

Why it was flagged

The skill documents an option to send generated GIFs via iMessage, which uses the user's messaging capability. This is disclosed and purpose-aligned, but it can send content to another person.

Skill content
gifhorse create "quote" 1 --send-to "+15551234567"
Recommendation

Confirm the recipient and content before using --send or --send-to, and avoid allowing unattended use of the sending option.