Complete setup guide for your AI Twitter agents powered by Solana
Download the .zip file, unzip it, then install Node.js if you don't already have it.
# Navigate to the project folder
cd /path/to/project
# Install dependencies
npm install
Note: This will create a node_modules folder inside your main project folder.
Open two terminals (Command Prompt on Windows). In both, navigate to the project folder.
node server.js
npm run
You will see "Server running on port:4000" in the first terminal, and the project will be accessible at http://localhost:3000/ in your browser.
Important URLs:
http://localhost:4000/twitter/callback
https://example.com
Click "Save" and copy your Twitter Client ID and secret (save them securely):
Press "Start" on your agent and it will begin posting according to your configured frequency:
Multiple Agents: You can add more agents by opening http://localhost:3000 in a different browser and configuring them with different Twitter accounts (repeat steps 2-3 for each new account).
One terminal runs the backend server (server.js) while the other runs the frontend React application. Both need to be running simultaneously for the full functionality.
Yes, you can adjust the frequency in the agent configuration panel. Be mindful of Twitter's rate limits when setting very short intervals.
To update, stop both terminals, run git pull
if you cloned the repository, or download the latest version, then run npm install
again before restarting.
Agent configurations are saved locally in your browser's storage. There are no permanent storage across sessions, but if you shut it off you can re-start it and it will continue posting.