This plugin allows you to integrate Twitter functionalities into your Virtuals Game. With this plugin, you can post tweets, reply to tweets, like tweets, and more.
To install the plugin, use npm or yarn:
npm install @virtuals-protocol/game-twitter-plugin
or
yarn add @virtuals-protocol/game-twitter-plugin
First, import the TwitterPlugin
class from the plugin:
import TwitterPlugin from "@virtuals-protocol/game-twitter-plugin";
-
Game Twitter Client: This client is designed specifically for integration with the Virtuals Game environment. It provides seamless interaction with the game and allows for enhanced functionalities tailored to game-specific requirements.
import { TwitterApi } from "@virtuals-protocol/game-twitter-node"; const gameTwitterClient = new TwitterApi({ gameTwitterAccessToken: "your_game_access_token", });
To get the access token, run the following command:
npx @virtuals-protocol/game-twitter-node auth -k <GAME_API_KEY>
Here is an example run:
npx @virtuals-protocol/game-twitter-node auth -k apt-xxxxxxxxxx
You will see the following output:
Waiting for authentication... Visit the following URL to authenticate: https://x.com/i/oauth2/authorize?response_type=code&client_id=VVdyZ0t4WFFRMjBlMzVaczZyMzU6MTpjaQ&redirect_uri=http%3A%2F%2Flocalhost%3A8714%2Fcallback&state=866c82c0-e3f6-444e-a2de-e58bcc95f08b&code_challenge=K47t-0Mcl8B99ufyqmwJYZFB56fiXiZf7f3euQ4H2_0&code_challenge_method=s256&scope=tweet.read%20tweet.write%20users.read%20offline.access
After authenticating, you will receive the following message:
Authenticated! Here's your access token: apx-613f64069424d88c6fbf2e75c0c80a34
-
Native Twitter Client: This client is a more general-purpose Twitter client that can be used outside of the game context. It provides standard Twitter functionalities and can be used in various applications.
import { TwitterApi } from "@virtuals-protocol/game-twitter-node"; const nativeTwitterClient = new TwitterApi({ appKey: "your_api_key", appSecret: "your_api_secret_key", accessToken: "your_access_token", accessTokenSecret: "your_access_token_secret", });
Create a worker with the necessary Twitter credentials:
const twitterPlugin = new TwitterPlugin({
twitterClient: gameTwitterClient || nativeTwitterClient, // choose either 1 client
});
Create an agent and add the worker to it:
import { GameAgent } from "@virtuals-protocol/game";
const agent = new GameAgent("API_KEY", {
name: "Twitter Bot",
goal: "Increase engagement and grow follower count",
description: "A bot that can post tweets, reply to tweets, and like tweets",
workers: [twitterPlugin.getWorker()],
});
Initialize and run the agent:
(async () => {
await agent.init();
while (true) {
await agent.step({
verbose: true,
});
}
})();
By default, TwitterPlugin
comes with five bootstrapped GameFunction
s:
Function Name | Description |
---|---|
searchTweetsFunction |
Search for tweets based on a query |
replyTweetFunction |
Reply to a tweet, with reasoning |
postTweetFunction |
Post a new tweet, with reasoning |
likeTweetFunction |
Like a tweet without commenting |
quoteTweetFunction |
Quote a tweet with your own commentary |
These are ready-to-use and can be added to your agent’s GameWorker
with zero config.
While these 5 GameFunctions are provided out-of-the-box, they are just examples.
✅ Developers are free to write their own
GameFunction
logic using the underlyingGameTwitterClient
.
This means you can:
- Create more contextual or dynamic tweet logic
- Chain multiple social interactions together
- Integrate with reasoning engines, prompts, or data pipelines
Use the built-in functions as references for creating your own!
If you prefer direct control or are not using GameFunction-based execution, you can use the GameTwitterClient
or TwitterClient
directly:
const gameTwitterClient = new GameTwitterClient({
accessToken: process.env.GAME_TWITTER_ACCESS_TOKEN!,
});
const tweet = await gameTwitterClient.v2.tweet("Hello world from my agent!");
console.log("Tweet ID:", tweet.data.id);
await gameTwitterClient.v2.like(tweet.data.id);
await gameTwitterClient.v2.reply("This is a reply!", tweet.data.id);
await gameTwitterClient.v2.quote("Check this out 👇", tweet.data.id);
More usage examples can be found in test_game_twitter_client.ts.
You can define your own GameFunction
to extend or customize Twitter interactions based on your use case.
Use Case: Hashtag Engagement Booster
"Search for tweets using a specific hashtag and auto-like the most recent one."
import {
GameFunction,
ExecutableGameFunctionResponse,
ExecutableGameFunctionStatus,
} from "@virtuals-protocol/game";
import { TwitterApi } from "@virtuals-protocol/game-twitter-node";
export const likeRecentHashtagTweet = (client: TwitterApi) =>
new GameFunction({
name: "like_recent_hashtag_tweet",
description: "Search a hashtag and like the most recent tweet using it",
args: [
{
name: "hashtag",
description: "Hashtag to search for (e.g. #GameByVirtuals)",
},
] as const,
executable: async (args, logger) => {
if (!args.hashtag) {
return new ExecutableGameFunctionResponse(
ExecutableGameFunctionStatus.Failed,
"Hashtag is required."
);
}
const searchResults = await client.v2.search(args.hashtag);
const tweets = searchResults?.data?.data || [];
if (tweets.length === 0) {
return new ExecutableGameFunctionResponse(
ExecutableGameFunctionStatus.Failed,
`No tweets found for ${args.hashtag}`
);
}
const firstTweet = tweets[0];
logger(`Liking tweet: ${firstTweet.text} (ID: ${firstTweet.id})`);
const user = await client.v2.me();
await client.v2.like(user.data.id, firstTweet.id);
return new ExecutableGameFunctionResponse(
ExecutableGameFunctionStatus.Done,
`Liked tweet by @${firstTweet.author_id} using hashtag ${args.hashtag}`
);
},
});
- The TwitterPlugin provides a set of default GameFunctions to get started fast.
- These defaults are optional — you can fully customize or replace them.
- Use
GameTwitterClient
orTwitterClient
directly if you need fine-grained control. - Reference the source to write your own GameFunctions tailored to your agent’s purpose.
This project is licensed under the MIT License.