ralph-status
Installation
SKILL.md
Ralph Status Dashboard Skill
Display project status and offer to continue autonomous development if tasks remain.
WORKFLOW
Step 1: Detect Platform
# Detect operating system
if [[ "$OSTYPE" == "msys" ]] || [[ "$OSTYPE" == "win32" ]] || [[ -n "$WINDIR" ]]; then
PLATFORM="windows"
else
PLATFORM="unix"
fi