agentsclimarketplace

Xpoz social tracking

Skill XPOZpublic/xpoz-clawhub-skills/xpoz-social-tracking

OpenClaw (ClawHub) skills for Xpoz — social search, brand monitoring, and influencer discovery for AI agents across Twitter/X, Instagram, Reddit & TikTok

Install
npx -y skills add XPOZpublic/xpoz-clawhub-skills --skill xpoz-social-tracking

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Set up and manage continuous social media tracking across Twitter, Instagram, Reddit, and TikTok. Add, remove, and view tracked keywords, users, subreddits, and hashtags. Use when asked to track mentions, monitor brands, set up tracking, view tracked items, or stop tracking.

SKILL.md

5.7 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

Social Media Tracking

Set up continuous social media monitoring across Twitter, Instagram, Reddit, and TikTok.

Tracked items are crawled regularly in the background, giving you more complete data than one-off queries.

Setup

Run xpoz-setup skill. Verify: mcporter call xpoz.checkAccessKeyStatus

Step 1: Check Current Tracking

mcporter call xpoz.getTrackedItems

Present results as a table:

PlatformTypePhrase
twitterkeywordAI agents
instagramusercompetitor_brand
redditsubredditmachinelearning

Step 2: Add Tracked Items

Supported Types per Platform

Platformkeywordusersubreddithashtag
TwitterYesYes
InstagramYesYes
RedditYesYesYes
TikTokYesYesYes
mcporter call xpoz.addTrackedItems 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"}
]'

Call mcporter call xpoz.getAccountDetails to check available tracked item slots before adding.

Step 3: Remove Tracked Items

mcporter call xpoz.removeTrackedItems items='[{"phrase":"old keyword","type":"keyword","platform":"twitter"}]'

Call getTrackedItems first to see exact phrases and platforms before removing.

Tracking Item Format

FieldTypeDescriptionValid Values
phrasestringThe keyword, username, subreddit name, or hashtag to trackAny string
typestringWhat kind of item"keyword", "user", "subreddit" (Reddit only), "hashtag" (TikTok only)
platformstringWhich platform"twitter", "instagram", "reddit", "tiktok"

Common Workflows

Track a Brand Across All Platforms

mcporter call xpoz.addTrackedItems items='[
  {"phrase":"YourBrand","type":"keyword","platform":"twitter"},
  {"phrase":"YourBrand","type":"keyword","platform":"instagram"},
  {"phrase":"YourBrand","type":"keyword","platform":"reddit"},
  {"phrase":"YourBrand","type":"keyword","platform":"tiktok"},
  {"phrase":"yourbrand","type":"user","platform":"twitter"},
  {"phrase":"yourbrand","type":"user","platform":"instagram"}
]'

Track Keywords for Market Research

mcporter call xpoz.addTrackedItems items='[
  {"phrase":"AI agents","type":"keyword","platform":"twitter"},
  {"phrase":"AI agents","type":"keyword","platform":"reddit"},
  {"phrase":"AI agents","type":"keyword","platform":"tiktok"},
  {"phrase":"LLM tools","type":"keyword","platform":"twitter"},
  {"phrase":"LLM tools","type":"keyword","platform":"reddit"}
]'

Monitor a Competitor

mcporter call xpoz.addTrackedItems items='[
  {"phrase":"competitor_handle","type":"user","platform":"twitter"},
  {"phrase":"competitor_handle","type":"user","platform":"instagram"},
  {"phrase":"CompetitorName","type":"keyword","platform":"reddit"}
]'

Track a Hashtag Campaign on TikTok

mcporter call xpoz.addTrackedItems items='[
  {"phrase":"yourcampaign","type":"hashtag","platform":"tiktok"},
  {"phrase":"campaignvariant","type":"hashtag","platform":"tiktok"},
  {"phrase":"your campaign","type":"keyword","platform":"twitter"}
]'

Set Up Subreddit Monitoring

mcporter call xpoz.addTrackedItems items='[
  {"phrase":"machinelearning","type":"subreddit","platform":"reddit"},
  {"phrase":"artificial","type":"subreddit","platform":"reddit"},
  {"phrase":"LocalLLaMA","type":"subreddit","platform":"reddit"}
]'

Notes

  • Tracking vs one-shot queries: Tracking sets up continuous data collection for more comprehensive results. One-shot queries search existing cached data and may miss recent activity. Track items you care about for ongoing, complete data; use one-shot queries for ad-hoc research.
  • Data completeness: Tracked items are crawled regularly, giving you more comprehensive data than untracked queries. This is especially impactful for fast-moving topics or competitive monitoring.
  • Data availability: Tracked data accumulates over time. New tracked items won't have historical data — they start collecting from when you add them.

See Also

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.