ingest-performance

ingest-performance is a skill for Claude Code from indranilbanerjee/socialforge. It costs 146 tokens per session (900 once invoked), scanned A, original, MIT.

A tool that imports real performance numbers from social platform analytics exports into records for individual posts. It then identifies the month's strongest posts using minimum sample and margin rules.

In plain words
What is it for?
Use it with CSV exports from platforms such as Instagram, LinkedIn, TikTok, or X to record metrics and rank the posts that performed best.
Why use it?
It replaces decisions based on memory or personal impressions with results tied to specific post IDs. Those results can inform the next month's content planning.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the socialforge plugin — 20 skills, 25 commands, 5 agents shipped together

Good fit Use it with CSV exports from platforms such as Instagram, LinkedIn, TikTok, or X to record metrics and rank the posts that performed best.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add indranilbanerjee/socialforge
Claude Code
/plugin install socialforge

Made for: Claude Code.

Or install socialforge, the plugin that ships this one along with the rest of its 20 skills, 25 commands, 5 agents.

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 ingest-performance

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/indranilbanerjee/socialforge/ingest-performance"><img src="https://agentmods.dev/badge/skills/indranilbanerjee/socialforge/ingest-performance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 146 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 900 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.00146 $0.00900
Opus 5 $0.00073 $0.00450
Sonnet 5 $0.00029 $0.00180
Haiku 4.5 $0.00015 $0.00090

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

Security

Grade A, and why

ingest-performance 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 9d 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/ingest-performance/SKILL.md · 71 lines

How it starts

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

/socialforge:ingest-performance — real numbers into the wins rung

/socialforge:ideate-month compounds "what worked last month." Before this skill, that meant whatever someone remembered in the planning call — and memory favors the post that felt good, not the one that performed. This skill turns the platform's own export into the record ideation reads.

Step 1 — Get the export

Ask the user for the analytics export covering the month. Any CSV works if it has a column identifying the post (post_id, post, id) that matches the calendar's post ids, plus whichever metrics the platform provides (impressions/views, likes/reactions, comments, shares/reposts, saves, clicks, follows — header aliases are normalized automatically). If the export keys posts by URL or caption instead of the calendar id, help the user add a post_id column first — matching is by calendar id, deliberately: wins must map back to the topics and pillars that produced them.

Step 2 — Ingest

python ${CLAUDE_PLUGIN_ROOT}/scripts/ingest_performance.py --action ingest \
    --brand {brand} --month {YYYY-MM} --csv {export.csv} --source "{platform} export"
  • Rows matching calendar post ids are stored in output/{brand}/{month}/performance.json (repeat ingests append — one CSV per platform is normal).
  • Unmatched rows are listed in the output, never silently dropped. Show the user the unmatched list; a typo'd id is data lost from the wins rung.
  • Exit 3 = nothing matched. Stop and reconcile ids before proceeding.

Step 3 — Rank the wins

python ${CLAUDE_PLUGIN_ROOT}/scripts/ingest_performance.py --action wins \
    --brand {brand} --month {YYYY-MM}

The ranking is deliberately conservative:

  • Sample floor (default 100 impressions): a post nobody saw cannot be a win, only noise. Below-floor posts are reported as unranked with the reason.
  • Margin rule (default 1.5× the month's median engagement rate): a "win" must beat the month, not merely top a flat list.
  • Unmeasured is not zero: missing impressions → engagement_rate: null, and the post lands in unranked, not at the bottom of the ranking.
  • A flat month returns "status": "no_clear_wins" — report that honestly. Compounding a non-win manufactures a false signal for next month's plan.

Read the full file on GitHub · 71 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. 9d ago First seen · 71 lines · 146 tokens per session scan A 9a01d2dcc07d

Subscribe to this mod's changes

ingest-performance is a skill published in the GitHub repository indranilbanerjee/socialforge (37 stars, last pushed 22d ago), licensed MIT. It adds 146 tokens to every session and 900 once invoked, about $0.0007 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-30.

Related

Other skills, from other repositories

ai-media-generator

A workflow for turning ideas into prompts for AI-generated images, videos, and music across several media platforms. When needed, it can also send those prompts to the chosen platform through browser automation.

Hao0321/ai-media-generator · 380 tokens

demo-shorts

Cut a vertical 9:16 Short (YouTube Shorts, Instagram Reels, TikTok) from a demo video project in one of four named styles — listicle (rapid numbered beats), cohost (split screen with presenter), flashcard (typographic interstitials), or glide (immersive pan). Use when the user asks for a "short", "shorts", "vertical…

mrieck/demoday-claude-plugin · 106 tokens

demo-script

Writing the script and shot list for a demo video, and the demo.json manifest schema. Use when planning what a product video should say and show, writing voiceover narration, structuring scenes, or editing demo.json.

mrieck/demoday-claude-plugin · 47 tokens

demo-assembly

Assembling and rendering a demo video with Remotion and ffmpeg — the timeline, transitions, captions, zoom-to-click, audio ducking, and diagnosing a render that comes out wrong. Use when rendering the final video, customising its look, or fixing timing, black frames or missing audio.

mrieck/demoday-claude-plugin · 64 tokens

demo-capture

Craft and mechanics of capturing software on screen for a demo video — rehearsing a flow, staging a window, the action-script format, pacing to narration, and macOS permissions and coordinates. Use when recording an app, driving a UI for a video, debugging a capture that looks wrong, or when clicks land in the wrong…

mrieck/demoday-claude-plugin · 71 tokens

higgsfield-comic-to-video

Animates comic panels, manga pages, webtoons, illustrated storyboards, and sequential art into video using Higgsfield. Routes to wan26 (primary, I2V — image required) or seedance20 (fallback). Use when the user wants to animate comics, bring illustrations to life, convert manga to video, animate storyboards, or create…

pixelab-ch/higgsfield-skills · 132 tokens