Directoryahu

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

If granted broadly, the agent could read or write files outside the intended video project or run media-processing commands on unintended inputs.

Why it was flagged

The skill asks for a broad media-production toolchain, including local file access and FFmpeg. This is central to the stated video-generation purpose and is disclosed, but it should be scoped.

Skill content
Attach tools to each agent ... web search ... file read ... image generation API ... ElevenLabs / OpenAI TTS API ... FFmpeg, file system access
Recommendation

Limit file-system access to the project, assets, and output directories, and review generated FFmpeg/API operations before using them on important files.

What this means

Using provider APIs may consume paid quota or send generated narration text to the configured provider account.

Why it was flagged

The workflow expects third-party TTS providers that commonly require account credentials or API keys. The artifacts do not show hardcoded secrets or credential leakage.

Skill content
Tools Required
- ElevenLabs API or OpenAI TTS API
Recommendation

Use project-specific API keys with spending limits where possible, and avoid giving social-platform or unrelated account credentials unless separately reviewed.

What this means

Users may need to manually verify how dependencies and helper scripts are wired before relying on the pipeline.

Why it was flagged

The registry provenance and setup metadata are limited even though the package includes an orchestrator file and references external tooling. This is a transparency/setup note, not evidence of malicious behavior.

Skill content
Source: unknown; Homepage: none; No install spec — this is an instruction-only skill; Code file presence: orchestrator.py
Recommendation

Review the included files, configure dependencies yourself from trusted sources, and avoid running additional unreviewed helper code.

What this means

Story outputs, script text, prompts, file paths, and errors may remain in local state files or logs after the video is generated.

Why it was flagged

The orchestrator intentionally writes pipeline state and logs locally so work can resume after each stage.

Skill content
State persisted to disk after each stage for resume capability ... logging.FileHandler("pipeline.log")
Recommendation

Do not feed private or sensitive material into the pipeline unless you are comfortable with it being stored locally, and delete logs/output state when no longer needed.