├── .github └── workflows │ └── release.yml ├── .gitignore ├── BUILD_RELEASE.md ├── LICENSE ├── README.md ├── README_CN.md ├── app.js ├── bundle-entry.js ├── i18n.js ├── index.html ├── logo.jpg ├── package.json ├── src ├── core │ ├── api-client.js │ ├── config-service.js │ ├── connection.js │ ├── error-handler.js │ └── event-bus.js ├── modules │ ├── ai-providers.js │ ├── api-keys.js │ ├── auth-files.js │ ├── config-editor.js │ ├── language.js │ ├── login.js │ ├── logs.js │ ├── navigation.js │ ├── oauth.js │ ├── settings.js │ ├── theme.js │ └── usage.js └── utils │ ├── array.js │ ├── constants.js │ ├── dom.js │ ├── html.js │ ├── models.js │ ├── secure-storage.js │ └── string.js ├── styles.css └── webpack.config.js /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD_RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/BUILD_RELEASE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/README_CN.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/app.js -------------------------------------------------------------------------------- /bundle-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/bundle-entry.js -------------------------------------------------------------------------------- /i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/i18n.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/index.html -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/logo.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/package.json -------------------------------------------------------------------------------- /src/core/api-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/core/api-client.js -------------------------------------------------------------------------------- /src/core/config-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/core/config-service.js -------------------------------------------------------------------------------- /src/core/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/core/connection.js -------------------------------------------------------------------------------- /src/core/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/core/error-handler.js -------------------------------------------------------------------------------- /src/core/event-bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/core/event-bus.js -------------------------------------------------------------------------------- /src/modules/ai-providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/ai-providers.js -------------------------------------------------------------------------------- /src/modules/api-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/api-keys.js -------------------------------------------------------------------------------- /src/modules/auth-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/auth-files.js -------------------------------------------------------------------------------- /src/modules/config-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/config-editor.js -------------------------------------------------------------------------------- /src/modules/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/language.js -------------------------------------------------------------------------------- /src/modules/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/login.js -------------------------------------------------------------------------------- /src/modules/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/logs.js -------------------------------------------------------------------------------- /src/modules/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/navigation.js -------------------------------------------------------------------------------- /src/modules/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/oauth.js -------------------------------------------------------------------------------- /src/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/settings.js -------------------------------------------------------------------------------- /src/modules/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/theme.js -------------------------------------------------------------------------------- /src/modules/usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/modules/usage.js -------------------------------------------------------------------------------- /src/utils/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/utils/array.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/utils/constants.js -------------------------------------------------------------------------------- /src/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/utils/dom.js -------------------------------------------------------------------------------- /src/utils/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/utils/html.js -------------------------------------------------------------------------------- /src/utils/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/utils/models.js -------------------------------------------------------------------------------- /src/utils/secure-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/utils/secure-storage.js -------------------------------------------------------------------------------- /src/utils/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/src/utils/string.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/styles.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/router-for-me/Cli-Proxy-API-Management-Center/HEAD/webpack.config.js --------------------------------------------------------------------------------