bizcoder 0.3.212 → 0.3.213

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +55 -99
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -1,129 +1,85 @@
1
1
  <p align="center">
2
- <a href="https://opencode.ai">
3
- <picture>
4
- <source srcset="packages/console/app/src/asset/logo-ornate-dark.svg" media="(prefers-color-scheme: dark)">
5
- <source srcset="packages/console/app/src/asset/logo-ornate-light.svg" media="(prefers-color-scheme: light)">
6
- <img src="packages/console/app/src/asset/logo-ornate-light.svg" alt="OpenCode logo">
7
- </picture>
8
- </a>
9
- </p>
10
- <p align="center">The open source AI coding agent.</p>
11
- <p align="center">
12
- <a href="https://opencode.ai/discord"><img alt="Discord" src="https://img.shields.io/discord/1391832426048651334?style=flat-square&label=discord" /></a>
13
- <a href="https://www.npmjs.com/package/opencode-ai"><img alt="npm" src="https://img.shields.io/npm/v/opencode-ai?style=flat-square" /></a>
14
- <a href="https://github.com/anomalyco/opencode/actions/workflows/publish.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/anomalyco/opencode/publish.yml?style=flat-square&branch=dev" /></a>
2
+ <a href="https://bizcoder.ai"><img src="https://bizcoder.ai/og.png" alt="BizCoder — 기업용 AI 코딩 에이전트" width="640"></a>
15
3
  </p>
16
4
 
17
- <p align="center">
18
- <a href="README.md">English</a> |
19
- <a href="README.zh.md">简体中文</a> |
20
- <a href="README.zht.md">繁體中文</a> |
21
- <a href="README.ko.md">한국어</a> |
22
- <a href="README.de.md">Deutsch</a> |
23
- <a href="README.es.md">Español</a> |
24
- <a href="README.fr.md">Français</a> |
25
- <a href="README.it.md">Italiano</a> |
26
- <a href="README.da.md">Dansk</a> |
27
- <a href="README.ja.md">日本語</a> |
28
- <a href="README.pl.md">Polski</a> |
29
- <a href="README.ru.md">Русский</a> |
30
- <a href="README.bs.md">Bosanski</a> |
31
- <a href="README.ar.md">العربية</a> |
32
- <a href="README.no.md">Norsk</a> |
33
- <a href="README.br.md">Português (Brasil)</a> |
34
- <a href="README.th.md">ไทย</a> |
35
- <a href="README.tr.md">Türkçe</a> |
36
- <a href="README.uk.md">Українська</a> |
37
- <a href="README.bn.md">বাংলা</a> |
38
- <a href="README.gr.md">Ελληνικά</a> |
39
- <a href="README.vi.md">Tiếng Việt</a>
40
- </p>
5
+ # BizCoder CLI
41
6
 
42
- [![OpenCode Terminal UI](packages/web/src/assets/lander/screenshot.png)](https://opencode.ai)
7
+ 기업용 AI 코딩 에이전트 **BizCoder** 를 터미널에서 쓰는 명령줄 도구예요. 웹(bizcoder.ai)과 **같은 회사 계정·정책·비용·기록**으로 묶이고, 모델 키는 서버에만 있어서 개발자가 키를 직접 다룰 일이 없어요. 웹은 「시켜 놓고 결과(PR)를 감독하는 곳」, CLI 는 「내 컴퓨터에서 옆에 두고 같이 짜는 곳」이에요.
43
8
 
44
- ---
9
+ - 홈페이지·도움말: <https://bizcoder.ai> · <https://bizcoder.ai/cli/>
10
+ - 지원 플랫폼: macOS(Apple Silicon·Intel) · Linux(x64·arm64) · Windows(x64·arm64)
45
11
 
46
- ### Installation
12
+ ## 설치
47
13
 
48
- ```bash
49
- # YOLO
50
- curl -fsSL https://opencode.ai/install | bash
51
-
52
- # Package managers
53
- npm i -g opencode-ai@latest # or bun/pnpm/yarn
54
- scoop install opencode # Windows
55
- choco install opencode # Windows
56
- brew install anomalyco/tap/opencode # macOS and Linux (recommended, always up to date)
57
- brew install opencode # macOS and Linux (official brew formula, updated less)
58
- sudo pacman -S opencode # Arch Linux (Stable)
59
- paru -S opencode-bin # Arch Linux (Latest from AUR)
60
- mise use -g opencode # Any OS
61
- nix run nixpkgs#opencode # or github:anomalyco/opencode for latest dev branch
62
- ```
14
+ 세 가지 방법 중 하나만 고르면 돼요.
63
15
 
64
- > [!TIP]
65
- > Remove versions older than 0.1.x before installing.
66
-
67
- ### Desktop App (BETA)
68
-
69
- OpenCode is also available as a desktop application. Download directly from the [releases page](https://github.com/anomalyco/opencode/releases) or [opencode.ai/download](https://opencode.ai/download).
16
+ ```bash
17
+ # Homebrew (macOS·Linux) 가장 간편해요
18
+ brew install ai3inc/tap/bizcoder
70
19
 
71
- | Platform | Download |
72
- | --------------------- | ---------------------------------- |
73
- | macOS (Apple Silicon) | `opencode-desktop-mac-arm64.dmg` |
74
- | macOS (Intel) | `opencode-desktop-mac-x64.dmg` |
75
- | Windows | `opencode-desktop-windows-x64.exe` |
76
- | Linux | `.deb`, `.rpm`, or `.AppImage` |
20
+ # 설치 스크립트 (macOS·Linux) — Node.js 가 없어도 돼요
21
+ curl -fsSL https://bizcoder.ai/install | bash
77
22
 
78
- ```bash
79
- # macOS (Homebrew)
80
- brew install --cask opencode-desktop
81
- # Windows (Scoop)
82
- scoop bucket add extras; scoop install extras/opencode-desktop
23
+ # npm (Windows 포함 전 플랫폼) — Node.js 18 이상
24
+ npm install -g bizcoder
83
25
  ```
84
26
 
85
- #### Installation Directory
27
+ `bizcoder --version` 으로 설치를 확인해요. 어느 방법으로 깔았든 업데이트는 `bizcoder update` 한 줄이에요.
86
28
 
87
- The install script respects the following priority order for the installation path:
29
+ > npm 으로 깔아 상태에서 Homebrew 바꾸려면 먼저 `npm uninstall -g bizcoder` 로 지워 주세요. 둘 다 남아 있으면 npm 쪽이 먼저 실행돼 새 버전이 안 보여요.
88
30
 
89
- 1. `$OPENCODE_INSTALL_DIR` - Custom installation directory
90
- 2. `$XDG_BIN_DIR` - XDG Base Directory Specification compliant path
91
- 3. `$HOME/bin` - Standard user binary directory (if it exists or can be created)
92
- 4. `$HOME/.opencode/bin` - Default fallback
31
+ ## 시작하기
93
32
 
94
33
  ```bash
95
- # Examples
96
- OPENCODE_INSTALL_DIR=/usr/local/bin curl -fsSL https://opencode.ai/install | bash
97
- XDG_BIN_DIR=$HOME/.local/bin curl -fsSL https://opencode.ai/install | bash
98
- ```
34
+ bizcoder login # 브라우저가 열리면 회사 계정으로 로그인 (PKCE OAuth) — 실제 키는 서버에만 있어요
35
+ bizcoder whoami # 로그인·소속 조직 확인
99
36
 
100
- ### Agents
37
+ cd my-project
38
+ bizcoder # 대화형 모드 (TUI)
39
+ bizcoder run "회원가입에 카카오 로그인 붙여줘" # 한 줄 지시를 비대화형으로
40
+ ```
101
41
 
102
- OpenCode includes two built-in agents you can switch between with the `Tab` key.
42
+ 대화 입력창에 `/` 치면 명령 목록이 열려요. `/자동`, `/되돌` 처럼 한글로 검색해도 찾아 줘요.
103
43
 
104
- - **build** - Default, full-access agent for development work
105
- - **plan** - Read-only agent for analysis and code exploration
106
- - Denies file edits by default
107
- - Asks permission before running bash commands
108
- - Ideal for exploring unfamiliar codebases or planning changes
44
+ ## 무엇이 다른가요
109
45
 
110
- Also included is a **general** subagent for complex searches and multistep tasks.
111
- This is used internally and can be invoked using `@general` in messages.
46
+ - **모델은 개발자가 고르고, 허용 범위는 회사가 정해요.** Claude·GPT·Gemini 여러 모델을 한 계정에서 골라 쓰고 작업 중에도 바꿔요. 자동 선택(스마트 라우팅)도 회사가 정한 허용 목록 안에서만 이뤄져요.
47
+ - **Claude Code·Codex 환경을 그대로 이어받아요.** 도구가 컴퓨터에 남긴 지침·스킬·MCP 서버·서브에이전트·슬래시 커맨드·프로젝트 메모리를 복사하거나 다시 등록하지 않아도 그 자리에서 읽어요. 작업 기록(핸드오프)도 같은 메모리 폴더에 남겨 세 도구를 오가며 「이어서 해줘」가 돼요. `bizcoder compat` 으로 무엇을 어디서 읽는지 확인할 수 있어요.
48
+ - **문서를 읽고 일해요.** HWP·엑셀·스캔 PDF 등 19종 문서를 그대로 읽어 작업에 반영해요. `bizcoder run "기획서.hwp 읽고 구현해줘"`
49
+ - **배포까지 내장돼 있어요.** `bizcoder deploy` 로 프로젝트를 인터넷에 올리고(서버가 대신 빌드·호스팅), `bizcoder apps`·`bizcoder env` 로 관리해요. 웹의 [내 배포 사이트]와 같은 목록이에요.
50
+ - **비용·정책·기록이 한곳에 모여요.** 사람·팀별 사용량이 집계되고 한도를 둘 수 있어요. 누가 무엇을 바꿨는지 조직 단위로 남아요.
51
+ - **에디터 안에서 써요.** VS Code 마켓플레이스와 Open VSX(Cursor·Windsurf·VSCodium)에서 BizCoder 확장을 설치하면 `Cmd+Esc`(Windows·Linux 는 `Ctrl+Esc`)로 에디터 옆 분할 터미널에 열리고, 보고 있는 파일과 선택한 줄이 자동으로 전달돼요.
112
52
 
113
- Learn more about [agents](https://opencode.ai/docs/agents).
53
+ ## 주요 명령
114
54
 
115
- ### Documentation
55
+ | 명령 | 설명 |
56
+ | --- | --- |
57
+ | `bizcoder` | 대화형 TUI 시작(기본). 프로젝트 폴더에서 실행해요 |
58
+ | `bizcoder run "…"` | 한 줄 지시를 비대화형으로 실행 |
59
+ | `bizcoder login` / `logout` / `whoami` | 회사 계정 로그인·로그아웃·상태 확인 |
60
+ | `bizcoder usage` | 이번 달 사용량과 허용 한도 |
61
+ | `bizcoder policy` | 회사 관리자가 내 계정에 정한 정책 |
62
+ | `bizcoder sessions` | 지금 살아 있는 내 세션(다른 터미널·웹 작업) |
63
+ | `bizcoder compat` | Claude Code·Codex 환경을 어떻게 이어받고 있는지 |
64
+ | `bizcoder harness` | 나에게 맞춰 배운 작업 방식(맞춤 하네스) |
65
+ | `bizcoder mcp` | MCP(외부 도구 연결) 서버 등록·관리 — `add`·`list`·`auth`·`logout`·`debug` |
66
+ | `bizcoder deploy [dir]` | 이 프로젝트를 인터넷에 배포 |
67
+ | `bizcoder apps` / `bizcoder env` | 배포한 앱 관리(중지·재시작·삭제·소스 되받기) · 환경변수(시크릿) 관리 |
68
+ | `bizcoder guide` | 처음 쓰는 분을 위한 사용 안내(한글). `bizcoder 도움말` 도 돼요 |
69
+ | `bizcoder update` | 최신(회사 권장) 버전으로 업데이트 |
70
+ | `bizcoder uninstall` | 제거 및 관련 파일 삭제 |
116
71
 
117
- For more info on how to configure OpenCode, [**head over to our docs**](https://opencode.ai/docs).
72
+ 자주 쓰는 옵션: `-m, --model <provider/model>` 모델 · `-c, --continue` 마지막 작업 이어서 · `--auto`(기본) / `--manual` 터미널 명령·배포 전 확인 받기 · `--mini` 간단 화면. 전체는 `bizcoder --help` 에 있어요.
118
73
 
119
- ### Contributing
74
+ ## 패키지 구성
120
75
 
121
- If you're interested in contributing to OpenCode, please read our [contributing docs](./CONTRIBUTING.md) before submitting a pull request.
76
+ `bizcoder` 얇은 실행기예요. 설치하면 컴퓨터에 맞는 실행 파일 패키지 하나가 함께 깔려요: `bizcoder-darwin-arm64` · `bizcoder-darwin-x64` · `bizcoder-linux-x64` · `bizcoder-linux-arm64` · `bizcoder-windows-x64` · `bizcoder-windows-arm64`. 이 패키지들을 직접 설치할 필요는 없어요.
122
77
 
123
- ### Building on OpenCode
78
+ ## 도움이 필요하면
124
79
 
125
- If you are working on a project that's related to OpenCode and is using "opencode" as part of its name, for example "opencode-dashboard" or "opencode-mobile", please add a note to your README to clarify that it is not built by the OpenCode team and is not affiliated with us in any way.
80
+ - 설치·사용 안내와 자주 묻는 질문: <https://bizcoder.ai/cli/>
81
+ - 회사 계정·정책·비용은 관리자 콘솔에서 다뤄요. 계정이 없다면 <https://bizcoder.ai> 에서 회사 계정으로 시작할 수 있어요.
126
82
 
127
83
  ---
128
84
 
129
- **Join our community** [Discord](https://discord.gg/opencode) | [X.com](https://x.com/opencode)
85
+ **BizCoder** is an enterprise AI coding agent by AI3. This CLI runs it in your terminal under the same company account, policies, budget, and audit trail as the web app; model keys never leave the server. Install with `brew install ai3inc/tap/bizcoder`, `curl -fsSL https://bizcoder.ai/install | bash`, or `npm install -g bizcoder`, then `bizcoder login`. It reads your existing Claude Code and Codex setup (instructions, skills, MCP servers, sub-agents, slash commands, project memory) in place, lets each developer pick any allowed model, reads office documents (HWP, spreadsheets, scanned PDFs), and deploys projects with `bizcoder deploy`. Docs: <https://bizcoder.ai/cli/>
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "bizcoder",
3
- "version": "0.3.212",
4
- "description": "BizCoder — 기업용 AI 코딩 에이전트 (terminal CLI). 웹과 같은 회사 계정·정책·청구로 묶입니다.",
3
+ "version": "0.3.213",
4
+ "description": "BizCoder — 기업용 AI 코딩 에이전트를 터미널에서. 웹과 같은 회사 계정·정책·비용·기록으로 묶이고, 모델 키는 서버에만 있어요. Claude Code·Codex 환경을 그대로 이어받아요.",
5
+ "keywords": ["bizcoder", "ai-coding-agent", "coding-agent", "cli", "terminal", "enterprise", "claude", "gpt", "gemini", "mcp", "deploy", "ai3"],
5
6
  "bin": { "bizcoder": "bin/bizcoder.mjs" },
6
7
  "optionalDependencies": {
7
- "bizcoder-darwin-arm64": "0.3.212",
8
- "bizcoder-darwin-x64": "0.3.212",
9
- "bizcoder-linux-arm64": "0.3.212",
10
- "bizcoder-linux-x64": "0.3.212",
11
- "bizcoder-windows-arm64": "0.3.212",
12
- "bizcoder-windows-x64": "0.3.212"
8
+ "bizcoder-darwin-arm64": "0.3.213",
9
+ "bizcoder-darwin-x64": "0.3.213",
10
+ "bizcoder-linux-arm64": "0.3.213",
11
+ "bizcoder-linux-x64": "0.3.213",
12
+ "bizcoder-windows-arm64": "0.3.213",
13
+ "bizcoder-windows-x64": "0.3.213"
13
14
  },
14
15
  "engines": { "node": ">=18" },
15
16
  "license": "MIT",