2.1 KiB
2.1 KiB
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Build & Run Commands
# Install dependencies
pip install -r requirements.txt
# Run the bot (requires .env with DISCORD_TOKEN and AI provider key)
python -m daemon_boyfriend
# Run with Docker
docker-compose up -d
# Syntax check all Python files
python -m py_compile src/daemon_boyfriend/**/*.py
Architecture
This is a Discord bot with AI chat (multi-provider) and SearXNG web search.
Provider Pattern
The AI system uses a provider abstraction pattern:
services/providers/base.pydefinesAIProviderabstract class withgenerate()methodservices/providers/openai.py,openrouter.py,anthropic.pyimplement the interfaceservices/ai_service.pyis the factory that creates the correct provider based onAI_PROVIDERenv var- OpenRouter uses OpenAI's client with a different base URL
Cog System
Discord commands are organized as cogs in cogs/:
ai_chat.py-/chatcommand and@mentionhandler (primary user interaction)search.py-/searchand/imagecommands using SearXNGadmin.py-/status,/help,/ping,/providercommands
Cogs are auto-loaded by bot.py from the cogs/ directory.
Configuration
All config flows through config.py using pydantic-settings. The settings singleton is created at module load, so env vars must be set before importing.
Key Design Decisions
ConversationManagerstores per-user chat history in memory with configurable max lengthRateLimitertracks per-user rate limits using timestamps in a dict- Long AI responses are split via
split_message()inai_chat.pyto respect Discord's 2000 char limit - The bot responds to @mentions via
on_messagelistener, not just slash commands
Environment Variables
Required: DISCORD_TOKEN, plus one of OPENAI_API_KEY, OPENROUTER_API_KEY, or ANTHROPIC_API_KEY depending on AI_PROVIDER setting.
Set DISCORD_GUILD_ID for instant slash command sync during development (otherwise global sync takes up to 1 hour).