1code

(★ 5,608)

코딩 에이전트(Claude Code, Codex)를 위한 오케스트레이션 레이어

파일 탐색기

  • .env.example
  • .gitignore
  • AGENTS.md
  • bun.lock
  • bun.lockb
  • CLAUDE.md
  • CONTRIBUTING.md
  • drizzle.config.ts
  • electron-builder.yml
  • electron-shim.js
  • electron.vite.config.ts
  • LICENSE
  • package.json
  • postcss.config.js
  • README.md
  • tailwind.config.js
  • tsconfig.json

# 설치 가이드

node
사전 준비물

설치 및 실행 절차

cp .env.example .env

환경 변수 파일 복사 및 설정

bun install

프로젝트 패키지 의존성 설치

bun run claude:download

Claude 바이너리 파일 다운로드

bun run codex:download

Codex 바이너리 파일 다운로드

bun run build

프로젝트 빌드 수행

bun run package:mac

macOS용 애플리케이션 패키징

핵심 명령어

bun install

Bun 패키지 관리자를 사용하여 프로젝트 의존성을 설치합니다.

bun run dev

개발 모드로 애플리케이션을 실행합니다.

bun run build

프로덕션 배포를 위한 빌드를 생성합니다.

bun run package:mac

macOS용 인스톨러 및 앱 패키지를 생성합니다.

Python 3.12 이상 사용 시 setuptools가 설치되어 있어야 합니다. claude:download와 codex:download 실행은 필수입니다.

# 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):

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

// repository documentation