Agent Skills: iOS Build & Test Workflow

Quick iOS build and test cycle with error detection

UncategorizedID: willsigmon/sigstack/ios-build-test

Install this agent skill to your local

pnpm dlx add-skill https://github.com/willsigmon/sigstack/tree/HEAD/ops/sigmachines/claude/skills/ios-build-test

Skill Files

Browse the full folder contents for ios-build-test.

Download Skill

Loading file tree…

ops/sigmachines/claude/skills/ios-build-test/SKILL.md

Skill Metadata

Name
ios-build-test
Description
Quick iOS build and test cycle with error detection

iOS Build & Test Workflow

Execute a fast build and test cycle for the Leavn iOS app:

  1. Clean if needed:
make clean
  1. Build for simulator:
make sim-build 2>&1 | tee /tmp/build_output.txt
  1. Check for errors:
grep -E "error:|BUILD FAILED" /tmp/build_output.txt
  1. If build succeeds, run tests:
make test 2>&1 | tee /tmp/test_output.txt
  1. Report:
  • Build status (success/failure)
  • Error count
  • Test results (passed/failed/skipped)
  • Time taken

Return a concise summary with next steps if failures occur.