mcp-multiagent-bridge/codex_mcp_bridge_secure.py
dannystocker 418ded42a9 Rename to agent-agnostic bridge with launcher shims
- Renamed claude_bridge_secure.py to agent_bridge_secure.py for broader agent support
- Added run_cli() function to agent_bridge_secure.py as reusable entry point
- Created Claude-branded launcher (claude_mcp_bridge_secure.py) for SEO/discoverability
- Created Codex-branded launcher (codex_mcp_bridge_secure.py) for SEO/discoverability
- Updated all documentation references (QUICKSTART.md, EXAMPLE_WORKFLOW.md, RELEASE_NOTES.md, YOLO_MODE.md)
- Updated pyproject.toml entry points for all three launchers
- Updated bridge_cli.py, test_bridge.py, test_security.py references

This allows the same codebase to be discovered by users searching for 'Claude MCP bridge' or 'Codex MCP bridge' while avoiding code duplication.

🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-14 01:26:15 +01:00

8 lines
188 B
Python
Executable file

#!/usr/bin/env python3
"""Compatibility launcher for the secure agent bridge using the Codex naming."""
from agent_bridge_secure import run_cli
if __name__ == "__main__":
run_cli()