bizcoder 0.3.60

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 (3) hide show
  1. package/README.md +129 -0
  2. package/bin/bizcoder.mjs +23 -0
  3. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,129 @@
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>
15
+ </p>
16
+
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>
41
+
42
+ [![OpenCode Terminal UI](packages/web/src/assets/lander/screenshot.png)](https://opencode.ai)
43
+
44
+ ---
45
+
46
+ ### Installation
47
+
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
+ ```
63
+
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).
70
+
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` |
77
+
78
+ ```bash
79
+ # macOS (Homebrew)
80
+ brew install --cask opencode-desktop
81
+ # Windows (Scoop)
82
+ scoop bucket add extras; scoop install extras/opencode-desktop
83
+ ```
84
+
85
+ #### Installation Directory
86
+
87
+ The install script respects the following priority order for the installation path:
88
+
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
93
+
94
+ ```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
+ ```
99
+
100
+ ### Agents
101
+
102
+ OpenCode includes two built-in agents you can switch between with the `Tab` key.
103
+
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
109
+
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.
112
+
113
+ Learn more about [agents](https://opencode.ai/docs/agents).
114
+
115
+ ### Documentation
116
+
117
+ For more info on how to configure OpenCode, [**head over to our docs**](https://opencode.ai/docs).
118
+
119
+ ### Contributing
120
+
121
+ If you're interested in contributing to OpenCode, please read our [contributing docs](./CONTRIBUTING.md) before submitting a pull request.
122
+
123
+ ### Building on OpenCode
124
+
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.
126
+
127
+ ---
128
+
129
+ **Join our community** [Discord](https://discord.gg/opencode) | [X.com](https://x.com/opencode)
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env node
2
+ // BizCoder CLI launcher — resolves the platform-specific binary (installed as an
3
+ // optional dependency) and execs it with full stdio passthrough.
4
+ import { spawnSync } from "node:child_process"
5
+ import { createRequire } from "node:module"
6
+ import os from "node:os"
7
+
8
+ const require = createRequire(import.meta.url)
9
+ const pkg = `bizcoder-${os.platform()}-${os.arch()}`
10
+ let bin
11
+ try {
12
+ bin = require.resolve(`${pkg}/bin/bizcoder`)
13
+ } catch {
14
+ console.error(`BizCoder: 이 플랫폼(${os.platform()}-${os.arch()})용 실행 파일을 찾지 못했어요.`)
15
+ console.error(`해결: npm install -g bizcoder --force · 안내: https://bizcoder.ai/cli/`)
16
+ process.exit(1)
17
+ }
18
+ const res = spawnSync(bin, process.argv.slice(2), { stdio: "inherit" })
19
+ if (res.error) {
20
+ console.error(res.error.message)
21
+ process.exit(1)
22
+ }
23
+ process.exit(res.status ?? 0)
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "bizcoder",
3
+ "version": "0.3.60",
4
+ "description": "BizCoder — 기업용 AI 코딩 에이전트 (terminal CLI). 웹과 같은 회사 계정·정책·청구로 묶입니다.",
5
+ "bin": { "bizcoder": "bin/bizcoder.mjs" },
6
+ "optionalDependencies": {
7
+ "bizcoder-darwin-arm64": "0.3.60",
8
+ "bizcoder-darwin-x64": "0.3.60",
9
+ "bizcoder-linux-arm64": "0.3.60",
10
+ "bizcoder-linux-x64": "0.3.60"
11
+ },
12
+ "engines": { "node": ">=18" },
13
+ "license": "MIT",
14
+ "homepage": "https://bizcoder.ai",
15
+ "repository": { "type": "git", "url": "https://github.com/latemonk/bizcoder-cli.git" },
16
+ "files": ["bin", "README.md"]
17
+ }