Skip to main content

build

Build the speech-swift package (release or debug). Use when preparing for testing, benchmarking, or running demos.

Jump to install

Source facts

Repository
soniqo/speech-swift
Last source activity
March 23, 2026 at 19:31
Detected SKILL.md language
English
Stars
1,189
Forks
166

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
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 Build the package in the specified configuration. Default: release. ```bash 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.
View on GitHub