Agent skill
status
Show current project status - build, tests, git, simulator
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
echo "=== Git Status ==="
git status --short
git log --oneline -3
2. Build Check
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
echo "=== Simulator ==="
xcrun simctl list devices booted 2>/dev/null | head -5 || echo "No simulators booted"
4. App Installed
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?