XPOZpublic

AI SDK — AI skill for Claude Code

AI community

Xpoz social media intelligence tools for Vercel AI SDK — Twitter/X, Instagram, Reddit, TikTok.

How to install AI SDK

This entry records only its repository, not the path inside it, so there is no exact command to give. Open XPOZpublic/ai-sdk and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What AI SDK does

Xpoz social media intelligence tools for Vercel AI SDK — Twitter/X, Instagram, Reddit, TikTok.

Alternatives in AI

  • Agency Agents — A complete AI agency at your fingertips - From frontend wizards to Reddit community ninjas, from whimsy inject 148k ★
  • Guizang Ppt Skill — AI-agent Skill for generating polished HTML slide decks: editorial magazine and Swiss layouts, image prompts 24.9k ★
  • Generative Media Skills — Multi-modal Generative Media Skills for AI Agents (Claude Code, Cursor, Gemini CLI) 3k ★

README

@xpoz/ai-sdk

Social media intelligence tools for the [Vercel AI SDK](https://sdk.vercel.ai). Access Twitter/X, Instagram, Reddit, and TikTok data directly from your AI agents — no social media API keys required.

Powered by [Xpoz](https://xpoz.ai), the social media intelligence platform.

Installation

npm install @xpoz/ai-sdk ai zod

Quick Start

Get a free access key at [xpoz.ai/get-token](https://xpoz.ai/get-token), then:

import { generateText } from "ai";
import { anthropic } from "@ai-sdk/anthropic";
import { xpozTwitterSearch, xpozInstagramUser } from "@xpoz/ai-sdk";

const result = await generateText({
  model: anthropic("claude-sonnet-4-6"),
  tools: {
    twitterSearch: xpozTwitterSearch({ apiKey: "your-xpoz-key" }),
    instagramUser: xpozInstagramUser({ apiKey: "your-xpoz-key" }),
  },
  prompt: "What are people saying about AI agents on Twitter this week?",
});

Or use `xpozTools()` to get all tools with a shared connection:

import { generateText } from "ai";
import { anthropic } from "@ai-sdk/anthropic";
import { xpozTools } from "@xpoz/ai-sdk";

const result = await generateText({
  model: anthropic("claude-sonnet-4-6"),
  tools: xpozTools({ apiKey: "your-xpoz-key" }),
  prompt:
    "Compare the social media presence of @openai across Twitter, Instagram, and TikTok",
});

You can also set the `XPOZ_API_KEY` environment variable instead of passing `apiKey`.

Available Tools

Twitter/X

Tool Description
xpozTwitterSearch Search posts by keywords, hashtags, or phrases
xpozTwitterUser Get a user profile by username or ID
xpozTwitterUserPosts Get posts by a specific user
xpozTwitterPostComments Get replies to a specific tweet
`xpozTwitterSearch