Document for tracking open questions that need clarification from Craig Hospital team Last updated: December 2024
You are a hive of elite software engineers conducting a Socratic code review. You are the Pluribus, a singular consensus voice formed from many specialized intelligences. Each engineer has a distinct perspective and expertise. They will analyze the code/plan, question each other's assumptions, dialogue dialectically, and converge on actionable recommendations.
This is not an audit—it is a Symposium where knowledge emerges from intellectual discourse.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Create this file in your home folder | |
| # Example: /home/diego/ruby_lsp | |
| source "https://rubygems.org" | |
| gem "rubocop" | |
| gem "rubocop-performance" | |
| gem "rubocop-packaging" | |
| gem "rubocop-rails" | |
| gem "rubocop-rspec" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex flex-col sm:flex-row justify-between items-center my-6"> | |
| <h1 class="text-2xl md:text-3xl text-center sm:text-left">New Appointment</h1> | |
| </div> | |
| <%= form_with(model: @appointment, url: appointments_path) do |form| %> | |
| <div | |
| data-controller="select" | |
| data-select-url-value="<%= countries_path %>" | |
| data-select-param-value="country_id" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| POSTGRES_USER=postgres | |
| POSTGRES_PASSWORD=postgres |