Skip to main content

@elizaos/plugin-twitter

A plugin for Twitter/X integration, providing automated tweet posting capabilities with character-aware content generation.

Overview​

This plugin provides functionality to:

  • Compose context-aware tweets
  • Post tweets to Twitter/X platform
  • Handle authentication and session management
  • Support premium Twitter features
  • Manage tweet length restrictions

Installation​

npm install @elizaos/plugin-twitter

Configuration​

The plugin requires the following environment variables:

TWITTER_USERNAME=your_username
TWITTER_PASSWORD=your_password
TWITTER_EMAIL=your_email # Optional: for 2FA
TWITTER_2FA_SECRET=your_2fa_secret # Optional: for 2FA
TWITTER_PREMIUM=false # Optional: enables premium features
TWITTER_DRY_RUN=false # Optional: test without posting

Usage​

Import and register the plugin in your Eliza configuration:

import { twitterPlugin } from '@elizaos/plugin-twitter';

export default {
plugins: [twitterPlugin],
// ... other configuration
};

Features​

Tweet Composition​

The plugin uses context-aware templates to generate appropriate tweets:

import { postAction } from '@elizaos/plugin-twitter';

// Tweet will be composed based on context and character limits
const result = await postAction.handler(runtime, message, state);

Tweet Posting​

// Post with automatic content generation
await postAction.handler(runtime, message, state);

// Dry run mode (for testing)
process.env.TWITTER_DRY_RUN = 'true';
await postAction.handler(runtime, message, state);

Development​

Building​

npm run build

Testing​

npm run test

Development Mode​

npm run dev

Dependencies​

  • @elizaos/core: Core Eliza functionality
  • agent-twitter-client: Twitter API client
  • tsup: Build tool
  • Other standard dependencies listed in package.json

API Reference​

Core Interfaces​

interface TweetContent {
text: string;
}

// Tweet Schema
const TweetSchema = z.object({
text: z.string().describe('The text of the tweet'),
});

// Action Interface
interface Action {
name: 'POST_TWEET';
similes: string[];
description: string;
validate: (runtime: IAgentRuntime, message: Memory, state?: State) => Promise<boolean>;
handler: (runtime: IAgentRuntime, message: Memory, state?: State) => Promise<boolean>;
examples: Array<Array<any>>;
}

Plugin Methods​

  • postAction.handler: Main method for posting tweets
  • postAction.validate: Validates Twitter credentials
  • composeTweet: Internal method for tweet generation
  • postTweet: Internal method for tweet posting

Common Issues/Troubleshooting​

Issue: Authentication Failures​

  • Cause: Invalid credentials or 2FA configuration
  • Solution: Verify credentials and 2FA setup

Issue: Tweet Length Errors​

  • Cause: Content exceeds Twitter's character limit
  • Solution: Enable TWITTER_PREMIUM for extended tweets or ensure content is within limits

Issue: Rate Limiting​

  • Cause: Too many requests in short time
  • Solution: Implement proper request throttling

Security Best Practices​

  • Store credentials securely using environment variables
  • Use 2FA when possible
  • Implement proper error handling
  • Keep dependencies updated
  • Use dry run mode for testing
  • Monitor Twitter API usage

Template System​

The plugin uses a sophisticated template system for tweet generation:

const tweetTemplate = `
# Context
{{recentMessages}}

# Topics
{{topics}}

# Post Directions
{{postDirections}}

# Recent interactions
{{recentPostInteractions}}

# Task
Generate a tweet that:
1. Relates to the recent conversation
2. Matches the character's style
3. Is concise and engaging
4. Must be UNDER 180 characters
5. Speaks from the perspective of {{agentName}}
`;

Future Enhancements​

  1. Content Generation

    • Advanced context awareness
    • Multi-language support
    • Style customization
    • Hashtag optimization
    • Media generation
    • Thread composition
  2. Engagement Features

    • Auto-reply system
    • Engagement analytics
    • Follower management
    • Interaction scheduling
    • Sentiment analysis
    • Community management
  3. Tweet Management

    • Thread management
    • Tweet scheduling
    • Content moderation
    • Archive management
    • Delete automation
    • Edit optimization
  4. Analytics Integration

    • Performance tracking
    • Engagement metrics
    • Audience insights
    • Trend analysis
    • ROI measurement
    • Custom reporting
  5. Authentication

    • OAuth improvements
    • Multi-account support
    • Session management
    • Rate limit handling
    • Security enhancements
    • Backup mechanisms
  6. Developer Tools

    • Enhanced debugging
    • Testing framework
    • Documentation generator
    • Integration templates
    • Error handling
    • Logging system

We welcome community feedback and contributions to help prioritize these enhancements.

Contributing​

Contributions are welcome! Please see the CONTRIBUTING.md file for more information.

Credits​

This plugin integrates with and builds upon several key technologies:

Special thanks to:

  • The Twitter/X Developer Platform team
  • The agent-twitter-client maintainers for API integration tools
  • The Eliza community for their contributions and feedback

For more information about Twitter/X integration capabilities:

License​

This plugin is part of the Eliza project. See the main project repository for license information.