A skill to help you plan, script, record, edit and publish social media videos

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill fits a video-creation workflow, but it stores an account token locally and sets up background reminder agents that can use that token and message channels later.

Install only if you trust this Humeo integration with a persistent account token and background reminders. Use a limited/revocable PAT, verify the reminder channel, inspect OpenClaw crons, and remove `~/.videoclaw_personal_mcp_token` or rotate the PAT when you no longer need the skill.

Findings (5)

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

A pasted PAT may allow the agent and later background tasks to act on the user's Humeo account until the token is revoked or removed.

Why it was flagged

The skill collects an account token through chat and persists it locally for reuse. File mode 600 and masking help, but this is still high-impact credential handling that is not reflected in the declared requirements.

Skill content
if token is missing/invalid, ask user to paste the PAT directly in chat ... OpenClaw agent must write the token to `~/.videoclaw_personal_mcp_token` ... set permission mode `600`
Recommendation

Use a least-privilege, revocable PAT if available, verify the saved file permissions, and remove or rotate the token when you stop using the skill.

What this means

Reminder agents may run later without the user present, call Humeo APIs, prepare handoff links, mark reminders, and send messages.

Why it was flagged

The skill defines autonomous recurring behavior that creates future agent turns. Those future agents read the stored PAT and perform account and messaging actions outside the active user session.

Skill content
Runs on every heartbeat cycle (~30 min). ... Create a one-shot cron using `CronCreate` ... `"kind": "agentTurn"` ... `Read ~/.videoclaw_personal_mcp_token`
Recommendation

Only enable the heartbeat/calendar reminder behavior if you want background automation; inspect and remove OpenClaw crons when no longer needed.

What this means

If the preferred notification channel or session routing is wrong, recording or handoff links could be shown in an unintended place.

Why it was flagged

The reminder cron passes information and links across notification channels and a main webchat session. This is purpose-aligned for reminders, but users should know recording links may be delivered through those channels.

Skill content
Send one warm message to BOTH channels: (a) deliver via Telegram announce ... (b) also call sessions_send with sessionKey 'agent:main:main' to post the same message to webchat. Include ... handoffUrl as a clickable link.
Recommendation

Confirm the preferred reminder channel in USER.md and avoid putting sensitive topics into reminders unless the notification channel is trusted.

What this means

Previous recordings or transcript excerpts may influence new scripts and be sent back to the Humeo API as context.

Why it was flagged

The skill may reuse excerpts from prior interview and hook transcripts as style context for new scripts. This is aligned with matching the user's voice, but it involves reusing prior personal content.

Skill content
For tone continuity, fetch transcript excerpts via `GET|POST /api/mcp/interviews/transcripts/context`, then pass compact context as `transcriptText`.
Recommendation

Ask the agent not to use prior transcript context for sensitive projects, or use exclusions where available.

What this means

The agent can change Humeo calendar and video-editing state, and may prepare publishable outputs.

Why it was flagged

The skill can mutate edit state, calendar items, and render outputs through Humeo APIs. The artifacts generally frame these actions as part of the video workflow and often require user direction.

Skill content
`POST /api/mcp/edits/apply` — apply an edit via natural language instruction ... `PATCH /api/mcp/calendar/{id}` ... `DELETE /api/mcp/calendar/{id}` ... `POST /api/mcp/renders/request`
Recommendation

Review previews and confirm destructive-looking or public-facing actions, especially publishing, calendar deletion, and final rendering.