/algorithm-cultivation
Trains an X/Twitter account's algorithmic feed to surface niche-relevant content and positions the account as a thought leader. Browser scripts for manual operation, Persona Engine for identity management, and 24/7 Algorithm Builder with LLM-powered engagement via Puppeteer. Use
$ npx -y skills add nirholas/XActions --skill algorithm-cultivation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/algorithm-cultivation
Context preview
The summary Claude sees to decide when to auto-load this skill.
Trains an X/Twitter account's algorithmic feed to surface niche-relevant content and positions the account as a thought leader. Browser scripts for manual operation, Persona Engine for identity management, and 24/7 Algorithm Builder with LLM-powered engagement via Puppeteer. Use
SKILL.md
algorithm-cultivation.SKILL.mdname: algorithm-cultivation
description: Trains an X/Twitter account's algorithmic feed to surface niche-relevant content and positions the account as a thought leader. Browser scripts for manual operation, Persona Engine for identity management, and 24/7 Algorithm Builder with LLM-powered engagement via Puppeteer. Use when a user wants to build their algorithm, cultivate their feed for a niche, grow a fresh account, become a thought leader, or run automated engagement with AI-generated content.
license: Apache-2.0
metadata:
author: nichxbt
version: "4.0"
Algorithm Cultivation & Thought Leadership
Train your X/Twitter algorithm for a specific niche. Three approaches:
1. **Browser script** -- paste into DevTools console for manual sessions 2. **CLI + Persona Engine** -- create personas and run from the command line 3. **24/7 Algorithm Builder** -- headless Puppeteer + LLM running continuously
Quick Reference
| Goal | Solution | |------|----------| | Create a persona (CLI) | `xactions persona create` | | Run 24/7 with LLM (CLI) | `xactions persona run <id>` | | Check persona status | `xactions persona status <id>` | | Browser console (with core.js) | `src/automation/algorithmBuilder.js` | | Browser console (standalone) | `scripts/thoughtLeaderCultivator.js` | | Browser console (algorithm trainer) | `src/automation/algorithmTrainer.js` | | Persona Engine (Node.js module) | `src/personaEngine.js` | | Algorithm Builder (Node.js module) | `src/algorithmBuilder.js` |
Core Concepts
- **Persona** -- identity config: niche, activity pattern, engagement strategy, topics
- **Session** -- one period of activity (search, browse, engage, post)
- **Strategy** -- engagement limits (aggressive/moderate/conservative/thoughtleader)
- **Activity pattern** -- human-like schedule (night-owl/early-bird/nine-to-five/always-on/weekend-warrior)
Algorithm Builder -- `src/algorithmBuilder.js`
24/7 headless automation: Puppeteer + stealth + OpenRouter LLM.
import { startAlgorithmBuilder } from './algorithmBuilder.js';
await startAlgorithmBuilder({
personaId: 'persona_1234',
authToken: 'your_auth_token',
headless: true,
dryRun: false,
maxSessions: 0, // 0 = infinite
});Requires `OPENROUTER_API_KEY` env var for LLM-generated comments and posts.
Algorithm Trainer -- `src/automation/algorithmTrainer.js`
Browser console script for manual training sessions. Requires `src/automation/core.js` pasted first.
Training Phases (cycles through all 8)
1. Search top tweets for niche keywords 2. Search latest tweets for niche keywords 3. Follow people from search results 4. Engage with home feed (like/reply) 5. Visit influencer profiles 6. Browse random profiles in niche 7. Explore page browsing 8. Idle dwell time (human-like pauses)
Controls
- `stopTrainer()` -- Stop training
- `trainerStatus()` -- Current phase, actions taken, rate limits
- `trainerReset()` -- Reset counters
Intensity Presets
| Preset | Actions/hour | Daily cap | |--------|-------------|-----------| | chill | 10-15 | 100 | | normal | 20-30 | 300 | | active | 40-60 | 500 |
Strategy Guide
Fresh account (week 1-2)
1. Create a persona with `xactions persona create` or configure algorithmTrainer manually 2. Use conservative/chill intensity -- X flags aggressive new accounts 3. Focus on phases 1-2 (search) and 7 (explore) to signal interests 4. Follow 5-10 niche accounts per day manually 5. Like 20-30 niche tweets per day
Established account pivoting niches
1. Aggressively engage with new niche content for 1-2 weeks 2. Use `src/automation/algorithmTrainer.js` on `active` intensity 3. Unfollow accounts from the old niche gradually with `src/automation/smartUnfollow.js` 4. The algorithm typically adjusts within 3-7 days of consistent signals
Running 24/7 with LLM
1. Set `OPENROUTER_API_KEY` for AI-generated replies 2. `xactions persona create` -- configure niche, strategy, schedule 3. `xactions persona run <id>` -- starts headless Puppeteer session 4. Monitor: `xactions persona status <id>` 5. Cost estimate: ~$0.50-2.00/day depending on model and activity level
Environment Variables
| Variable | Purpose | |----------|---------| | `OPENROUTER_API_KEY` | Required for LLM-generated comments and posts | | `XACTIONS_SESSION_COOKIE` | X auth token (alternative to `--token` flag) |
Detailed References
Load these on demand for deeper context:
- **Persona Engine details** -- `skills/algorithm-cultivation/references/persona-engine.md`
- **Browser scripts** -- `skills/algorithm-cultivation/references/browser-scripts.md`
- **Algorithm internals** -- `skills/algorithm-cultivation/references/algorithm-internals.md`
- **Research: algorithm internals** -- `docs/research/algorithm-cultivation.md`
- **Research: LLM architecture** -- `docs/research/llm-powered-thought-leader.md`
Notes
- Browser scripts require navigating to x.com first
- `algorithmBuilder.js` and `algorithmTrainer.js` require pasting `src/automation/core.js` first
- `thoughtLeaderCultivator.js` is standalone (no dependencies)
- Default engagement strategy: 1-3s delays between actions
- Fresh accounts should start with conservative strategy for 1-2 weeks
Read more
name: algorithm-cultivation description: Trains an X/Twitter account's algorithmic feed to surface niche-relevant content and positions the account as a thought leader. Browser scripts for manual operation, Persona Engine for identity management, and 24/7 Algorithm Builder with LLM-powered engagement via Puppeteer. Use when a user wants to build their algorithm, cultivate their feed for a niche, grow a fresh account, become a thought leader, or run automated engagement with AI-generated content. license: Apache-2.0 metadata: author: nichxbt version: "4.0"
Algorithm Cultivation & Thought Leadership
Train your X/Twitter algorithm for a specific niche. Three approaches:
1. **Browser script** -- paste into DevTools console for manual sessions 2. **CLI + Persona Engine** -- create personas and run from the command line 3. **24/7 Algorithm Builder** -- headless Puppeteer + LLM running continuously
Quick Reference
| Goal | Solution | |------|----------| | Create a persona (CLI) | `xactions persona create` | | Run 24/7 with LLM (CLI) | `xactions persona run <id>` | | Check persona status | `xactions persona status <id>` | | Browser console (with core.js) | `src/automation/algorithmBuilder.js` | | Browser console (standalone) | `scripts/thoughtLeaderCultivator.js` | | Browser console (algorithm trainer) | `src/automation/algorithmTrainer.js` | | Persona Engine (Node.js module) | `src/personaEngine.js` | | Algorithm Builder (Node.js module) | `src/algorithmBuilder.js` |
Core Concepts
- **Persona** -- identity config: niche, activity pattern, engagement strategy, topics
- **Session** -- one period of activity (search, browse, engage, post)
- **Strategy** -- engagement limits (aggressive/moderate/conservative/thoughtleader)
- **Activity pattern** -- human-like schedule (night-owl/early-bird/nine-to-five/always-on/weekend-warrior)
Algorithm Builder -- `src/algorithmBuilder.js`
24/7 headless automation: Puppeteer + stealth + OpenRouter LLM.
import { startAlgorithmBuilder } from './algorithmBuilder.js';
await startAlgorithmBuilder({
personaId: 'persona_1234',
authToken: 'your_auth_token',
headless: true,
dryRun: false,
maxSessions: 0, // 0 = infinite
});Requires `OPENROUTER_API_KEY` env var for LLM-generated comments and posts.
Algorithm Trainer -- `src/automation/algorithmTrainer.js`
Browser console script for manual training sessions. Requires `src/automation/core.js` pasted first.
Training Phases (cycles through all 8)
1. Search top tweets for niche keywords 2. Search latest tweets for niche keywords 3. Follow people from search results 4. Engage with home feed (like/reply) 5. Visit influencer profiles 6. Browse random profiles in niche 7. Explore page browsing 8. Idle dwell time (human-like pauses)
Controls
- `stopTrainer()` -- Stop training
- `trainerStatus()` -- Current phase, actions taken, rate limits
- `trainerReset()` -- Reset counters
Intensity Presets
| Preset | Actions/hour | Daily cap | |--------|-------------|-----------| | chill | 10-15 | 100 | | normal | 20-30 | 300 | | active | 40-60 | 500 |
Strategy Guide
Fresh account (week 1-2)
1. Create a persona with `xactions persona create` or configure algorithmTrainer manually 2. Use conservative/chill intensity -- X flags aggressive new accounts 3. Focus on phases 1-2 (search) and 7 (explore) to signal interests 4. Follow 5-10 niche accounts per day manually 5. Like 20-30 niche tweets per day
Established account pivoting niches
1. Aggressively engage with new niche content for 1-2 weeks 2. Use `src/automation/algorithmTrainer.js` on `active` intensity 3. Unfollow accounts from the old niche gradually with `src/automation/smartUnfollow.js` 4. The algorithm typically adjusts within 3-7 days of consistent signals
Running 24/7 with LLM
1. Set `OPENROUTER_API_KEY` for AI-generated replies 2. `xactions persona create` -- configure niche, strategy, schedule 3. `xactions persona run <id>` -- starts headless Puppeteer session 4. Monitor: `xactions persona status <id>` 5. Cost estimate: ~$0.50-2.00/day depending on model and activity level
Environment Variables
| Variable | Purpose | |----------|---------| | `OPENROUTER_API_KEY` | Required for LLM-generated comments and posts | | `XACTIONS_SESSION_COOKIE` | X auth token (alternative to `--token` flag) |
Detailed References
Load these on demand for deeper context:
- **Persona Engine details** -- `skills/algorithm-cultivation/references/persona-engine.md`
- **Browser scripts** -- `skills/algorithm-cultivation/references/browser-scripts.md`
- **Algorithm internals** -- `skills/algorithm-cultivation/references/algorithm-internals.md`
- **Research: algorithm internals** -- `docs/research/algorithm-cultivation.md`
- **Research: LLM architecture** -- `docs/research/llm-powered-thought-leader.md`
Notes
- Browser scripts require navigating to x.com first
- `algorithmBuilder.js` and `algorithmTrainer.js` require pasting `src/automation/core.js` first
- `thoughtLeaderCultivator.js` is standalone (no dependencies)
- Default engagement strategy: 1-3s delays between actions
- Fresh accounts should start with conservative strategy for 1-2 weeks
⚡ The Complete X/Twitter Automation Toolkit — Scrapers, MCP server for AI agents (Claude/GPT), CLI, browser scripts. No API fees. Open source. Unfollow people who don't follow back. Monitor real-time analytics. Auto follow, like, comment, scrape, without API. Follow Bot. Like bot. Grow your account automatically.
Repo: nirholas/XActions
Other skills on xactions.
- /a2a-multi-agent
Turn XActions into an A2A-compatible agent that can discover, communicate with, and delegate tasks to other AI agents using Google's Agent-to-Agent protocol.
Open skill - /account-backup
Export and backup your X/Twitter account data — tweets, likes, bookmarks, followers, and following — as downloadable JSON. Also triggers X's official data archive download. Use when users want to backup, export, or archive their X account data.
Open skill - /account-tools
Miscellaneous account utilities — view join date, login history, connected accounts, appeal suspension, QR code sharing, share/embed tweets, upload contacts, and calculate account age. Use when users need account info tools not covered by other skills.
Open skill - /analytics-insights
Analyze X/Twitter engagement, hashtags, competitors, best posting times, follower demographics, tweet performance, viral detection, content calendar gaps, A/B testing, and engagement leaderboards. Browser console scripts for data-driven X optimization. Use when users want
Open skill - /articles-longform
Compose, preview, publish, and manage long-form Articles on X/Twitter. Premium+ feature. Includes article creation, formatting, media insertion, and performance tracking. Use when users want to write, publish, manage, or analyze X Articles.
Open skill - /billing-management
Manage XActions subscriptions and billing — view plans, start a Stripe checkout, open the billing portal, or cancel a subscription. Use when users want to upgrade, downgrade, or manage their XActions subscription.
Open skill

