⚡ XActions
📖 Guides & Reference

Skills Reference

Skills are self-contained instruction files that teach an AI assistant how to do one job with XActions. Each is a markdown file with YAML frontmatter, written for a model to read rather than a human: it names the scripts to run, the page to run them on, the arguments that matter, and the mistakes to avoid.

They are how you get from "Claude has 144 tools" to "Claude knows which three of them to use, in what order, for this task."


Using them

With Claude Code

Point Claude at the directory. It reads the frontmatter description of each skill to decide which one applies to your request:

claude "Read skills/follower-monitoring/SKILL.md and find who unfollowed me this week"

With any assistant

Skills are plain markdown. Paste the contents of a SKILL.md into any chat and the assistant has everything it needs for that job:

[paste skills/growth-automation/SKILL.md]

Now set this up for the "AI engineering" niche.

Programmatically

import { readFileSync } from 'node:fs';

const index = JSON.parse(readFileSync('skills/index.json', 'utf8'));
const skill = index.skills.find((s) => s.id === 'follower-monitoring');
const instructions = readFileSync(skill.path, 'utf8');

// Hand `instructions` to your model as a system or user message.

Anatomy of a skill

---
name: growth-automation
description: Automates X/Twitter growth via browser console scripts. Auto-likes
  tweets by keyword/user filters, auto-comments on target users... Use when
  automating Twitter growth, engagement, following, or audience building.
license: Apache-2.0
metadata:
  author: nichxbt
  version: "4.0"
---

# Growth Automation

Browser console scripts for X/Twitter. **Always paste `src/automation/core.js`
first** -- it provides shared config, selectors, utilities, and rate limiting.

## Script Selection

| Goal | File |
|------|------|
| Auto-like timeline tweets | `src/automation/autoLiker.js` |
| Follow users by keyword search | `src/automation/keywordFollow.js` |

The description is the load-bearing field. It is the only thing an assistant reads when deciding whether a skill is relevant, so it has to state both what the skill does and when to reach for it. A description that only says what it does will never get selected.


The catalog

49 skills. Generated from skills/index.json.

Skill What it covers
A2A Multi-Agent Agent-to-Agent protocol integration for multi-agent workflows.
Account Backup Export and backup X/Twitter account data — tweets, likes, bookmarks, followers, and following.
Account Tools Miscellaneous account utilities — view join date, login history, connected accounts, appeal suspensions.
Algorithm Cultivation Trains feed algorithm for niche content, runs 24/7 LLM-powered thought leader engagement.
Analytics & Insights Analyze engagement, hashtags, competitors, best posting times, follower demographics, tweet performance.
Articles & Longform Compose, preview, publish, and manage long-form Articles on X/Twitter (Premium+ feature).
Billing Management Manage XActions subscriptions and billing via Stripe checkout.
Blocking & Muting Mass block, unblock, mute, unmute with bot detection.
Bookmarks Management Organize, export, and bulk-clear bookmarks with auto-tagging.
Business & Ads Brand monitoring, audience insights, competitor analysis, and ad campaign management.
Community Health Monitoring Audit follower quality, engagement authenticity, unfollower patterns, and network efficiency.
Community Management Bulk-join/leave X communities, manage memberships.
Community Notes View, write, rate, and browse Community Notes on posts.
Competitor Intelligence Analyze competitor profiles, content strategy, audience, and engagement patterns.
Content Cleanup Mass unlike, clear reposts/retweets, delete tweets, clear bookmarks and history.
Content Posting Post tweets, threads, polls; schedule posts; create reposts programmatically.
Content Repurposing Identify top tweets and generate repurposed threads, carousels, and variations.
Creator Monetization Ad revenue analytics, subscription management, and creator monetization features.
CRM Management Tag, segment, and track followers and contacts with a built-in CRM.
Delegate Access Add, remove, and manage delegate accounts that can post/like on your behalf.
Direct Messages Send, manage, and automate DMs with personalized bulk messaging and templates.
Discovery & Explore Trending topics, content search, account discovery, and explore page automation.
Engagement & Interaction Auto-like, unlike, reply, bookmark, hide replies, and bulk engagement actions.
Follower Monitoring Detect unfollowers, track follower changes, and set up continuous monitoring.
Graph Analysis Analyze follower/following network graphs — clusters, influencers, bridges, audience segments.
Grok AI Grok AI chat, image generation, tweet analysis, and content creation.
Growth Automation Auto-like by keyword/user, auto-follow engagers, keyword-based following for organic growth.
Lead Generation Find and qualify B2B leads from X conversations using keyword search and profile analysis.
Lists Management Create, populate, and export X/Twitter lists with bulk member management.
Media Studio Navigate X Media Studio, upload media, manage library, view media analytics.
Notifications Management Filter, bulk-manage, and scrape notifications; auto-respond to mentions.
Post Editing Edit existing posts or undo a recently posted tweet (Premium feature).
Premium & Subscriptions Detect Premium plan, verify feature access, and manage subscription features.
Profile Management Update bio, avatar, header image, display name, location, website, and pinned tweet.
Saved Searches Create, manage, and run saved searches on X/Twitter.
Settings & Privacy Manage protected tweets, muted words, connected apps, and notification preferences.
Spaces & Live Join X Spaces, scrape metadata, discover live rooms, and schedule Spaces.
Teams Management Create teams, invite members, assign roles, and collaborate on automation.
Timeline Viewing Switch timelines (For You/Following), auto-scroll, and scrape timeline data.
Topic Management Browse, follow, and unfollow X Topics; manage followed topics.
Twitter Scraping Scrape profiles, followers, tweets, media, and bookmarks without API access.
Unfollow Management Mass unfollow everyone, only non-followers, with smart time-based rules and whitelists.
Video Downloading Download videos and GIFs from X/Twitter posts — single video, batch, or via CLI.
Viral Thread Generation Research trending topics and generate high-engagement thread content.
Webhooks Create, manage, and test webhooks for automation job notifications.
X Pro Management Navigate X Pro (TweetDeck), set up monitoring columns, manage multi-column view.
x402 Payments Enable x402 crypto payment protocol for XActions API access — multi-chain, multi-currency.
XActions CLI Command-line interface for scraping, MCP server config, and automation — npm install -g xactions.
XActions MCP Server 144 MCP tools for AI agents to automate X/Twitter (scrape, post, engage, analyze).

Writing one

  1. Copy skills/TEMPLATE.md to skills/your-skill/SKILL.md.
  2. Write the frontmatter. Spend the effort on description: name the job and the trigger. Compare "Manages bookmarks" with "Organize, export, and bulk-clear bookmarks with auto-tagging. Use when someone asks to clean up, export, or categorize their saved posts."
  3. Write the body for a model, not a person. Concrete file paths, exact page URLs, real argument values. Skip the motivation and the history.
  4. Lead with a selection table mapping goals to files, so the assistant picks correctly before it reads any detail.
  5. Add the entry to skills/index.json.

Rules that keep a skill useful:

  • Reference real files. Every path in a skill must exist. A skill that sends an agent to a missing script is worse than no skill.
  • State the preconditions. "Paste core.js first", "must be on x.com/USERNAME/followers", "requires a logged-in session."
  • Say what not to do. Rate limits, dry-run defaults, and destructive steps belong in the skill, because the agent will not infer them.
  • No placeholders. No TODO, no invented arguments.

  • MCP Setup — the 144 tools skills drive
  • Browser Scripts — what most skills reference
  • Agents — the autonomous agent that consumes skills
  • AGENTS.md — integration notes for AI coding assistants

⚡ Free and open source

No API keys, no monthly fees, no signup. Star the repo if it saved you a subscription.

View on GitHub