Quick iOS build and test cycle with error detection
Scanned 2/12/2026
Install via CLI
openskills install majiayu000/claude-skill-registry---
name: ios-build-test
description: Quick iOS build and test cycle with error detection
model: haiku
---
# iOS Build & Test Workflow
Execute a fast build and test cycle for the Leavn iOS app:
1. **Clean if needed:**
```bash
make clean
```
2. **Build for simulator:**
```bash
make sim-build 2>&1 | tee /tmp/build_output.txt
```
3. **Check for errors:**
```bash
grep -E "error:|BUILD FAILED" /tmp/build_output.txt
```
4. **If build succeeds, run tests:**
```bash
make test 2>&1 | tee /tmp/test_output.txt
```
5. **Report:**
- Build status (success/failure)
- Error count
- Test results (passed/failed/skipped)
- Time taken
**Return a concise summary with next steps if failures occur.**
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.