Generate a comprehensive influencer vetting report. Use when someone asks to vet, analyze, or review an influencer/creator. Takes a creator profile URL or video URLs and produces a brand safety and content quality report powered by Memories.ai video intelligence.
Scanned 6/7/2026
Install via CLI
openskills install modbender/skill-library-mcp---
name: influencer-report
description: Generate a comprehensive influencer vetting report. Use when someone asks to vet, analyze, or review an influencer/creator. Takes a creator profile URL or video URLs and produces a brand safety and content quality report powered by Memories.ai video intelligence.
---
# Influencer Report Skill
Vet influencers by analyzing their recent videos with Memories.ai V1 + V2 APIs.
## Setup
Required environment variables:
- `MEMORIES_V1_API_KEY` — Memories.ai V1 API key (scraper, library, search)
- `MEMORIES_API_KEY` — Memories.ai V2 API key (MAI transcript, metadata)
## Quick Start
**From a profile URL (auto-scrapes recent videos):**
```bash
python3 scripts/influencer_report.py --handle charlidamelio \
--profile-url "https://www.tiktok.com/@charlidamelio" --scrape-count 5
```
**From direct video URLs:**
```bash
python3 scripts/influencer_report.py --handle creator_name --platform tiktok \
--videos https://tiktok.com/@user/video/1 https://tiktok.com/@user/video/2
```
## Workflow
1. **Scrape** — V1 `/scraper` ingests creator's recent videos from their profile URL
2. **List & Search** — V1 `/list_videos` and `/search` retrieve the ingested content
3. **Analyze** — V2 MAI Transcript API provides visual + audio analysis per video
4. **Metadata** — V2 Metadata API pulls engagement stats (views, likes, comments)
5. **Score & Report** — Content quality scoring + formatted markdown report
## API Endpoints Used
| Step | API | Endpoint |
|------|-----|----------|
| Scrape profile | V1 | `POST /serve/api/v1/scraper` |
| List library | V1 | `POST /serve/api/v1/list_videos` |
| Search library | V1 | `POST /serve/api/v1/search` |
| MAI transcript | V2 | `POST /serve/api/v2/{platform}/video/mai/transcript` |
| Video metadata | V2 | `POST /serve/api/v2/{platform}/video/metadata` |
## Report Format
See `references/report-format.md` for the full template and scoring guide.
No comments yet. Be the first to comment!
Create Mermaid diagrams for flowcharts, sequences, ERDs, and
Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.
Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".
Coordinate a full Paperclip release across engineering verification, npm, GitHub, smoke testing, and announcement follow-up. Use when leadership asks to ship a release, not merely to discuss versioning.
Create agent company packages conforming to the Agent Companies specification (agentcompanies/v1). Use when a user wants to create a new agent company from scratch, build a company around an existing git repo or skills collection, or scaffold a team/department of agents. Triggers on: "create a company", "make me a company", "build a company from this repo", "set up an agent company", "create a team of agents", "hire some agents", or when given a repo URL and asked to turn it into a company. D...