Ralph Ultra Quick Fix
Rapidly diagnose and fix issues in an existing project.
What this does
- •Auto-detects project type and framework
- •Runs diagnostics — environment-doctor, security-auditor, flaky-test-detector
- •Creates minimal
.ralph-ultra/setup if not present - •Generates fix PRD — Targeted stories for identified issues
- •Optionally runs the fix loop immediately
Usage
code
/ralph-ultra:ralph-fix [--dir path] [--analyze-only] [--auto-run]
Options
| Option | Default | Description |
|---|---|---|
--dir | . | Project directory to fix |
--analyze-only | false | Only analyze, don't create fix plan |
--auto-run | false | Immediately run fix loop after analysis |
Diagnostics Run
- •Environment Doctor — Runtime versions, missing deps, stale caches
- •Security Auditor — Vulnerabilities, hardcoded secrets, insecure patterns
- •Flaky Test Detector — Intermittent test failures
- •Dependency Updater — Outdated packages, known CVEs
- •Log Analyzer — Recent error patterns
Example
Fix a Node.js project with security issues:
code
/ralph-ultra:ralph-fix --dir ./my-project