⚡ Engagement Manager
All-in-one engagement toolkit: like, unlike, reply, bookmark, and manage interactions from a single interface.
📋 What It Does
This script provides the following capabilities:
- Automated operation — Runs directly in your browser console on x.com
- Configurable settings — Customize behavior via the CONFIG object
- Real-time progress — Shows live status updates with emoji-coded logs
- Rate limiting — Built-in delays to respect X/Twitter's rate limits
- Data export — Results exported as JSON/CSV for further analysis
Use cases:
- All-in-one engagement toolkit: like, unlike, reply, bookmark, and manage interactions from a single interface.
- Automate repetitive engagement tasks on X/Twitter
- Save time with one-click automation — no API keys needed
- Works in any modern browser (Chrome, Firefox, Edge, Safari)
⚠️ Important Notes
Use responsibly! All automation should respect X/Twitter's Terms of Service. Use conservative settings and include breaks between sessions.
- This script runs in the browser DevTools console — not Node.js
- You must be logged in to x.com for the script to work
- Start with low limits and increase gradually
- Include random delays between actions to appear human
- Don't run multiple automation scripts simultaneously
🌐 Browser Console Usage
Steps:
- Go to
x.com (any page) - Open browser console (
F12→ Console tab) - Copy and paste the script from
src/engagementManager.js - Press Enter to run
// src/engagementManager.js
// Engagement and interaction automation for X/Twitter
// by nichxbt
/**
* Engagement Manager - Likes, replies, bookmarks, reactions, analytics
*
* Features:
* - Like/unlike posts
* - Reply to posts
* - Bookmark management
* - Hide replies
* - Set reply limits
* - Get engagement analytics
* - Video reactions
*/
const sleep = (ms) => new Promise(r => setTimeout(r, ms));
const SELECTORS = {
like: '[data-testid="like"]',
unlike: '[data-testid="unlike"]',
reply: '[data-testid="reply"]',
retweet: '[data-testid="retweet"]',
bookmark: '[data-testid="bookmark"]',
removeBookmark: '[data-testid="removeBookmark"]',
share: '[data-testid="share"]',
tweet: 'article[data-testid="tweet"]',
tweetText: '[data-testid="tweetText"]',
replyInput: '[data-testid="tweetTextarea_0"]',
replySubmit: '[data-testid="tweetButton"]',
hideReply: '[data-testid="hideReply"]',
caret: '[data-testid="caret"]',
replyRestriction: '[data-testid="replyRestriction"]',
analyticsLink: '[data-testid="analyticsButton"]',
impressionCount: '[data-testid="impressions"]',
};
/**
* Like a tweet by URL
* @param {import('puppeteer').Page} page
* @param {string} tweetUrl
* @returns {Promise<Object>}
*/
export async function likeTweet(page, tweetUrl) {
await page.goto(tweetUrl, { waitUntil: 'networkidle2' });
await sleep(2000);
const alreadyLiked = await page.$(SELECTORS.unlike);
if (alreadyLiked) {
return { success: true, action: 'already_liked', url: tweetUrl };
}
await page.click(SELECTORS.like);
await sleep(1500);
return { success: true, action: 'liked', url: tweetUrl, timestamp: new Date().toISOString() };
}
/**
* Unlike a tweet by URL
* @param {import('puppeteer').Page} page
* @param {string} tweetUrl
* @returns {Promise<Object>}
*/
export async function unlikeTweet(page, tweetUrl) {
await page.goto(tweetUrl, { waitUntil: 'networkidle2' });
await sleep(2000);
const likedButton = await page.$(SELECTORS.unlike);
if (!likedButton) {
return { success: true, action: 'not_liked', url: tweetUrl };
}
await page.click(SELECTORS.unlike);
await sleep(1500);
return { success: true, action: 'unliked', url: tweetUrl, timestamp: new Date().toISOString() };
}
/**
* Reply to a tweet
* @param {import('puppeteer').Page} page
* @param {string} tweetUrl
* @param {string} replyText
* @param {Object} options
* @returns {Promise<Object>}
*/
export async function replyToTweet(page, tweetUrl, replyText, options = {}) {
const { media = null } = options;
await page.goto(tweetUrl, { waitUntil: 'networkidle2' });
await sleep(2000);
// Click reply area
await page.click(SELECTORS.replyInput);
await sleep(500);
// Type reply
await page.keyboard.type(replyText, { delay: 30 });
await sleep(500);
// Add media if provided
if (media) {
const fileInput = await page.$('[data-testid="fileInput"]');
if (fileInput) {
await fileInput.uploadFile(media);
await sleep(2000);
}
}
// Submit reply
await page.click(SELECTORS.replySubmit);
await sleep(3000);
return {
success: true,
action: 'replied',
url: tweetUrl,
reply: replyText.substring(0, 100),
timestamp: new Date().toISOString(),
};
}
/**
* Bookmark a tweet
* @param {import('puppeteer').Page} page
* @param {string} tweetUrl
* @returns {Promise<Object>}
*/
export async function bookmarkTweet(page, tweetUrl) {
await page.goto(tweetUrl, { waitUntil: 'networkidle2' });
await sleep(2000);
// Click share button to access bookmark
await page.click(SELECTORS.share);
await sleep(1000);
await page.click(SELECTORS.bookmark);
await sleep(1500);
return { success: true, action: 'bookmarked', url: tweetUrl, timestamp: new Date().toISOString() };
}
/**
* Remove a bookmark
* @param {import('puppeteer').Page} page
* @param {string} tweetUrl
* @returns {Promise<Object>}
*/
export async function unbookmarkTweet(page, tweetUrl) {
await page.goto(tweetUrl, { waitUntil: 'networkidle2' });
await sleep(2000);
await page.click(SELECTORS.share);
await sleep(1000);
await page.click(SELECTORS.removeBookmark);
await sleep(1500);
return { success: true, action: 'unbookmarked', url: tweetUrl, timestamp: new Date().toISOString() };
}
/**
* Hide a reply on your post
* @param {import('puppeteer').Page} page
* @param {string} replyUrl
* @returns {Promise<Object>}
*/
export async function hideReply(page, replyUrl) {
await page.goto(replyUrl, { waitUntil: 'networkidle2' });
await sleep(2000);
await page.click(SELECTORS.caret);
await sleep(1000);
await page.click(SELECTORS.hideReply);
await sleep(1500);
return { success: true, action: 'hidden', url: replyUrl, timestamp: new Date().toISOString() };
}
/**
* Auto-like posts in a feed based on keywords
* @param {import('puppeteer').Page} page
* @param {Object} options
* @returns {Promise<Object>}
*/
export async function autoLikeByKeyword(page, options = {}) {
const { keywords = [], limit = 20, delay = 2000, url = 'https://x.com/home' } = options;
await page.goto(url, { waitUntil: 'networkidle2' });
await sleep(3000);
let liked = 0;
let scrollAttempts = 0;
while (liked < limit && scrollAttempts < limit * 2) {
const tweets = await page.$$(SELECTORS.tweet);
for (const tweet of tweets) {
if (liked >= limit) break;
const text = await tweet.$eval(SELECTORS.tweetText, el => el.textContent).catch(() => '');
const matches = keywords.length === 0 || keywords.some(kw =>
text.toLowerCase().includes(kw.toLowerCase())
);
if (matches) {
const likeBtn = await tweet.$(SELECTORS.like);
if (likeBtn) {
await likeBtn.click();
liked++;
console.log(`❤️ Liked (${liked}/${limit}): ${text.substring(0, 50)}...`);
await sleep(delay);
}
}
}
await page.evaluate(() => window.scrollBy(0, 800));
await sleep(1500);
scrollAttempts++;
}
return {
success: true,
liked,
keywords,
timestamp: new Date().toISOString(),
};
}
/**
* Get engagement analytics for a post
* @param {import('puppeteer').Page} page
* @param {string} tweetUrl
* @returns {Promise<Object>}
*/
export async function getEngagementAnalytics(page, tweetUrl) {
await page.goto(tweetUrl, { waitUntil: 'networkidle2' });
await sleep(2000);
const analytics = await page.evaluate((sel) => {
const tweet = document.querySelector(sel.tweet);
if (!tweet) return null;
const getText = (s) => tweet.querySelector(s)?.textContent?.trim() || '0';
return {
likes: getText(sel.like + ' span') || getText(sel.unlike + ' span'),
reposts: getText(sel.retweet + ' span'),
replies: getText('[data-testid="reply"] span'),
impressions: getText(sel.impressionCount),
};
}, SELECTORS);
return {
url: tweetUrl,
analytics,
scrapedAt: new Date().toISOString(),
};
}
export default {
likeTweet,
unlikeTweet,
replyToTweet,
bookmarkTweet,
unbookmarkTweet,
hideReply,
autoLikeByKeyword,
getEngagementAnalytics,
SELECTORS,
};
📖 Step-by-Step Tutorial
Step 1: Navigate to the right page
Open your browser and go to x.com (any page). Make sure you're logged in to your X/Twitter account.
Step 2: Open the browser console
- Chrome/Edge: Press
F12orCtrl+Shift+J(Mac:Cmd+Option+J) - Firefox: Press
F12orCtrl+Shift+K - Safari: Enable Developer menu in Preferences → Advanced, then press
Cmd+Option+C
Step 3: Paste the script
Copy the entire script from src/engagementManager.js and paste it into the console.
Step 4: Customize the CONFIG (optional)
Before running, you can modify the CONFIG object at the top of the script to adjust behavior:
const CONFIG = {
// Edit these values before running
// See Configuration table above for all options
};
Step 5: Run and monitor
Press Enter to run the script. Watch the console for real-time progress logs:
- ✅ Green messages = success
- 🔄 Blue messages = in progress
- ⚠️ Yellow messages = warnings
- ❌ Red messages = errors
Step 6: Export results
Most scripts automatically download results as JSON/CSV when complete. Check your Downloads folder.
🖥️ CLI Usage
You can also run this via the XActions CLI:
# Install XActions globally
npm install -g xactions
# Run via CLI
xactions --help
🤖 MCP Server Usage
Use with AI agents (Claude, Cursor, etc.) via the MCP server:
# Start MCP server
npm run mcp
See the MCP Setup Guide for integration with Claude Desktop, Cursor, and other AI tools.
📁 Source Files
| File | Description |
|---|---|
src/engagementManager.js |
Main script |
🔗 Related Scripts
| Script | Description |
|---|---|
| Auto-Plug Replies | Automatically reply to viral tweets with your own content plug or CTA |
| Auto-Reply | Auto-reply to tweets matching your filters |
| Engagement Booster | Systematically engage with target accounts by liking, bookmarking, and retweeting their content to build relationships |
| Quote Tweet Automation | Auto-retweet with quote-tweet templates |
| Welcome New Followers | Auto-send welcome DMs to new followers |
Author: nich (@nichxbt) — XActions on GitHub
⚡ Ready to try ⚡ Engagement Manager?
XActions is 100% free and open-source. No API keys, no fees, no signup.
Browse All Scripts