reelminner

reelminner is a skill for Claude Code, Codex from ilovekushgola/reelminner. It costs 86 tokens per session (2,328 once invoked), scanned A, original, MIT.

A skill and MCP toolset for scraping Instagram Reels and optionally collecting each owner's follower count. It uses Playwright, a browser-automation library, with the user's logged-in session and cookies.

In plain words
What is it for?
Use it to process Reel URLs and extract usernames, music, likes, comments, plays, statuses and optional follower counts, with job and session management.
Why use it?
It automates collecting Reel metadata and profile information while reusing an existing Instagram login session.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to process Reel URLs and extract usernames, music, likes, comments, plays, statuses and optional follower counts, with job and session management.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ilovekushgola/reelminner/reelminner
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 ilovekushgola/reelminner --skill reelminner
Clone the repo
git clone --depth 1 https://github.com/ilovekushgola/reelminner

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 reelminner

README.md
[![agentmods](https://agentmods.dev/badge/skills/ilovekushgola/reelminner/reelminner/github.svg)](https://agentmods.dev/skills/ilovekushgola/reelminner/reelminner)
Your own site
<a href="https://agentmods.dev/skills/ilovekushgola/reelminner/reelminner"><img src="https://agentmods.dev/badge/skills/ilovekushgola/reelminner/reelminner/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 reelminner

Your own site · 80×15
<a href="https://agentmods.dev/skills/ilovekushgola/reelminner/reelminner"><img src="https://agentmods.dev/badge/skills/ilovekushgola/reelminner/reelminner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,328 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00086 $0.02328
Opus 5 $0.00043 $0.01164
Sonnet 5 $0.00017 $0.00466
Haiku 4.5 $0.00009 $0.00233

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

Security

Grade A, and why

reelminner scanned grade A with 0 findings 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 10d ago.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/reelminner/SKILL.md · 205 lines

How it starts

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

Instagram Reel Scraper

Scrape Instagram reels using the user's own logged-in session (cookies). Two phases: Phase 1 scrapes each reel (username, music, likes, status), Phase 2 (optional, default on) visits each owner's profile to fetch the followers count.

Prerequisites

  • storage_state.json in the project folder (created by logging in once via the GUI, or by import_cookies). If missing, tools return session_ready: false and every reel comes back session_expired.
  • Playwright Chromium installed (python -m playwright install chromium).
  • Respect rate limits: keep delay >= 1, workers <= 3 for large batches.

MCP Tools

scrape_reels

Signature: scrape_reels(urls: list[str], workers?: int = 2, delay?: float = 1.0, headless?: bool = true, with_profiles?: bool = true) -> dict

Scrapes the given reel URLs. Returns:

{
  "results": [
    {
      "reel_url": "https://www.instagram.com/reel/ABC/",
      "username": "shubham__travels",
      "followers": "32K",
      "music_title": "Dilbar (From \"Satyameva Jayate\")",
      "music_artist": "Neha Kakkar",
      "likes": "12,345",
      "comments": "89",
      "plays": "1.2M",
      "status": "ok"
    }
  ]
}
Param Type Default Notes
urls list[str] Required. Full reel URLs (any Instagram URL form is normalized).
workers int 2 Parallel browser windows, 1-8. Use 2-3 for big batches.
delay float 1.0 Seconds between reels per worker. Raise to 2-3 on rate limits.
headless bool true Agents should keep true (no visible browsers).
with_profiles bool true Phase 2: fetch owner profile + followers. Adds time per reel.

Status values: ok, timeout (retry already happened once), error, session_expired (cookies stale — ask the user to re-login), unavailable (deleted/private reel — expected).

Example call (via MCP client):

{
  "urls": ["https://www.instagram.com/reel/ABC/", "https://www.instagram.com/reel/DEF/"],
  "with_profiles": true,
  "delay": 2
}

Read the full file on GitHub · 205 lines

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. 10d ago First seen · 205 lines · 86 tokens per session scan A 65293b4f59d7

Subscribe to this mod's changes

reelminner is a skill published in the GitHub repository ilovekushgola/reelminner (0 stars, last pushed 17d ago), licensed MIT. It adds 86 tokens to every session and 2,328 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. 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