tfcbot/agent-video-team · Archived

critic

Analyze video and image content through Vidjutsu Watch for quality checks, verification, and deep analysis before publishing.

First seen Apr 12, 2026

Installation

$ npx skills add tfcbot/agent-video-team --skill critic

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,499 B
  • docs SUMMARY.md 139 B

History

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

SKILL.md

Critic

Use Vidjutsu Watch for quality analysis. The production API base is https://api.vidjutsu.ai; raw calls require bearer auth. Watch is synchronous, limited to 50 requests/day, and included in the subscription.

Quality check

vidjutsu watch --mediaUrl "$MEDIA_URL" --prompt 'Return only JSON: {"score": number, "issues": [{"severity": "minor"|"major"|"critical", "description": string}]}. Score face consistency, artifacts, motion, and audio sync.'

The API response envelope is:

{"response":{"score":8,"issues":[]}}

Read model output from response; do not expect score at the top level.

Verification

vidjutsu watch --mediaUrl "$MEDIA_URL" --prompt 'Return only JSON describing whether this video matches: <description>. Include matches:boolean and discrepancies:string[].'

Deep analysis

vidjutsu watch --mediaUrl "$MEDIA_URL" --prompt 'Return only JSON with hook, format, pacing, transitions, CTA, and tags.'

Rules

  • Supply a fetchable media URL, not an Instagram or TikTok page URL. Stage

social sources first with the Vidjutsu download endpoint.

  • Parse and validate response against the schema requested in the prompt.
  • If a video fails twice, change the generation prompt before retrying.
  • Run quality QA on every final video before publishing.