Agent skill

ios-build-test

Quick iOS build and test cycle with error detection

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/ios-build-test

SKILL.md

iOS Build & Test Workflow

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

  1. Clean if needed:
bash
make clean
  1. Build for simulator:
bash
make sim-build 2>&1 | tee /tmp/build_output.txt
  1. Check for errors:
bash
grep -E "error:|BUILD FAILED" /tmp/build_output.txt
  1. If build succeeds, run tests:
bash
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.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results