ワンクリックで
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.