xpoz-getting-started

xpoz-getting-started is a skill for Claude Code from XPOZpublic/xpoz-agent-skills. It costs 77 tokens per session (2,101 once invoked), scanned A, original, MIT.

A setup guide for Xpoz, a social-media intelligence service covering Twitter/X, Instagram, Reddit, and TikTok without requiring separate social-media API keys.

In plain words
What is it for?
Use it when connecting Xpoz to an AI agent, Python or TypeScript application, or command-line workflow, and when checking what Xpoz can do.
Why use it?
It explains how to connect an account, verify access, configure tracking, and choose an integration method.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; mentions Claude Code.

Part of the xpoz plugin — 14 skills shipped together

Good fit Use it when connecting Xpoz to an AI agent, Python or TypeScript application, or command-line workflow, and when checking what Xpoz can do.

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

Made for: Claude Code.

Or install xpoz, the plugin that ships this one along with the rest of its 14 skills.

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-getting-started

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/xpozpublic/xpoz-agent-skills/xpoz-getting-started"><img src="https://agentmods.dev/badge/skills/xpozpublic/xpoz-agent-skills/xpoz-getting-started.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,101 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.00077 $0.02101
Opus 5 $0.00039 $0.01051
Sonnet 5 $0.00015 $0.00420
Haiku 4.5 $0.00008 $0.00210

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

Security

Grade A, and why

xpoz-getting-started 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 2d 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/xpoz-getting-started/SKILL.md · 242 lines

How it starts

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

Getting Started with Xpoz

Overview

Xpoz is a social media intelligence platform providing access to Twitter/X, Instagram, Reddit, and TikTok data — no social media API keys required. Available via MCP tools, Python SDK, TypeScript SDK, and CLI.

When to Use

Activate when the user asks:

  • "Help me set up Xpoz"
  • "What's my Xpoz account status?"
  • "Connect to Xpoz social media data"
  • "What can I do with Xpoz?"
  • "Set up tracking for my brand"
  • "I'm new to Xpoz, where do I start?"

Step 1: Choose Your Integration Path

Situation Path
Using an MCP-compatible AI agent (Claude Code, Cursor, Windsurf, etc.) MCP
Building a Python application Python SDK
Building a TypeScript/Node.js application TypeScript SDK
Running from terminal CLI

Quick check — already set up?

  • MCP: call checkAccessKeyStatus — if it returns hasAccessKey: true, skip to Step 4
  • SDK: try importing XpozClient — if no error, skip to Step 4

Step 2: Set Up Authentication

Recommended: a free access key

Real results need a real key: get a free access key (free tier, up to 75K results, no credit card), then follow your integration path (MCP, SDK, or CLI, below). MCP connections sign in with the same account via OAuth on first tool call.

MCP

Add the Xpoz MCP server to your agent's config. The server URL is https://mcp.xpoz.ai/mcp. Most MCP clients handle OAuth automatically on first tool call.

Example for Claude Code (~/.claude.json):

{
  "mcpServers": {
    "xpoz": {
      "url": "https://mcp.xpoz.ai/mcp",
      "transport": "streamable-http"
    }
  }
}

For other MCP clients, consult your agent's documentation for how to add an MCP server by URL.

Python SDK

pip install xpoz

Ask the user:

"Go to https://xpoz.ai/get-token (free, no credit card) and paste the key."

WAIT for the user to reply with the key. Do not proceed until they respond.

from xpoz import XpozClient
client = XpozClient("THE_KEY_FROM_USER")

Read the full file on GitHub · 242 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. 2d ago Changed · -10 lines scan B → A 0e2565c86fe0
  2. 3d ago Changed · +1 lines 0ebeb68c57f3
  3. 12d ago First seen · 251 lines · 77 tokens per session scan B d30400b11c4a

Subscribe to this mod's changes

xpoz-getting-started is a skill published in the GitHub repository XPOZpublic/xpoz-agent-skills (15 stars, last pushed 3d ago), licensed MIT. It adds 77 tokens to every session and 2,101 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-30.

Related

Other skills, from other repositories

git-workflow

This skill should be used when the user asks to "create git commit", "manage branches", "follow git workflow", "use Conventional Commits", "handle merge conflicts", or asks about git branching strategies, version control best practices, pull request workflows. Provides comprehensive Git workflow guidance for team…

Galaxy-Dawn/claude-scholar · 64 tokens

daily-paper-generator

Use when the user asks to generate daily paper digests on a general topic. This skill supports both arXiv and bioRxiv (or either one), then produces structured Chinese/English summaries for selected papers.

Galaxy-Dawn/claude-scholar · 47 tokens

codex-autoresearch

Run autonomous, measurable experiments in a Git repository: change one hypothesis, verify a numeric metric, keep improvements, and revert failures. Use when the user wants Codex to keep iterating toward a numeric target in the foreground or as a detached background run. Do not use for ordinary one-shot coding…

leo-lilinxiao/codex-autoresearch · 80 tokens

clipboard

Copy text to clipboard with optional rich formatting. Triggers on "copy to clipboard", "copy that", "pbcopy", "copy formatted", "copy rich text".

CodeAlive-AI/ai-driven-development · 36 tokens

neo4j-modeling-skill

Design, review, and refactor Neo4j graph data models. Use when choosing node labels vs relationship types vs properties, migrating relational/document schemas to graph, detecting anti-patterns (generic labels, supernodes, missing constraints), designing intermediate nodes for n-ary relationships, enforcing schema with…

neo4j-contrib/neo4j-skills · 152 tokens

git-commit

A Git assistant for reviewing local changes and creating conventional commit messages, which are standardized summaries of code changes. It can also run Git hooks and push the commit.

huangwb8/skills · 88 tokens