xpoz-social-tracking

xpoz-social-tracking is a skill for Claude Code from XPOZpublic/xpoz-cursor-plugin. It costs 86 tokens per session (1,674 once invoked), scanned A, a copy of xpoz-social-tracking, MIT.

A tool for continuously collecting social-media posts and activity that match selected keywords, accounts, Reddit communities, or TikTok hashtags. Xpoz is a social-media intelligence service covering Twitter/X, Instagram, Reddit, and TikTok.

In plain words
What is it for?
Use it to monitor brand mentions, competitors, topics, accounts, subreddits, campaigns, and hashtags across supported platforms.
Why use it?
It avoids relying on one-time searches that can miss older or newly published posts. Ongoing tracking builds a fuller record over time.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

Good fit Use it to monitor brand mentions, competitors, topics, accounts, subreddits, campaigns, and hashtags across supported platforms.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xpozpublic/xpoz-cursor-plugin/xpoz-social-tracking
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 XPOZpublic/xpoz-cursor-plugin --skill xpoz-social-tracking
Clone the repo
git clone --depth 1 https://github.com/XPOZpublic/xpoz-cursor-plugin

Made for: Claude Code.

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 xpoz-social-tracking

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/xpozpublic/xpoz-cursor-plugin/xpoz-social-tracking"><img src="https://agentmods.dev/badge/skills/xpozpublic/xpoz-cursor-plugin/xpoz-social-tracking.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 1,674 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 86% copy Near-identical to another mod 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.01674
Opus 5 $0.00043 $0.00837
Sonnet 5 $0.00017 $0.00335
Haiku 4.5 $0.00009 $0.00167

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

Security

Grade A, and why

xpoz-social-tracking 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 12d 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.

Origin

This is a copy

86% identical to xpoz-social-tracking — 84 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/xpoz/skills/xpoz-social-tracking/SKILL.md · 161 lines

How it starts

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

Social Media Tracking

Overview

Tracking is a best practice for getting more complete data from Xpoz. When you track a keyword, user, subreddit, or hashtag, Xpoz continuously collects data for those items in the background. This means:

  • More complete data: Tracked items accumulate data over time, giving you a fuller picture than one-off queries.
  • Better coverage: Continuous collection captures posts and activity that a single point-in-time query might miss.

You can track four types of items across platforms:

  • Keywords — Track any phrase or topic (e.g., "AI agents", "your brand name"). Xpoz continuously collects posts matching these keywords across the platforms you specify.
  • Users — Track specific accounts (e.g., a competitor, influencer, or your own brand handle). Xpoz collects their posts and activity.
  • Subreddits (Reddit only) — Track entire subreddit communities to monitor discussions.
  • Hashtags (TikTok only) — Track TikTok hashtags to follow trends and campaigns.

When to Use

  • "Track mentions of [BRAND] across social media"
  • "Set up monitoring for [KEYWORD] on Twitter and Reddit"
  • "What keywords am I currently tracking?"
  • "Add @competitor to my tracked users on Instagram"
  • "Monitor #AIagents on TikTok"
  • "Stop tracking [OLD KEYWORD]"
  • "How many tracked items can I add?"

Step 1: Check Current Tracking

First, see what's already being tracked.

Call getTrackedItems

Present results as a table:

Platform Type Phrase
twitter keyword AI agents
instagram user competitor_brand
reddit subreddit machinelearning

Step 2: Add Tracked Items

Supported Types per Platform

Platform keyword user subreddit hashtag
Twitter Yes Yes
Instagram Yes Yes
Reddit Yes Yes Yes
TikTok Yes Yes Yes
Call addTrackedItems with items:
  [
    { "phrase": "AI agents", "type": "keyword", "platform": "twitter" },
    { "phrase": "AI agents", "type": "keyword", "platform": "reddit" },
    { "phrase": "competitor_user", "type": "user", "platform": "instagram" },
    { "phrase": "machinelearning", "type": "subreddit", "platform": "reddit" },
    { "phrase": "aitools", "type": "hashtag", "platform": "tiktok" }
  ]

Read the full file on GitHub · 161 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. 12d ago First seen · 161 lines · 86 tokens per session scan A 10fc1782aa16

Subscribe to this mod's changes

xpoz-social-tracking is a skill published in the GitHub repository XPOZpublic/xpoz-cursor-plugin (4 stars, last pushed 2mo ago), licensed MIT. It adds 86 tokens to every session and 1,674 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to xpoz-social-tracking, differing in 84 lines, and is treated as a copy.