con un clic
build-check
Run SwiftLint and xcodebuild to verify the project compiles cleanly.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Run SwiftLint and xcodebuild to verify the project compiles cleanly.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Implement UI from Figma designs via MCP with a closed-loop pixel-parity check. Extract exact values (never eyeball), translate to SwiftUI, then render→diff→fix against the Figma export until it matches. Use when implementing or auditing UI against Figma.
HTTP networking layer reference — TargetType, HTTPClient, services, error handling.
Fetch CodeRabbit review comments from batch PRs and auto-fix the issues. Pushes fixes and re-requests review.
Run multiple tasks overnight as parallel PRs. Produces a PRD per task, selects skills/rules, spawns isolated agents, and reports PR links.
Run multiple tasks overnight as parallel PRs. Produces a PRD per task, selects skills/rules, spawns isolated agents, and reports PR links.
Create a GitHub issue for vultisig-ios using bug/feature templates.
| name | build-check |
| description | Run SwiftLint and xcodebuild to verify the project compiles cleanly. |
| disable-model-invocation | true |
Full quality check: lint first, then build.
swiftlint lint --config VultisigApp/.swiftlint.yml VultisigApp/
If lint fails, fix all warnings before proceeding to build.
make build-check # regenerate + compile (pipefail enabled, fails loudly)
make test # builds + runs tests — prefer when test feedback is needed
make build-check is what the batch/agent automation uses — it runs make generate first, then xcodebuild build with set -o pipefail so a failed build doesn't silently pass due to the trailing tail -20.
For a custom destination or scheme, drop to xcodebuild directly (remember set -o pipefail):
set -o pipefail
cd VultisigApp && xcodebuild build \
-project VultisigApp.xcodeproj \
-scheme VultisigApp \
-sdk iphonesimulator \
-destination 'generic/platform=iOS Simulator' \
-skipPackagePluginValidation 2>&1 | tail -20
Report results clearly: