1code

(★ 5,608)

Orchestration layer for coding agents (Claude Code, Codex)

File Explorer

  • .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

# Installation Guide

node
Prerequisites

Setup Steps

cp .env.example .env

Copy and configure environment variables file

bun install

Install project package dependencies

bun run claude:download

Download required Claude binary file

bun run codex:download

Download required Codex binary file

bun run build

Execute project build

bun run package:mac

Package application for macOS

Key Commands

bun install

Install project dependencies using the Bun package manager.

bun run dev

Run the application in development mode.

bun run build

Create a build for production deployment.

bun run package:mac

Generate installer and app package for macOS.

Ensure setuptools is installed if using Python 3.12+. Running claude:download and codex:download is required.

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

bun install

View Details ▼

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

View Details ▼

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

View Details ▼

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