· 简体中文 · llms.txt · Changelog · Issues
Keywords: CLI Proxy API management console · OpenAI proxy admin UI · LLM proxy management UI · static HTML admin dashboard · single-file admin console · self-hosted LLM proxy UI · OpenAI 中转 UI · LLM 代理管理面板 · 零构建 admin 静态页
Codex Bridge is a lightweight static management console for a CLI Proxy API service. The entire shipped artifact is a single HTML file (CLIProxyAPI/static/management.html) — no build step, no NPM, no backend, no database. Drop it on any static host (Nginx, Caddy, GitHub Pages, Cloudflare Pages, Vercel, Netlify, S3) and point it at your running CLI Proxy API.
- Provide a clean web-based management entry for CLI proxy services.
- Keep deployment simple (single static file output).
- Make operations easier for self-hosted and cloud environments.
- Static front-end management portal (
CLIProxyAPI/static/management.html) - Chinese-first interface (
lang="zh-CN") - Easy to host with Nginx, Caddy, or any static file server
cd CLIProxyAPI/static
python3 -m http.server 8080Open: http://127.0.0.1:8080/management.html
Deploy CLIProxyAPI/static/management.html to your static web host.
.
├── CLIProxyAPI/
│ └── static/
│ └── management.html
└── README.md
This repository includes baseline community standards:
LICENSECONTRIBUTING.mdCODE_OF_CONDUCT.mdSECURITY.md.github/ISSUE_TEMPLATE/*.github/pull_request_template.mdscripts/quality-check.sh
Run the local quality checks before opening a pull request:
make qualityQ: What is "CLI Proxy API"? A proxy that exposes a unified HTTP API in front of LLM providers (OpenAI / Anthropic / etc.) — often used to share keys across a team, bill internal usage, or hide upstream credentials. This repo is the management UI for one such proxy.
Q: Does this repo include the proxy itself? No. Bring your own CLI Proxy API instance. This is purely the management UI.
Q: Do I need a backend / database? No. The HTML page is the entire shipped artifact. It talks to your existing proxy's API.
Q: Can I use it with any LLM proxy? Only if the proxy speaks the management protocol the HTML expects. The page targets the CLI Proxy API project's specific surface.
Q: How do I customize it?
Edit CLIProxyAPI/static/management.html directly. There's no compile step.
- Add source map / unminified front-end artifacts
- Add automated CI checks after workflow permission is available
- Add screenshots and usage docs
Contributions are welcome. Please read CONTRIBUTING.md first.
MIT. See LICENSE for details.