BridgeSpeak

(★ 17)

Give AI coding agents a voice. Cross-agent skill that wraps OpenAI gpt-realtime-2 for Claude Code, Hermes, and OpenClaw.

파일 탐색기

  • .gitignore
  • CHANGELOG.md
  • CONTRIBUTING.md
  • LICENSE
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

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:

🔍

claude

설명 보기 ▼

코드베이스를 이해하고 자연어 명령을 통해 더 빠르게 코딩할 수 있도록 도와주는 에이전트 기반 코딩 도구.
더 많은 정보: <https://code.claude.com/docs/en/cli-reference>.

claude prompt

프롬프트로 실행:

claude update

`claude`를 업데이트:

claude mcp list

지정된 MCP 서버 목록을 표시:

🔍

ffplay

설명 보기 ▼

FFmpeg 라이브러리와 SDL 라이브러리를 사용하는 간단하고 휴대 간으한 미디어 플레이어.
더 많은 정보: <https://ffmpeg.org/ffplay-all.html>.

ffplay {{path/to/file}}

미디어 파일 재생:

ffplay -nodisp {{path/to/file}}

GUI 없이 미디어 파일에서 오디오 재생:

ffmpeg -i {{path/to/file}} -c {{copy}} -f {{media_format}} - | ffplay -

`stdin`을 통해 `ffmpeg`에 의해 전달된 미디어 재생:

🔍

python3

설명 보기 ▼

이 명령은 `python`의 별칭입니다.

tldr python

자세한 내용은 원본 명령을 참고하세요:

🔍

aplay

설명 보기 ▼

ALSA 사운드카드 드라이버를 위한 사운드 플레이어.
더 많은 정보: <https://manned.org/aplay>.

aplay {{path/to/file}}

특정 파일 재생 (파일 형식에 따라 샘플링 속도, 비트 깊이 등이 자동으로 결정됨):

aplay {{[-d|--duration]}} 10 {{[-r|--rate]}} 2500 {{path/to/file}}

특정 파일의 처음 10초를 2500 Hz에서 재생:

aplay {{[-c|--channels]}} 1 {{[-t|--file-type]}} raw {{[-r|--rate]}} 22050 {{[-f|--format]}} mu_law {{path/to/file}}

22050 Hz, 모노, 8비트, Mu-Law `.au` 파일로 원시 파일 재생:

🔍

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:

🔍

pw-play

설명 보기 ▼

이 명령은 `pw-cat --playback`의 별칭입니다.

tldr pw-cat

자세한 내용은 원본 명령을 참고하세요:

🔍

afplay

설명 보기 ▼

명령줄 오디오 플레이어.
더 많은 정보: <https://keith.github.io/xcode-man-pages/afplay.1.html>.

afplay {{path/to/file}}

사운드 파일 재생 (재생이 끝날 때까지 대기):

afplay --rate {{2}} {{path/to/file}}

사운드 파일을 2배속으로 재생 (재생 속도):

afplay --rate {{0.5}} {{path/to/file}}

사운드 파일을 반속도로 재생:

🔍

winget

설명 보기 ▼

윈도우 패키지 매니저.
더 많은 정보: <https://learn.microsoft.com/windows/package-manager/winget>.

winget {{[add|install]}} {{package}}

패키지 설치:

winget {{[rm|uninstall]}} {{package}}

패키지 제거 (참고: `remove` 대신 `uninstall` 을 사용할 수 있음):

winget show {{package}}

패키지에 대한 정보 표시:

// repository documentation