원클릭으로
build
Build the speech-swift package (release or debug). Use when preparing for testing, benchmarking, or running demos.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Build the speech-swift package (release or debug). Use when preparing for testing, benchmarking, or running demos.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run tests. Use after code changes to validate. Arguments: unit (default, no GPU), e2e (with models), filter name, or all.
Review a pull request for conceptual fit, architecture impact, adversarial failure modes, security risk, docs impact, regression risk, test coverage, and merge readiness. Use when asked to review a PR, check whether a PR is safe to merge, decide if more tests are needed, perform adversarial or security review, or summarize PR risk.
Run performance + quality benchmarks. ASR reports WER, RTF, peak RSS, and throughput across engines/variants. Arguments include asr, tts, vad, diarize, asr-quick.
| name | build |
| description | Build the speech-swift package (release or debug). Use when preparing for testing, benchmarking, or running demos. |
| disable-model-invocation | false |
| argument-hint | ["release|debug"] |
| allowed-tools | Bash |
Build the package in the specified configuration. Default: release.
config="${ARGUMENTS:-release}"
if [ "$config" = "debug" ]; then
make debug
else
make build
fi
The metallib step compiles MLX Metal shaders. Without it, inference runs ~5x slower due to JIT compilation. make build handles this automatically.