coding-buddy
Keep Your Claude Code Buddy Forever — permanent coding companion that survives every update
파일 탐색기
- marketplace.json
- plugin.json
- bug_report.md
- feature_request.md
- ci.yml
- publish.yml
- tui-golden.yml
- coding-buddy.ts
- coding-buddy.ts
- commands.ts
- context.ts
- events.ts
- extension.test.ts
- identity.ts
- index.ts
- logger.ts
- prompt.ts
- renderers.test.ts
- renderers.ts
- storage.test.ts
- storage.ts
- ui.ts
- commands.ts
- events.test.ts
- events.ts
- identity.ts
- index.ts
- logger.ts
- prompt.ts
- registration.test.ts
- renderers.test.ts
- renderers.ts
- storage.test.ts
- storage.ts
- ui.ts
- file-storage.test.ts
- file-storage.ts
- widget-layout.test.ts
- widget-layout.ts
- backup.ts
- biomes.ts
- buddy-shell.ts
- disable.ts
- doctor.ts
- hunt.ts
- index.ts
- install.ts
- pick.ts
- runtime-app.test.ts
- runtime-app.ts
- settings.ts
- show.ts
- test-statusline.sh
- test-statusline.ts
- tui.tsx
- uninstall.ts
- upgrade.ts
- validate-species.ts
- verify.ts
- achievements.ts
- art-data.ts
- command-service.test.ts
- command-service.ts
- engine.test.ts
- engine.ts
- identity.test.ts
- identity.ts
- model.ts
- ports.ts
- reactions.test.ts
- reactions.ts
- render-model.ts
- slot-slug.test.ts
- slot-slug.ts
- buddy-brain-plan.md
- emotion-animations-plan.md
- hero.gif
- statusline-performance-complaints.md
- buddy-comment.sh
- file-type-react.sh
- hooks.json
- mood-react.sh
- name-react.sh
- react.sh
- suggest.sh
- baseline-40.png
- baseline-80.png
- cjk-80.png
- emoji-80.png
- config.json
- status.json
- check-statusline.sh
- check-vhs-goldens.sh
- Dockerfile.vhs
- fonts.conf
- render-statusline-pty.py
- render-vhs-goldens.sh
- statusline.tape
- vhs-density-fixtures.sh
- vhs-run-statusline.sh
- write-density-status.ts
- gen-emoji-widths.ts
- paths.sh
- snapshot-statusline.sh
- sync-version.test.ts
- sync-version.ts
- buddy-comment.test.ts
- buddy-comment.ts
- common.test.ts
- common.ts
- file-type-react.test.ts
- file-type-react.ts
- mood-react.test.ts
- mood-react.ts
- name-react.test.ts
- name-react.ts
- react.test.ts
- react.ts
- reaction-data.ts
- suggest.test.ts
- suggest.ts
- achievements.test.ts
- achievements.ts
- art.test.ts
- art.ts
- award-xp.ts
- check-suggestions.ts
- consolidate.ts
- index.ts
- manifest.test.ts
- mcp-launcher.sh
- memory.ts
- mood.ts
- path.test.ts
- path.ts
- paths_sh.test.ts
- shift-mood.ts
- state.test.ts
- state.ts
- statusline.test.ts
- suggestions.ts
- theme.ts
- uninstall.test.ts
- xp.ts
- SKILL.md
- buddy-status.sh
- buddy-status.test.ts
- combined-status.sh
- emoji-text.data
- emoji-widths.data
- substatus.sh
- .gitattributes
- .gitignore
- bun.lock
- CONTRIBUTING.md
- LICENSE
- package.json
- README.md
- SECURITY.md
- TESTING.md
- tsconfig.json
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
brew install
설명 보기 ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
bun install
설명 보기 ▼
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 link
설명 보기 ▼
bun link
Register a local package as linkable or link a registered package into a project.
See also: `bun unlink`.
bun link
Link the current package globally:
bun link {{package_name}}
Link a package locally to a project:
bun link --cwd {{path/to/package}}
Link a package in a specific directory:
bun run
설명 보기 ▼
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
설명 보기 ▼
bun
JavaScript 런타임 및 툴킷.
번들러, 테스트 러너 및 패키지 관리자가 포함.
더 많은 정보: <https://bun.com/docs>.
bun init
JavaScript 파일 또는 `package.json` 스크립트 실행:
bun run {{path/to/file|script_name}}
단위 테스트 실행:
bun test
`package.json`에 종속성으로 나열된 모든 패키지를 다운로드하고 설치:
git clone
설명 보기 ▼
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:
npx
설명 보기 ▼
npx
이 명령은 `npm exec`의 별칭입니다.
tldr npm exec
자세한 내용은 원본 명령을 참고하세요:
stty
설명 보기 ▼
stty
터미널 장치 인터페이스의 옵션을 설정하거자 조회.
관련 항목: `tput`.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/stty-invocation.html>.
stty size
현재 터미널 크기를 표시:
stty {{[-a|--all]}}
현재 터미널의 모든 설정을 표시:
stty {{rows|cols}} {{count}}
행 또는 열의 개수를 설정:
apt install
설명 보기 ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
