opencodex

(★ 11,640)

OpenAI Codex 및 Claude Code를 위한 유니버설 프로바이더 프록시 — Codex CLI, App, SDK, Claude Code에서 모든 LLM(Claude, Gemini, Grok, DeepSeek, Ollama 등) 사용 가능

파일 탐색기

파일 수가 많아 일부만 표시됩니다. 전체 파일은 위 다운로드 버튼으로 확인해 주세요.

  • .coderabbit.yaml
  • .gitattributes
  • .gitignore
  • .npmignore
  • AGENTS.md
  • AGENTS_INSTALL.md
  • bun.lock
  • bunfig.toml
  • CONTRIBUTING.md
  • LICENSE
  • MAINTAINERS.md
  • README.md
  • SECURITY.md

# 설치 가이드

node
사전 준비물

설치 및 실행 절차

npm install -g @bitkyc08/opencodex

npm을 통해 opencodex를 전역으로 설치합니다.

ocx start

프록시와 대시보드를 로컬 호스트에서 실행합니다.

ocx init

설정 파일을 생성하고 Codex 환경을 대화형으로 구성합니다.

핵심 명령어

ocx start

프록시 서버와 대시보드를 로컬 포트에서 실행합니다.

ocx service

백그라운드 서비스 형태로 프록시를 실행합니다.

ocx init

대화형 설정 유틸리티를 실행하여 초기 설정을 완료합니다.

ocx gui

웹 대시보드를 다시 엽니다.

ocx status

현재 실행 상태 및 연결 상태를 확인합니다.

ocx stop

실행 중인 프록시를 중지하고 원래 설정을 복원합니다.

Node.js 18 이상이 필요하며, Bun 런타임은 자동으로 함께 설치됩니다.

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

파일 목록이 많아 일부만 표시됩니다.

릴리즈 타임라인

활발히 관리 중

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

bun install

설명 보기 ▼

Install JavaScript dependencies for a project from `package.json`.

bun {{[i|install]}}

Install all dependencies listed in `package.json`:

bun {{[i|install]}} {{package_name}}@{{version}}

Install a single package (this is an alias for `bun add`):

bun {{[i|install]}} {{[-g|--global]}} {{package_name}}

Install a package globally:

🔍

bun run

설명 보기 ▼

Execute a JavaScript/TypeScript file, or a script from `package.json`.

bun run {{script_name}}

Run a script defined in `package.json`:

bun run {{path/to/file.ts}}

Run a JavaScript or TypeScript file directly:

bun run --watch {{path/to/file.ts}}

Run a file in "watch" mode (restarts automatically when the file changes):

🔍

bun

설명 보기 ▼

JavaScript 런타임 및 툴킷.
번들러, 테스트 러너 및 패키지 관리자가 포함.
더 많은 정보: <https://bun.com/docs>.

bun init

JavaScript 파일 또는 `package.json` 스크립트 실행:

bun run {{path/to/file|script_name}}

단위 테스트 실행:

bun test

`package.json`에 종속성으로 나열된 모든 패키지를 다운로드하고 설치:

🔍

codex

설명 보기 ▼

OpenAI로 구동되는 터미널용 자연어 코드 어시스턴트.
요청을 수행하기 위해 현재 디렉터리의 파일을 읽고 수정.
더 많은 정보: <https://developers.openai.com/codex/cli/reference>.

codex

현재 디렉터리에서 대화형 Codex 세션을 시작:

codex "{{prompt}}"

프롬프트를 사용해 단일 Codex 명령을 실행:

codex --sandbox workspace-write "{{prompt}}"

프롬프트를 전체 자동 모드로 실행:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

npm install

설명 보기 ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

npm uninstall

설명 보기 ▼

Remove a package.

npm {{[r|uninstall]}} {{package_name}}

Remove a package from the current project:

npm {{[r|uninstall]}} {{package_name}} {{[-g|--global]}}

Remove a package globally:

npm {{[r|uninstall]}} {{package_name1 package_name2 ...}}

Remove multiple packages at once:

// repository documentation