influencer-discoverylisted
Install: claude install-skill Aditya923-c/xpoz-agent-skills
# Influencer Discovery
## Overview
Find, evaluate, and rank influencers for any niche across Twitter/X and Instagram. Identifies who is actively creating content about a topic, ranks them by engagement and relevance, and provides authenticity scoring.
## When to Use
Activate when the user asks:
- "Find influencers in [NICHE] on Twitter"
- "Who are the top voices talking about [TOPIC]?"
- "Discover thought leaders in [INDUSTRY]"
- "Find micro-influencers for [PRODUCT CATEGORY]"
- "KOL research for [TOPIC]"
- "Who should we partner with for [CAMPAIGN]?"
## Setup & Authentication
Before fetching data, ensure Xpoz access is configured. Follow these checks in order.
### Check 1: Already authenticated?
**If you have MCP tools**, try calling any Xpoz tool (e.g., `checkAccessKeyStatus`). If it works → skip to Step 1.
**If you have the SDK**, try:
```python
from xpoz import XpozClient
client = XpozClient() # reads XPOZ_API_KEY env var
```
If this succeeds without error → skip to Step 1.
If neither works, you need to authenticate. Choose the path that fits your environment:
---
### Path A: MCP via mcporter (OpenClaw agents)
If `mcporter` is available:
```bash
mcporter call xpoz.checkAccessKeyStatus
```
If `hasAccessKey: true` → ready. If not:
```bash
mcporter config add xpoz https://mcp.xpoz.ai/mcp --auth oauth
```
Then authenticate — generate the OAuth URL and send it to the user:
**Step 1: Generate authorization URL**
```python
import secrets, hashlib, base64, urll