Web-based social media automation tool with human-like behavior simulation built with Playwright
Post, like, comment, follow/connect, unfollow and DM on Instagram, Twitter/X, and LinkedIn. Reddit is comming soon!
Features β’ Architecture β’ Workflow β’ Installation β’ Usage β’ API β’ Configuration
- Features
- Architecture
- Workflow
- Security
- Installation
- Usage
- API Reference
- Configuration
- Disclaimer
- Contributing
- License
| Platform | Login | Like | Comment | Follow | DM | Connect | Search | Status |
|---|---|---|---|---|---|---|---|---|
| β | β | β | β | β | β | β | Production Ready | |
| β | β | β | β | β | β | β | Production Ready | |
| Twitter/X | β | β | β | β | β | β | β | Production Ready |
| π | π | π | π | π | β | β | Planned |
Status Key: "Production Ready" = tested & verified. "Implemented" = code complete. "Planned" = on roadmap.
-
π€ Human-like Behavior
- Warm-up browsing (scrolls feed before actions)
- Randomized delays (1.5-4s between actions)
- Natural typing speed (30-100ms per character)
- Thinking pauses (2-5s before complex actions)
- Action cooldown (2-3 min between multiple actions)
-
π‘οΈ Safety Features
- Built-in rate limiting per platform
- Session persistence across restarts
- Stealth mode (anti-detection measures)
- Automatic error recovery with exponential backoff
-
π Platform-Specific
- Instagram: Follower scraping, post engagement, DMs
- LinkedIn: Connection requests (including 3rd degree via More dropdown), post engagement, search & engage
- Twitter/X: Tweet posting, likes, replies, follows
| Interface | Description |
|---|---|
| CLI | Command-line interface for quick actions |
| REST API | Full HTTP API on port 3847 |
| WebSocket | Real-time bidirectional communication on port 3848 |
| Programmatic | TypeScript/JavaScript SDK |
| Notifications | Telegram, Discord, or webhook notifications on action completion |
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β ClawSocial β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β βββββββββββ βββββββββββ βββββββββββ β
β β CLI β β REST β β WS β Interfaces β
β ββββββ¬βββββ ββββββ¬βββββ ββββββ¬βββββ β
β β β β β
β ββββββββββββββΌβββββββββββββ β
β βΌ β
β βββββββββββββββββββββββββββββββββββββββ β
β β Command Router β β
β βββββββββββββββββββ¬ββββββββββββββββββββ β
β βΌ β
β βββββββββββββββββββββββββββββββββββββββ β
β β Rate Limiter β β
β βββββββββββββββββββ¬ββββββββββββββββββββ β
β βΌ β
β ββββββββββββ¬βββββββββββ¬βββββββββββ β
β βInstagram β LinkedIn β Twitter β Platform Handlers β
β ββββββ¬ββββββ΄βββββ¬ββββββ΄βββββ¬ββββββ β
β β β β β
β ββββββββββββΌβββββββββββ β
β βΌ β
β βββββββββββββββββββββββββββββββββββββββ β
β β Browser Manager β β
β β (Playwright + Stealth Mode) β β
β βββββββββββββββββββββββββββββββββββββββ β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Key Components:
- Interfaces: Multiple ways to interact (CLI, REST, WebSocket)
- Command Router: Routes requests to appropriate handlers
- Rate Limiter: Enforces daily limits per platform/action
- Platform Handlers: Instagram, LinkedIn, Twitter-specific logic
- Browser Manager: Playwright with stealth mode and session persistence
ClawSocial automatically simulates human behavior for every action:
βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ
β Warm-up β βββΆ β Navigate β βββΆ β Think β βββΆ β Action β
β (3-5 scrolls) β to Target β β (2-5s) β β + Typing β
βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ
- Warm-up: Scrolls feed 3-5 times with random pauses (mimics checking notifications)
- Navigate: Goes to target with natural page load timing
- Think: Pauses 2-5s (simulates reading/deciding)
- Action: Performs action with natural typing speed (30-100ms/char)
Follow this research-first workflow to avoid rate limits and bans:
βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ
β Research β βββΆ β Store β βββΆ β Spread β βββΆ β Repeat β
β (scrape/ β β Results β β Actions β β When β
β search) β β (JSON/DB) β β Over Time β β Needed β
βββββββββββββββ βββββββββββββββ βββββββββββββββ βββββββββββββββ
- Research First: Scrape or search to build a queue of targets before engaging
- Store Results: Save to JSON/database β never scrape and act in the same session
- Spread Actions: Distribute engagement across multiple cron jobs throughout the day
- Repeat When Needed: Re-run research periodically to refresh your queue
| Platform | Scraping | Notes |
|---|---|---|
| Search keywords β store HTML β extract results β then engage. Small batches only. Direct profile URLs are safer than search scraping. | ||
| Scrape followers or hashtags slowly in small batches (5-10 per session). Wait hours between scrape sessions. | ||
| Twitter/X | β Built-in GraphQL | Use x search for research. Less restrictive but still pace yourself. |
β οΈ Golden Rule: Never scrape and engage in the same session. Research in one job, engage in separate jobs spread over hours.
Never use hardcoded comment templates. The whole point of having an AI agent is dynamic, contextual responses.
- Agent reads the content β tweet, article, post
- Agent reads VOICE.md β your personal style guide
- Agent generates unique comment β references something specific
- Comment is logged β prevents repetition
## Core Rules
- 8th grade reading level
- Max 2 sentences, 10-25 words
- Ask questions when natural
## β
DO
"That's wild. What stack are you running?"
"Spot on π―"
"Smart move. Did it work first try?"
## β DON'T
"Fascinating approach!"
"Great insights!"
"This is fire! π₯"# Log to avoid repetition
echo "2026-02-06 15:30 | @user | Your comment" >> ~/clawd/x-comments.txtSee src/examples/CRONJOB_TEMPLATE.md for full workflow.
| Feature | Description |
|---|---|
| No Hardcoded Credentials | All secrets via environment variables |
| Session Encryption | Optional encryption for stored cookies |
| Local Binding | Server binds to 127.0.0.1 by default |
| API Authentication | Optional API key for remote access |
| Stealth Mode | Browser fingerprint protection, anti-bot detection |
| Rate Limiting | Prevents accidental platform bans |
- Node.js 24+ (LTS)
- npm or pnpm
# Clone the repository
git clone https://github.com/adolfousier/clawsocial.git
cd clawsocial
# Install dependencies
npm install
# Install Playwright browsers
npx playwright install chromium
# Copy environment file and configure
cp .env.example .env
# Edit .env with your credentials
# Build
npm run build
# Start server
npm startThis software is for educational and experimental purposes only. Expect this tool to break without further notice. Follow AUTOMATION_RULES.md for best performance
Read AUTOMATION_RULES.md before using.
Platform Status π‘ Production - use responsibly π‘ Production - use responsibly Twitter/X π‘ Production - use responsibly (likes, follows, replies via Playwright; search/read via built-in GraphQL client)
For AI agents (OpenClaw, Claude, etc.) β Here's how to use ClawSocial:
# Login (headless - uses .env credentials)
npm run cli -- session login <platform> --headless
# Check session status
npm run cli -- session status
# Instagram
npm run cli -- ig like <post-url>
npm run cli -- ig comment <post-url> "Your comment"
npm run cli -- ig dm <username> "Your message"
npm run cli -- ig follow <username>
npm run cli -- ig followers <username> -n 10 # Scrape followers
npm run cli -- ig posts <username> -n 3 # Get recent posts
# LinkedIn
npm run cli -- linkedin like <post-url>
npm run cli -- linkedin comment <post-url> "Your comment"
npm run cli -- linkedin dm <profile-url> "Your message"
npm run cli -- linkedin connect <profile-url> # Works for 3rd degree too
npm run cli -- linkedin search <query> # Search posts/articles
npm run cli -- linkedin engage --query=<query> # Full engagement session
# Twitter/X - Write (Playwright)
npm run cli -- x like <tweet-url>
npm run cli -- x tweet "Your tweet"
npm run cli -- x follow <username>
npm run cli -- x reply <tweet-url> "Your reply"
# Twitter/X - Read (GraphQL, no browser needed)
npm run cli -- x search "query" -n 10 # Search tweets
npm run cli -- x home -n 5 # Home timeline
npm run cli -- x mentions -n 5 # Your mentions
npm run cli -- x whoami # Show authenticated account
npm run cli -- x read <tweet-url> # Read a specific tweet
npm run cli -- x search "query" --json # JSON output for automation# Instagram
INSTAGRAM_USERNAME=your_username
INSTAGRAM_PASSWORD="your_password"
# LinkedIn (supports MFA - approve in app when prompted)
LINKEDIN_EMAIL=your_email
LINKEDIN_PASSWORD="your_password"
# Twitter/X - GraphQL API (cookie auth for search/read)
AUTH_TOKEN=your_auth_token
CT0=your_ct0_token
# Twitter/X - Playwright (optional, for like/follow/reply)
TWITTER_USERNAME=your_username
TWITTER_PASSWORD="your_password"| Path | Description |
|---|---|
./sessions/{platform}.json |
Stored session cookies |
./browser-data/ |
Browser profile data |
./sessions/debug-*.png |
Debug screenshots |
./db/ |
State files (engaged profiles, etc.) |
When performing multiple actions on the same profile (e.g., DM then comment), ClawSocial automatically applies a 2-3 minute cooldown between actions.
# Build image
docker build -t clawsocial .
# Run container
docker run -d \
--name clawsocial \
-p 3847:3847 \
-p 3848:3848 \
-v $(pwd)/sessions:/app/sessions \
-v $(pwd)/browser-data:/app/browser-data \
--env-file .env \
clawsocial# Interactive login (opens browser)
npm run cli -- session login instagram
# Headless login (uses .env credentials)
npm run cli -- session login linkedin --headless
# Check all sessions
npm run cli -- session status
# Logout
npm run cli -- session logout instagramnpm run cli -- ig like https://instagram.com/p/ABC123
npm run cli -- ig comment https://instagram.com/p/ABC123 "Great post!"
npm run cli -- ig follow username
npm run cli -- ig dm username "Hello!"
npm run cli -- ig followers username -n 10
npm run cli -- ig posts username -n 5
npm run cli -- ig profile usernamenpm run cli -- linkedin like https://linkedin.com/posts/xxx
npm run cli -- linkedin comment https://linkedin.com/posts/xxx "Insightful!"
npm run cli -- linkedin connect https://linkedin.com/in/username
npm run cli -- linkedin dm https://linkedin.com/in/username "Hi there"
npm run cli -- linkedin search "AI automation"
npm run cli -- linkedin engage --query="OpenClaw"
npm run cli -- linkedin profile usernamenpm run cli -- twitter like https://twitter.com/user/status/123
npm run cli -- twitter tweet "Hello world!"
npm run cli -- twitter reply https://twitter.com/user/status/123 "Great point!"
npm run cli -- twitter follow usernamenpm run cli -- notify status # Check notification config
npm run cli -- notify test # Send test notification
npm run cli -- notify test telegram # Test specific channel
npm run cli -- notify send "Your message" # Send custom message
# Agent-friendly: Send formatted notification with context
npm run cli -- notify report twitter like https://twitter.com/user/status/123 \
--context='{"author":"@username","preview":"Tweet text here","language":"en"}'| Flag | Description | Example |
|---|---|---|
--retries <n> |
Retry failed actions (1-10, default: 3) | --retries 5 |
--context '<json>' |
Pass JSON context to notifications | --context='{"author":"@user"}' |
The --context flag accepts JSON with these optional fields:
authorβ Username/handle of content authorpreviewβ First ~100 chars of contentlanguageβ Content language (en/es/pt)behaviorsβ Actions taken (e.g., "Home feed viewed, search performed")
# Like an Instagram post
curl -X POST http://localhost:3847/api/instagram/like \
-H "Content-Type: application/json" \
-H "X-API-Key: your-api-key" \
-d '{"url": "https://instagram.com/p/ABC123"}'
# Send LinkedIn connection
curl -X POST http://localhost:3847/api/linkedin/connect \
-H "Content-Type: application/json" \
-H "X-API-Key: your-api-key" \
-d '{"profileUrl": "https://linkedin.com/in/username"}'
# Get rate limit status
curl http://localhost:3847/api/status \
-H "X-API-Key: your-api-key"import { ClawSocial } from 'clawsocial';
const claw = new ClawSocial({
headless: true,
sessionDir: './sessions',
});
await claw.initialize();
// Instagram
const ig = claw.instagram;
await ig.login();
await ig.like('https://instagram.com/p/ABC123');
await ig.follow('username');
await ig.comment('https://instagram.com/p/ABC123', 'Nice!');
// LinkedIn
const linkedin = claw.linkedin;
await linkedin.login();
await linkedin.connect('https://linkedin.com/in/username');
// Cleanup
await claw.shutdown();| Method | Endpoint | Description |
|---|---|---|
| POST | /api/instagram/like |
Like a post |
| POST | /api/instagram/comment |
Comment on a post |
| POST | /api/instagram/follow |
Follow a user |
| POST | /api/instagram/unfollow |
Unfollow a user |
| POST | /api/instagram/dm |
Send a direct message |
| GET | /api/instagram/profile/:username |
Get profile data |
| Method | Endpoint | Description |
|---|---|---|
| POST | /api/linkedin/like |
Like a post |
| POST | /api/linkedin/comment |
Comment on a post |
| POST | /api/linkedin/connect |
Send connection request |
| POST | /api/linkedin/message |
Send a message |
| GET | /api/linkedin/profile/:username |
Get profile data |
| Method | Endpoint | Description |
|---|---|---|
| POST | /api/twitter/like |
Like a tweet |
| POST | /api/twitter/tweet |
Post a tweet |
| POST | /api/twitter/reply |
Reply to a tweet |
| POST | /api/twitter/retweet |
Retweet |
| POST | /api/twitter/follow |
Follow a user |
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/status |
System and rate limit status |
| GET | /api/health |
Health check |
| POST | /api/session/login/:platform |
Initiate login |
| POST | /api/session/logout/:platform |
Logout |
| Variable | Default | Description |
|---|---|---|
PORT |
3847 | HTTP server port |
WS_PORT |
3848 | WebSocket server port |
HOST |
127.0.0.1 | Server bind address |
LOG_LEVEL |
info | Logging level |
BROWSER_HEADLESS |
true | Run browser headless |
BROWSER_DATA_DIR |
./browser-data | Browser profile directory |
SESSION_DIR |
./sessions | Session storage directory |
DELAY_MIN_MS |
1500 | Minimum delay between actions |
DELAY_MAX_MS |
4000 | Maximum delay between actions |
TYPING_SPEED_MIN_MS |
30 | Min typing delay per character |
TYPING_SPEED_MAX_MS |
100 | Max typing delay per character |
# Instagram
INSTAGRAM_USERNAME=your_username
INSTAGRAM_PASSWORD="your_password"
# LinkedIn
LINKEDIN_EMAIL=your_email
LINKEDIN_PASSWORD="your_password"
# Twitter (optional)
TWITTER_USERNAME=your_username
TWITTER_PASSWORD="your_password"
β οΈ Note: For passwords with special characters, wrap in quotes:PASSWORD="my*pass(word"
β οΈ Important: New accounts need a warm-up period. See Warm-Up Guide for the full 5-week scaling schedule.
| Platform | Action | Default | Env Variable |
|---|---|---|---|
| Like | 100/day | RATE_LIMIT_INSTAGRAM_LIKE |
|
| Comment | 30/day | RATE_LIMIT_INSTAGRAM_COMMENT |
|
| Follow | 50/day | RATE_LIMIT_INSTAGRAM_FOLLOW |
|
| DM | 50/day | RATE_LIMIT_INSTAGRAM_DM |
|
| Like | 100/day | RATE_LIMIT_LINKEDIN_LIKE |
|
| Comment | 30/day | RATE_LIMIT_LINKEDIN_COMMENT |
|
| Connect | 15/day | RATE_LIMIT_LINKEDIN_CONNECT |
|
| Message | 40/day | RATE_LIMIT_LINKEDIN_MESSAGE |
| Action | Max/Day |
|---|---|
| Likes | 20 |
| Comments | 14 |
| Follows/Connects | 10 |
| DMs | 10 |
Increase by 25% each week until reaching production limits at week 5.
- Minimum 10 minutes between comments
- Minimum 15 minutes between connection requests
- Use odd minutes (:03, :17, :33, :51) not round numbers
- Vary gaps β don't make timing predictable
- Distribute actions across active hours (8am-10pm)
ClawSocial can send notifications via Telegram, Discord, or custom webhooks when actions complete or fail.
| Variable | Default | Description |
|---|---|---|
NOTIFY_ENABLED |
false | Enable notifications |
NOTIFY_TELEGRAM_BOT_TOKEN |
- | Telegram bot token |
NOTIFY_TELEGRAM_CHAT_ID |
- | Telegram chat ID to send to |
NOTIFY_DISCORD_WEBHOOK |
- | Discord webhook URL |
NOTIFY_WEBHOOK_URL |
- | Custom webhook URL |
NOTIFY_WEBHOOK_METHOD |
POST | Webhook HTTP method |
NOTIFY_WEBHOOK_HEADERS |
- | JSON headers for webhook |
NOTIFY_BRAND_FOOTER |
ClawSocial Automation | Footer text for notifications |
NOTIFY_ON_COMPLETE |
true | Notify on action success |
NOTIFY_ON_ERROR |
true | Notify on action failure |
NOTIFY_ON_LOGIN |
false | Notify on login events |
NOTIFY_ON_RATELIMIT |
true | Notify on rate limit exceeded |
CLAWSOCIAL_SILENT |
- | Set to 1 to suppress auto-notifications (for combined reports) |
NOTIFY_ENABLED=true
NOTIFY_TELEGRAM_BOT_TOKEN=123456:ABC-DEF...
NOTIFY_TELEGRAM_CHAT_ID=7711740248
NOTIFY_BRAND_FOOTER="*ClawSocial LinkedIn Automation*"This is an open-source experimental tool for educational and research purposes.
By using this software, you acknowledge:
- Automating interactions may violate platform Terms of Service
- You accept full responsibility for any account restrictions or bans
- You will not use this for spam, harassment, commercial services, or illegal activities
This project is similar to other browser automation tools (Playwright, Puppeteer, Selenium) used for testing and research. It is not a commercial service.
The authors are not responsible for any misuse or consequences of use.
Contributions are welcome! Please read our Contributing Guidelines before submitting PRs.
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
Built with β€οΈ by Adolfo Usier