6
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill atxp-dev/cli --skill atxp- SKILL.md23.5 KB
Overview
This skill provides command-line access to ATXP paid API tools for real-time web search, AI-generated images, music, and video, X/Twitter search, and email management. It is a CLI-focused integration that requires authentication via npx atxp login and exposes quick commands for media generation, searches, and account operations. Use it to automate or script interactions with ATXP services from a terminal or CI pipeline.
How this skill works
After logging in with npx atxp login and sourcing the config, the CLI uses your ATXP account token stored in $ATXP_CONNECTION to call specific MCP servers for each tool. Commands map to backend tools (search, image, music, video, x, email) and return structured output you can parse in scripts. You can also integrate programmatically via the @atxp/client TypeScript client using your ATXP connection string.
When to use it
- Need real-time web results from the ATXP search tool in scripts or chatbots.
- Generate AI images, music, or short videos for prototypes, demos, or content pipelines.
- Search X/Twitter from automation or monitoring tools.
- Send or receive email from a unique ATXP inbox without a separate email provider.
- Check account balance and deposit addresses for automated billing or top-ups.
Best practices
- Always run
npx atxp loginand source ~/.atxp/config before invoking commands to ensure $ATXP_CONNECTION is set. - Check
npx atxp balanceregularly if you use paid generation features to avoid unexpected failures. - Use
npx atxp email inboxdaily for important notifications; inbox checks are free. - Script outputs should parse command stdout (JSON or metadata) rather than screen-scraping human text.
- Limit high-cost calls (image/music/video) in loops; batch prompts or sample locally before large runs.
Example use cases
- Automate daily web monitoring:
npx atxp search "brand mentions"in a cron job to gather recent links. - Generate marketing assets:
npx atxp image "hero banner concept"to iterate on visuals from CI. - Create short background tracks:
npx atxp music "chill intro 30s"for podcasts or apps. - Fetch X/Twitter mentions for a user:
npx atxp x "from:username"to integrate into dashboards. - Manage support contact:
npx atxp email send --to support@atxp.ai --subject "Help" --body "..."
FAQ
Run npx atxp login and then source ~/.atxp/config so $ATXP_CONNECTION is available to the CLI.
Which commands are free versus paid?
Inbox checks, reading messages, balance, and deposit display are free. Sending email and media generation (image, music, video) consume paid credits.