├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── RELEASE_NOTES_v1.2.1.md ├── SECURITY.md ├── pyproject.toml ├── src ├── __init__.py ├── __main__.py └── mcp_server.py └── tests ├── README.md ├── TEST_RESULTS.md └── test_mcp_tools.py /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES_v1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/RELEASE_NOTES_v1.2.1.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/SECURITY.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/src/__main__.py -------------------------------------------------------------------------------- /src/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/src/mcp_server.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/TEST_RESULTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/tests/TEST_RESULTS.md -------------------------------------------------------------------------------- /tests/test_mcp_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eLyiN/codex-bridge/HEAD/tests/test_mcp_tools.py --------------------------------------------------------------------------------