UNPKG

@puberty-labs/bi-tch

Version:

BiTCH-MCP: Autonomous AI Coordination Platform - BETA: ZombieDust Protocol operational! Revolutionary AI-to-AI coordination with pure MCP integration. FOLLOW BETA RELEASES for latest features!

47 lines (40 loc) 1.87 kB
/** * 🤖 BiTCH AI Configuration Example * * Copy this file to ai-config.js and configure your preferred AI provider * The MCP server will automatically load this configuration */ module.exports = { // Active provider priority: 'cursor' > 'anthropic' > 'openai' provider: 'cursor', // 'cursor', 'anthropic', 'openai' // Cursor Integration (Primary - uses Cursor's built-in AI via MCP) cursor: { enabled: true, timeout: 30000, // 30 seconds for AI responses maxRetries: 2 // Note: Uses Model Context Protocol for Cursor integration }, // Anthropic Configuration (Secondary - Claude API) anthropic: { apiKey: 'your_anthropic_api_key_here', // Get from: https://console.anthropic.com/ model: 'claude-3-haiku-20240307', // Fast and cost-effective maxTokens: 500, temperature: 0.7 }, // OpenAI Configuration (Tertiary - GPT API) openai: { apiKey: 'your_openai_api_key_here', // Get from: https://platform.openai.com/api-keys model: 'gpt-4o-mini', // Cost-effective model maxTokens: 500, temperature: 0.7 }, // System prompt override (optional) systemPrompt: `You are BiTCH (Bi-directional Interface Terminal for Chat Handoffs), a snarky but professional AI assistant that coordinates between developer workspaces. You help developers communicate across multiple Cursor workspaces with inappropriate humor while maintaining technical competence. Your personality: - Snarky and irreverent but genuinely helpful - Use "bitch" portmanteau words (bitch-uation, bitch-lationship, etc.) - Professional code quality with inappropriate humor - Self-aware about being an AI coordination tool - Genuinely assist with workspace coordination tasks Keep responses concise (1-3 sentences) and always include a 🐍 emoji. Focus on being helpful while maintaining your bitchy personality.` };