tfcbot/agent-video-team · Archived

editor-overlay

>- Burn TikTok-safe text overlays onto videos through Vidjutsu with configurable font size, stroke thickness, and top, center, or bottom positioning.

First seen Apr 12, 2026

Installation

$ npx skills add tfcbot/agent-video-team --skill editor-overlay

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from tfcbot/agent-video-team · top by installs.

npx skills add tfcbot/agent-video-team

Browse all from tfcbot/agent-video-team

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,524 B
  • docs SUMMARY.md 168 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Editor — Overlay

Use the synchronous Vidjutsu overlay endpoint. Production base: https://api.vidjutsu.ai; raw requests require Authorization: Bearer <VIDJUTSUAPIKEY>.

vidjutsu overlay --videoUrl "$VIDEO_URL" --text 'Follow for more tips' --position bottom

For numeric customization, call the API directly so the values remain JSON numbers:

curl -sS -X POST https://api.vidjutsu.ai/v1/overlay \
  -H "Authorization: Bearer $VIDJUTSU_API_KEY" \
  -H 'Content-Type: application/json' \
  -d "{\"videoUrl\":\"$VIDEO_URL\",\"text\":\"Follow for more tips\",\"position\":\"bottom\",\"fontSize\":48,\"strokeThickness\":2}"

Request fields:

Field Required Contract
videoUrl yes Public HTTPS video URL
text yes Overlay text; \n creates line breaks
position no top, center, or bottom; defaults to bottom
fontSize no Integer pixels; defaults to 4% of video height
strokeThickness no Integer 0–10; defaults to 2

The response is { "id": "ovl_...", "resultUrl": "https://..."; }. Use resultUrl for later captioning or QA.

Overlay is included in the subscription and limited to 50 calls/day. Vidjutsu does not render animated captions; use the explicitly external /editor-captions workflow only when requested.