Agent skill

status

Show current project status - build, tests, git, simulator

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/status-pjpj42-gridracer

SKILL.md

Project Status

Quick overview of GridRacer project state.

Checks

1. Git Status

bash
echo "=== Git Status ==="
git status --short
git log --oneline -3

2. Build Check

bash
echo "=== Build Check ==="
xcodebuild -scheme GridRacer -configuration Debug -destination 'generic/platform=iOS Simulator' build 2>&1 | grep -E "(SUCCEEDED|FAILED|error:)" | tail -5

3. Simulator Status

bash
echo "=== Simulator ==="
xcrun simctl list devices booted 2>/dev/null | head -5 || echo "No simulators booted"

4. App Installed

bash
echo "=== App Status ==="
xcrun simctl get_app_container booted trouarat.GridRacer 2>/dev/null && echo "App installed" || echo "App not installed"

Output Format

GridRacer Status
================
Git: N files modified, branch: main
Build: SUCCEEDED / FAILED
Simulator: iPhone 16 (booted) / None
App: Installed / Not installed

Recent commits:
- abc1234 Last commit message
- def5678 Previous commit

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