A sophisticated CLI tool that automates social media outreach and account management across multiple platforms including TikTok, X (Twitter), YouTube, Facebook, Reddit, and LinkedIn.
- π― Professional CLI Interface: Easy-to-use
nbot
command with comprehensive help and examples - π Secure Account Management: Encrypted credential storage with multi-account support
- π Multi-Platform Support: TikTok, X.com, YouTube, Facebook, Reddit, and LinkedIn
- βοΈ Interactive Configuration: User-friendly setup and management tools
- π Status & Analytics: Real-time bot status and performance monitoring
- π Profile Generation: Create synthetic user profiles for bot accounts
- π‘οΈ Advanced Anti-Detection: Browser fingerprint randomization, proxy rotation, and human-like behavior
- β±οΈ Intelligent Rate Limiting: Automatic activity adjustment based on platform responses
- π Resilient Error Handling: Graceful handling of platform changes and rate limiting
# Install globally using pnpm (recommended)
pnpm install -g @profullstack/networking-bots
# Or using npm
npm install -g @profullstack/networking-bots
# 1. Run the comprehensive setup wizard (recommended)
nbot setup
# Or set up manually:
# 2. Initialize configuration
nbot config --init
# 3. Add your social media accounts
nbot accounts --add
# 4. Set active accounts for platforms
nbot accounts --set-active
# 5. Configure platforms and messages
nbot config --edit
# 6. Check status
nbot status
# 7. Start the bot
nbot run
# Run comprehensive initial setup (recommended for first-time users)
nbot setup
# Force setup even if configuration exists
nbot setup --force
# Run all enabled platforms
nbot run
# Run specific platform only
nbot run --platform linkedin
# Test run without sending messages
nbot run --dry-run
# List all accounts
nbot accounts --list
# Add new account (interactive)
nbot accounts --add
# Set active account (interactive)
nbot accounts --set-active
# Export credentials to .env file
nbot accounts --export
# Interactive account menu
nbot accounts
# Show current configuration
nbot config --show
# Edit configuration interactively
nbot config --edit
# Configure specific platform
nbot config --platform linkedin
# Initialize default config
nbot config --init
# Create synthetic profiles
nbot create-profiles --number 5
# Create profiles for specific platform
nbot profiles --platform x --number 3
# Show overall bot status
nbot status
# Show detailed platform status
nbot status --platform linkedin --detailed
# General help
nbot --help
# Command-specific help
nbot run --help
# Show version
nbot --version
The bot stores configuration in your user directory following XDG Base Directory specification:
~/.config/networking-bots/config.json
- Platform settings and bot configuration~/.config/networking-bots/env.json
- Environment variables and API credentials~/.config/networking-bots/proxies.txt
- Proxy list for IP rotation
Platform Configuration (config.json
):
{
"platforms": {
"linkedin": {
"enabled": true,
"message": "Hi! I noticed your expertise in [topic]. I'd love to connect!"
},
"x": {
"enabled": false,
"message": "Hey! Saw your post about [topic]. Let's connect!"
}
},
"searchTerms": {
"linkedin": ["networking", "startup", "entrepreneur"],
"x": ["tech", "startup", "business"]
},
"settings": {
"respectWorkingHours": true,
"maxMessagesPerDay": 10,
"delayBetweenMessages": 300000
}
}
Environment Variables (env.json
):
{
"OPENAI_API_KEY": "your-openai-key",
"ANTHROPIC_API_KEY": "your-anthropic-key",
"WEBSHARE_API_KEY": "your-webshare-key",
"RECAPTCHA_SOLVER_API_KEY": "your-recaptcha-solver-key"
}
- Encrypted Storage: Passwords are encrypted using AES-256-CTR
- Multi-Account Support: Store multiple accounts per platform
- Active Account Management: Easy switching between accounts
- Environment Export: Export credentials to
.env
files securely
Platform | Status | Features |
---|---|---|
β Active | Profile messaging, connection requests | |
X (Twitter) | β Active | Direct messages, mentions, follows |
TikTok | β Active | Comments, follows |
YouTube | β Active | Comments, channel follows |
β Active | Comments, page follows | |
β Active | Direct messages, comments |
- Browser Fingerprint Randomization: Changes browser signatures to avoid tracking
- Human-Like Behavior: Simulates realistic typing speeds, mouse movements, and interactions
- Intelligent Timing: Operates during business hours with natural pauses
- Progressive Backoff: Automatically slows down when rate limits are detected
- Proxy Support: Integrates with proxy services for IP rotation
- Header Customization: Uses realistic browser headers
# Run comprehensive setup wizard (recommended)
nbot setup
# Check configuration
nbot status
# Test with dry run
nbot run --dry-run
# Start the bot
nbot run
# Check bot status
nbot status
# Run LinkedIn outreach
nbot run --platform linkedin
# Check results
nbot status --platform linkedin --detailed
# Add account for new platform
nbot accounts --add
# Configure platform settings
nbot config --platform tiktok
# Test with dry run
nbot run --platform tiktok --dry-run
# Start actual outreach
nbot run --platform tiktok
# Reconfigure everything
nbot setup --force
# Update configuration
nbot config --edit
# Export credentials for backup
nbot accounts --export
# Create new profiles
nbot create-profiles -n 5
networking-bots/
βββ src/
β βββ cli.mjs # Main CLI entry point
β βββ commands/ # Command modules
β β βββ run.mjs # Bot execution
β β βββ accounts.mjs # Account management
β β βββ config.mjs # Configuration management
β β βββ setup.mjs # Setup wizard
β β βββ profiles.mjs # Profile creation
β β βββ status.mjs # Status reporting
β βββ platforms/ # Platform integrations
β βββ services/ # Core services
β βββ utils/ # Utilities
β βββ config.mjs # Configuration utility
βββ accounts.json # Encrypted account data
βββ CLI_USAGE.md # Detailed CLI documentation
# User Configuration (created by setup)
~/.config/networking-bots/
βββ config.json # Platform settings
βββ env.json # Environment variables
βββ proxies.txt # Proxy list
The bot operates in intelligent cycles with built-in randomization:
- π― Platform Selection: Chooses platforms based on configuration
- π Search Phase: Finds users based on configured keywords
- π§Ή Filtering Phase: Removes previously contacted users and bots
- π¬ Engagement Phase: Sends personalized messages or interactions
- β±οΈ Cooldown Phase: Waits with randomized timing before next cycle
- Professional networking focus
- Connection requests with personalized messages
- Respects LinkedIn's rate limits and best practices
- Direct messages and mentions
- Tweet engagement and follows
- API integration support for enhanced features
- Video comments and user follows
- Engagement with trending content
- Creator outreach capabilities
- Channel subscriptions and video comments
- Creator collaboration outreach
- Community engagement
- Page follows and post comments
- Business networking focus
- Group engagement capabilities
- Subreddit-specific outreach
- Direct messages and comment replies
- Community-based networking
- Real-time Status: Monitor bot activity and performance
- Platform Statistics: Track messages sent, users contacted
- Error Reporting: Detailed error logs and troubleshooting
- Rate Limit Monitoring: Automatic detection and adjustment
- Success Metrics: Track engagement and response rates
# Clone repository
git clone <repository-url>
cd networking-bots
# Install dependencies
pnpm install
# Link for local development
pnpm link --global
# Run locally
nbot --help
# Test CLI functionality
nbot --help
nbot setup --help
nbot status
# Run setup wizard
nbot setup
# Test with dry run
nbot run --dry-run
- CLI_USAGE.md - Comprehensive CLI documentation
- ACCOUNT_MANAGEMENT.md - Account setup guide
- Built-in help:
nbot --help
ornbot <command> --help
- Encrypted Credentials: All passwords encrypted with AES-256-CTR
- No Data Collection: Bot operates locally, no external data transmission
- Proxy Support: Hide your IP address with proxy integration
- Rate Limiting: Respects platform limits to avoid account suspension
- Human-like Behavior: Advanced anti-detection measures
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
This project is licensed under the MIT License - see the LICENSE file for details.
This tool is for educational and legitimate networking purposes only. Users are responsible for complying with platform terms of service and applicable laws. Always respect rate limits and platform guidelines.
Need Help? Use nbot --help
for command assistance or check CLI_USAGE.md for detailed documentation.