From 6eb85e9ed1c5288d5c7454b5e5fe8b89a06ac84b Mon Sep 17 00:00:00 2001 From: Emilio Amaya Date: Mon, 26 Jan 2026 13:37:03 -0500 Subject: [PATCH] Add ATXP Agent Skill for Claude Code Implements skill following Anthropic's Agent Skills standard for teaching AI assistants how to use ATXP tools (search, image, music, video, x). Co-Authored-By: Claude Opus 4.5 --- skills/atxp/SKILL.md | 61 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 skills/atxp/SKILL.md diff --git a/skills/atxp/SKILL.md b/skills/atxp/SKILL.md new file mode 100644 index 0000000..5e47468 --- /dev/null +++ b/skills/atxp/SKILL.md @@ -0,0 +1,61 @@ +--- +name: atxp +description: Access ATXP paid API tools for web search, AI image generation, music creation, video generation, and X/Twitter search. Use when users need real-time web search, AI-generated media (images, music, video), or X/Twitter search. Requires authentication via `npx atxp login`. +--- + +# ATXP Tools + +Access ATXP's paid API tools via CLI. + +## Authentication + +```bash +# Check if authenticated +echo $ATXP_CONNECTION + +# If not set, login: +npx atxp login +source ~/.atxp/config +``` + +## Commands + +| Command | Description | +|---------|-------------| +| `npx atxp search ` | Real-time web search | +| `npx atxp image ` | AI image generation | +| `npx atxp music ` | AI music generation | +| `npx atxp video ` | AI video generation | +| `npx atxp x ` | X/Twitter search | + +## Usage + +1. Verify `$ATXP_CONNECTION` is set +2. Run the appropriate command +3. Parse and present results + +## Programmatic Access + +```typescript +import { atxpClient, ATXPAccount } from '@atxp/client'; + +const client = await atxpClient({ + mcpServer: 'https://search.mcp.atxp.ai', + account: new ATXPAccount(process.env.ATXP_CONNECTION), +}); + +const result = await client.callTool({ + name: 'search_search', + arguments: { query: 'your query' }, +}); +``` + +## MCP Servers + +| Server | Tool | +|--------|------| +| `search.mcp.atxp.ai` | `search_search` | +| `image.mcp.atxp.ai` | `image_create_image` | +| `music.mcp.atxp.ai` | `music_create` | +| `video.mcp.atxp.ai` | `create_video` | +| `x-live-search.mcp.atxp.ai` | `x_live_search` |