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
Step 2: Check Prerequisites
Related skills
More from kroegha/ralph-skill
ralph-new
Create a new greenfield project with full Ralph Loop automation. Use when starting a new project from scratch, creating a new application, or when the user says "ralph new", "new project", or "build me".
5ralph-enhance
Add enhancements to an existing project with Ralph Loop automation. Use when adding features to existing code, enhancing a codebase, or when the user says "ralph enhance", "add feature", or "enhance".
5