Secure bridge for executing Claude Code commands remotely via Telegram or API. Features: - Secure token-based authentication - Rate limiting and quota management - Telegram integration - YOLO mode for rapid iteration - Comprehensive test suite Files: - claude_bridge_secure.py - Main bridge implementation - bridge_cli.py - CLI interface - yolo_mode.py - Rapid iteration mode - test_bridge.py - Test suite - demo_standalone.py - Standalone demo Author: Danny Stocker (with Claude Code) Date: 2025-10-26
22 lines
406 B
Text
22 lines
406 B
Text
# Claude Code Multi-Agent Bridge Requirements
|
|
|
|
# Core MCP SDK for Model Context Protocol
|
|
mcp>=1.0.0
|
|
|
|
# Standard library dependencies (included with Python)
|
|
# - asyncio
|
|
# - json
|
|
# - hmac
|
|
# - hashlib
|
|
# - secrets
|
|
# - re
|
|
# - sqlite3
|
|
# - subprocess
|
|
# - datetime
|
|
# - pathlib
|
|
|
|
# Optional: For enhanced features
|
|
# redis>=4.0.0 # If using Redis instead of SQLite
|
|
|
|
# Installation:
|
|
# pip install -r requirements.txt
|