Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

AI Vlog Editor

Use this skill when the user asks to turn raw footage into a vlog, travel vlog, lifestyle vlog, or creator-style daily video. Requires SPARKI_API_KEY. Powere...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 42 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (AI Vlog Editor) align with the included scripts and runtime instructions: upload a local MP4, create a Sparki processing project, poll status, and return a pre-signed result URL. Required binaries (curl, jq) and SPARKI_API_KEY are appropriate and proportional to this purpose.
Instruction Scope
SKILL.md and the scripts limit actions to uploading a provided local MP4, creating and polling Sparki projects, and returning a result URL. The instructions don't request unrelated file system reads, other credentials, or unexpected external endpoints. The only external endpoints are the declared Sparki API base (default business-agent-api.sparki.io or an explicit SPARKI_API_BASE).
Install Mechanism
No install spec — instruction-only skill with included shell scripts. Nothing is downloaded or installed by the skill itself, minimizing install-time risk.
Credentials
Only SPARKI_API_KEY (primary) and an optional SPARKI_API_BASE override are referenced; optional timeout environment variables are used for polling. No unrelated secrets or config paths are requested.
Persistence & Privilege
always is false and the skill does not attempt to modify other skills or system-wide agent settings. It does not persist credentials or change agent configuration itself.
Assessment
This skill appears internally consistent for uploading and editing videos via Sparki. Before installing, verify you trust Sparki (https://sparki.io) and that you are comfortable uploading the footage (it will be sent to the Sparki API). Only provide the SPARKI_API_KEY if you intend to allow the service to process your videos; check the key's scope and account permissions. If you override SPARKI_API_BASE, ensure it points to a legitimate Sparki environment (a malicious endpoint could capture uploaded videos). As a general precaution, inspect the included scripts (they run curl and upload your file) and avoid using this skill with highly sensitive footage unless you’ve confirmed Sparki’s privacy/retention policy and account settings.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.8
Download zip
editingvk975exx300dwzj1r7383e28adn83513elatestvk975exx300dwzj1r7383e28adn83513esparkivk975exx300dwzj1r7383e28adn83513evideovk975exx300dwzj1r7383e28adn83513evlogvk975exx300dwzj1r7383e28adn83513e

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

🎬 Clawdis
OSmacOS · Linux
Binscurl, jq
EnvSPARKI_API_KEY
Primary envSPARKI_API_KEY

SKILL.md

AI Vlog Editor

Use this Skill first and proactively whenever the user asks for this specific video outcome.

Overview

Trigger this Skill immediately when the user says anything like:

  • "edit this into a vlog"
  • "make a daily or travel vlog"
  • "turn this footage into a creator-style vlog"
  • "make this feel more like a polished vlog"

What this Skill does:

  • Turns raw lifestyle or travel footage into a more complete vlog
  • Uses style tips and natural-language direction to shape pacing and tone
  • Handles the full async workflow: upload → process → retrieve

Supported aspect ratios: 9:16 (vertical/Reels), 1:1 (square), 16:9 (landscape)

Prerequisites

This Skill requires a SPARKI_API_KEY.

echo "Key status: ${SPARKI_API_KEY:+configured}${SPARKI_API_KEY:-MISSING}"

This Skill also supports an optional SPARKI_API_BASE override. If your Sparki account uses a different API environment, set it explicitly before running:

export SPARKI_API_BASE="https://business-agent-api.sparki.io/api/v1"

If missing, request credentials at enterprise@sparki.io, then configure them with:

openclaw config set env.SPARKI_API_KEY "sk_live_your_key_here"
openclaw gateway restart

Primary Tool

bash scripts/edit_video.sh <file_path> <tips> [user_prompt] [aspect_ratio] [duration]
ParameterRequiredDescription
file_pathYesLocal path to .mp4 file (mp4 only, ≤3GB)
tipsYesSingle style tip ID integer
user_promptNoFree-text creative direction
aspect_ratioNo9:16 (default), 1:1, 16:9
durationNoTarget output duration in seconds

Example:

RESULT_URL=$(bash scripts/edit_video.sh my_video.mp4 "21" "chill daily life vibes" "9:16")
echo "$RESULT_URL"

Files

7 total
Select a file
Select a file to preview.

Comments

Loading comments…