tiktok-post-analyzer

tiktok-post-analyzer is a skill for Claude Code, Codex from 1vanBilous/checkviral-skills. It costs 62 tokens per session (1,683 once invoked), scanned B, original, MIT.

A tool for examining a TikTok post from its link by downloading it, selecting important video frames, and analysing its content. TikTok is a short-video and slideshow platform.

In plain words
What is it for?
Use it to study a video's opening hook, story structure, monetization approach, or the quality of its engagement.
Why use it?
It turns a post into a structured breakdown, so you do not have to manually inspect the video and infer how it works.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it to study a video's opening hook, story structure, monetization approach, or the quality of its engagement.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/1vanbilous/checkviral-skills/tiktok-post-analyzer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add 1vanBilous/checkviral-skills --skill tiktok-post-analyzer
Clone the repo
git clone --depth 1 https://github.com/1vanBilous/checkviral-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tiktok-post-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/skills/1vanbilous/checkviral-skills/tiktok-post-analyzer/github.svg)](https://agentmods.dev/skills/1vanbilous/checkviral-skills/tiktok-post-analyzer)
Your own site
<a href="https://agentmods.dev/skills/1vanbilous/checkviral-skills/tiktok-post-analyzer"><img src="https://agentmods.dev/badge/skills/1vanbilous/checkviral-skills/tiktok-post-analyzer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tiktok-post-analyzer

Your own site · 80×15
<a href="https://agentmods.dev/skills/1vanbilous/checkviral-skills/tiktok-post-analyzer"><img src="https://agentmods.dev/badge/skills/1vanbilous/checkviral-skills/tiktok-post-analyzer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,683 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00062 $0.01683
Opus 5 $0.00031 $0.00842
Sonnet 5 $0.00012 $0.00337
Haiku 4.5 $0.00006 $0.00168

Measured 12d ago against content hash ebfc899b0f24, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade B, and why

tiktok-post-analyzer scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/fetch-post.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

# Linux: sudo apt-get install -y nodejs npm
skills/tiktok-post-analyzer/SKILL.md · 97 lines

How it starts

The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.

TikTok Post Analyzer

Given a TikTok post link, this skill downloads the post, extracts key frames, and produces a forensic content analysis. You (Claude) are the analyst — there is no external LLM call.

Prerequisite check (required)

Before proposing any commands, check whether node, ffmpeg, and patchright (plus its Chromium binary) are available:

node --version
ffmpeg -version
NODE_PATH="$(npm root -g)" node -e "require.resolve('patchright')" && npx patchright install --dry-run chromium

If any of them is missing, pause and ask the user to install them. Provide these steps verbatim:

# Node.js (skip if `node --version` already works)
#   macOS:  brew install node
#   Linux:  sudo apt-get install -y nodejs npm

# ffmpeg
#   macOS:  brew install ffmpeg
#   Linux:  sudo apt-get install -y ffmpeg

# patchright + its Chromium browser
npm install patchright
npx patchright install chromium

Only once node, ffmpeg, and patchright are all present, proceed with the TikTok analysis.

Step 1 — Fetch the post

Run the helper script with the user's URL:

NODE_PATH="$(npm root -g)" node .claude/skills/tiktok-post-analyzer/scripts/fetch-post.mjs "<TIKTOK_URL>"

The NODE_PATH="$(npm root -g)" prefix lets the script resolve the globally-installed patchright (Node doesn't search the global node_modules otherwise).

The script drives patchright (stealth Chromium) — it needs the cached Chromium binary, so the first run may be slow. It:

  • Resolves short links (vm./vt.tiktok.com) to the canonical post URL.
  • Opens the post page and reads __UNIVERSAL_DATA_FOR_REHYDRATION__webapp.video-detail.
  • For videos: downloads the file and extracts frames at 5%, 25%, 50%, 70%, 90% of duration with ffmpeg. For slideshows: downloads the images.
  • Opens the creator's profile page to read the bio link and recent post stats.
  • Opens the bio link itself to capture its page title + description (key account-monetization signal).

Read the full file on GitHub · 97 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 97 lines · 62 tokens per session scan B ebfc899b0f24

Subscribe to this mod's changes

tiktok-post-analyzer is a skill published in the GitHub repository 1vanBilous/checkviral-skills (2 stars, last pushed 2mo ago), licensed MIT. It adds 62 tokens to every session and 1,683 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

baoyu-youtube-transcript

A tool for downloading the written captions, subtitles, chapter information, speaker labels, and cover image from a YouTube video using its URL or ID.

JimLiu/baoyu-skills · 107 tokens

baoyu-comic

A tool for creating original educational comics that explain knowledge or ideas through multiple illustrated panels. It supports different art styles and tones and can create several comics in one batch.

JimLiu/baoyu-skills · 61 tokens

baoyu-diagram

Create professional, dark-themed SVG diagrams of any type — architecture diagrams, flowcharts, sequence diagrams, structural diagrams, mind maps, timelines, illustrative/conceptual diagrams, and more. Use this skill whenever the user asks for any kind of technical or conceptual diagram, visualization of a system…

JimLiu/baoyu-skills · 146 tokens

baoyu-danger-gemini-web

Generates images and text via reverse-engineered Gemini Web API. Supports text generation, image generation from prompts, reference images for vision input, and multi-turn conversations. Use when other skills need image generation backend, or when user requests "generate image with Gemini", "Gemini text generation"…

JimLiu/baoyu-skills · 74 tokens

understand-figma

Analyze a Figma file via the Figma REST API and generate an interactive design knowledge graph (pages, screens, components, component sets, instances, design tokens) with a kind:"design" dashboard.

Egonex-AI/Understand-Anything · 47 tokens

playwright-cli

Automates browser interactions for testing and validating your own web applications using playwright-cli. Use when you need terminal-first browser control for navigation, form filling, screenshots, tracing, bound browser sessions, debugging, or generating Playwright test code. Only use against applications you own or…

testdino-hq/playwright-skill · 64 tokens