Skip to main content

Daily Slack agent that sends jokes and trivia with MCP

Project description

Slack Joke Agent

An agent that sends jokes and trivia to your Slack channel daily.

Features

  • AI-Generated Content - Fresh jokes and trivia powered by Claude AI
  • Science/tech jokes (60% of messages)
  • Science/tech history trivia facts (40% of messages)
  • Automated posting at 9:00 AM daily (configurable)
  • Uses MCP Slack server integration
  • Targets #random channel by default
  • Written in Python with robust error handling
  • Comprehensive logging to file and console
  • Graceful Fallback - Uses predefined content if AI generation fails

Setup

  1. Configure environment variables:

    cp .env.example .env
    # Edit .env with your Slack bot tokens
    

    Create a Slack app at https://api.slack.com/apps to get the bot token.

  2. Install dependencies:

    pip install -e .
    
  3. Or use the startup script:

    ./start-agent.sh
    
  4. Ensure MCP Slack server is configured

Usage

Start the daily agent:

python3 slack_agent.py

Start with custom time:

python3 slack_agent.py --time 12:00  # Daily at noon

Test with immediate message:

python3 slack_agent.py --test

Use custom channel:

python3 slack_agent.py --channel C1234567890

Enable verbose logging:

python3 slack_agent.py --verbose

How it Works

  1. Scheduling: Uses Python schedule library to trigger daily at 9:00 AM
  2. AI Generation: Uses Anthropic's Claude AI to generate fresh content
  3. Content Selection: Randomly selects between jokes and trivia (60%/40% split)
  4. Fallback System: Uses predefined content if AI generation fails
  5. MCP Integration: Spawns the MCP Slack server process
  6. Channel: Posts to #random channel by default
  7. Logging: Logs to both console and slack_agent.log file

Configuration

Environment variables in .env file:

Required:

  • SLACK_BOT_TOKEN - Your Slack bot token (xoxb-...)
  • SLACK_TEAM_ID - Your Slack team/workspace ID
  • ANTHROPIC_API_KEY - Your Anthropic API key for Claude AI (sk-ant-...)

Optional:

  • SLACK_CHANNEL_IDS - Comma-separated list of allowed channels
  • DEFAULT_CHANNEL_ID - Default channel to post

Security:

  • All secrets loaded from .env file (excluded from git)
  • No hardcoded API keys or tokens in source code
  • Environment variable validation on startup
  • Graceful handling of missing AI credentials

AI Features:

  • Dynamic content freshly generated by Claude AI
  • Workplace appropriate prompts ensure clean content
  • Automatic fallback to predefined content if AI generation fails
  • Smart logging tracks AI generation success/failure

Command Line Options

  • --test: Send a test message immediately
  • --test-ai: Test AI generation without sending to Slack
  • --channel CHANNEL_ID: Override the default channel
  • --time HH:MM: Set daily schedule time (default: 09:00)
  • --verbose, -v: Enable verbose debug logging

Logs

The agent creates comprehensive logs:

  • Console output: Real-time status and messages
  • File logging: slack_agent.log with detailed information
  • Timestamps: All log entries include precise timestamps
  • Error tracking: Failed attempts are logged with details

Customization

Add more jokes/trivia:

Edit the jokes and trivia lists in slack_agent.py

Change schedule:

Modify the schedule configuration:

schedule.every().day.at("09:00").do(self.send_daily_message)  # Daily at 9 AM (current)
schedule.every().day.at("12:00").do(self.send_daily_message)  # Daily at noon
schedule.every().hour.at(":00").do(self.send_daily_message)   # Every hour
schedule.every().monday.at("09:00").do(self.send_daily_message)  # Weekly on Monday

Change channel:

Update the channel_id property or use --channel argument

Update Slack tokens:

Edit the .env file with your new tokens

Installation

From PyPI (Recommended):

pip install slack-joke-agent
slack-agent --help

From Source:

git clone <repository>
cd slack-joke-agent
pip install -e .

Quick Development Setup:

git clone <repository>
cd slack-joke-agent
./start-agent.sh

Dependencies

Runtime Dependencies:

  • Python 3.8+
  • schedule>=1.2.0 - Task scheduling
  • python-dotenv>=1.0.0 - Environment variable loading
  • anthropic>=0.57.1 - Anthropic Claude AI SDK

Development Dependencies:

  • pytest>=7.0.0 - Testing framework
  • black>=22.0.0 - Code formatter
  • flake8>=4.0.0 - Linting
  • mypy>=0.950 - Type checking

Error Handling

The agent includes robust error handling:

  • MCP server timeouts (30-second limit)
  • Network connectivity issues
  • Invalid channel configurations
  • Graceful shutdown on Ctrl+C

Development

Building and Publishing:

Automatic Release:

./release.sh 1.0.3  # Automated release to PyPI

Interactive Release:

./release.sh        # Interactive mode with prompts

Help:

./release.sh --help # Show usage information

Automatic mode will update version, run tests, build package, upload to PyPI, commit changes, create git tag, and push to repository.

Running Tests:

python test_slack_agent.py

Package Structure:

  • slack_agent.py - Main application
  • pyproject.toml - Modern Python packaging
  • LICENSE - MIT license
  • MANIFEST.in - Package file inclusion rules
  • test_slack_agent.py - Test suite
  • release.sh - Automated release script

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

slack_joke_agent-1.0.7.tar.gz (15.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

slack_joke_agent-1.0.7-py3-none-any.whl (9.2 kB view details)

Uploaded Python 3

File details

Details for the file slack_joke_agent-1.0.7.tar.gz.

File metadata

  • Download URL: slack_joke_agent-1.0.7.tar.gz
  • Upload date:
  • Size: 15.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for slack_joke_agent-1.0.7.tar.gz
Algorithm Hash digest
SHA256 c5a685ad11ec7ba38d834c067cbf4578b4c7fc452e49a53cb98bb0b73ddfcb26
MD5 fe7982d742bd7754f2c022dff6ff6ba0
BLAKE2b-256 8c729328e1f6275c16ba313c54ee20893fb94efcc7c29b71b8158188d9ccf867

See more details on using hashes here.

File details

Details for the file slack_joke_agent-1.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for slack_joke_agent-1.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 c8e80d252bbe7cee8c45fa8c03784077a2088450766c7d7ac8a24f0695b65852
MD5 d193d128204f6ec827e6aa829837efe1
BLAKE2b-256 c7d5a30f4814ba567c581fba43329c9a3b7113e7acd375ebbc3de16d255ffb2a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page