gitextract_5qewtfdp/ ├── .claude/ │ └── memories/ │ └── project_memory.json ├── .gitattributes ├── .github/ │ ├── aw/ │ │ └── actions-lock.json │ └── workflows/ │ ├── claude-code-review.yml │ ├── claude.yml │ ├── opencode-review.yml │ ├── test.yml │ ├── triage-incoming-issues.lock.yml │ └── triage-incoming-issues.md ├── .gitignore ├── CLAUDE.md ├── CONTRIBUTING.md ├── IMPLEMENTATION_PLAN.md ├── IMPLEMENTATION_STATUS.md ├── LICENSE ├── README.md ├── SPECIFICATION_WORKSHOP.md ├── TESTING.md ├── create_files.sh ├── docs/ │ ├── archive/ │ │ └── 2025-10-milestones/ │ │ ├── EXPERT_PANEL_REVIEW.md │ │ ├── PHASE1_COMPLETION.md │ │ ├── PHASE2_COMPLETION.md │ │ ├── README.md │ │ ├── STATUS.md │ │ ├── TEST_IMPLEMENTATION_SUMMARY.md │ │ └── USE_CASES.md │ ├── code-review/ │ │ ├── 2026-01-08-cli-parsing-tests-review.md │ │ └── 2026-01-08-phase-1.1-modern-cli-review.md │ ├── generated/ │ │ └── .gitkeep │ └── user-guide/ │ ├── 01-quick-start.md │ ├── 02-understanding-ralph-files.md │ ├── 03-writing-requirements.md │ └── README.md ├── examples/ │ ├── rest-api/ │ │ ├── .ralph/ │ │ │ ├── PROMPT.md │ │ │ ├── fix_plan.md │ │ │ └── specs/ │ │ │ └── api.md │ │ └── README.md │ └── simple-cli-tool/ │ ├── .ralph/ │ │ ├── PROMPT.md │ │ └── fix_plan.md │ └── README.md ├── install.sh ├── lib/ │ ├── circuit_breaker.sh │ ├── date_utils.sh │ ├── enable_core.sh │ ├── file_protection.sh │ ├── response_analyzer.sh │ ├── task_sources.sh │ ├── timeout_utils.sh │ └── wizard_utils.sh ├── logs/ │ └── .gitkeep ├── migrate_to_ralph_folder.sh ├── package.json ├── ralph_enable.sh ├── ralph_enable_ci.sh ├── ralph_import.sh ├── ralph_loop.sh ├── ralph_monitor.sh ├── sample-prd.md ├── setup.sh ├── specs/ │ └── stdlib/ │ └── .gitkeep ├── src/ │ └── .gitkeep ├── templates/ │ ├── .gitignore │ ├── AGENT.md │ ├── PROMPT.md │ ├── fix_plan.md │ ├── ralphrc.template │ └── specs/ │ └── .gitkeep ├── tests/ │ ├── helpers/ │ │ ├── fixtures.bash │ │ ├── mocks.bash │ │ └── test_helper.bash │ ├── integration/ │ │ ├── test_edge_cases.bats │ │ ├── test_installation.bats │ │ ├── test_loop_execution.bats │ │ ├── test_prd_import.bats │ │ └── test_project_setup.bats │ ├── test_error_detection.sh │ ├── test_stuck_loop_detection.sh │ └── unit/ │ ├── test_circuit_breaker_recovery.bats │ ├── test_cli_modern.bats │ ├── test_cli_parsing.bats │ ├── test_enable_core.bats │ ├── test_exit_detection.bats │ ├── test_file_protection.bats │ ├── test_integrity_check.bats │ ├── test_json_parsing.bats │ ├── test_ralph_enable.bats │ ├── test_rate_limiting.bats │ ├── test_session_continuity.bats │ ├── test_task_sources.bats │ └── test_wizard_utils.bats └── uninstall.sh