# Ruby On Rails AI Helper Snippets > This gist has cli snippets to help you gather code to paste into LLMs like Grok, OpenAI, Claude if you need to do quick/dirty vibing and collaboration without a fully integrated IDE like Windsurf or Cursor. ## Vibe: analyze migrations in a Ruby on Rails Repository Prompt: can you cat all my migrations files into a single output so I can review it? leave a comment of each model file path before each section Output: ```bash for f in db/migrate/*.rb; do echo "# File: $f"; echo ""; cat "$f"; echo -e "\n\n"; done | cat ``` ## Vibe: analyze model files, relationships and methods in a Ruby on Rails Repository Prompt: can you cat all my model files into a single output so I can review it? leave a comment of each model file path before each section Output: ```bash for f in app/models/*.rb; do echo "# File: $f"; echo ""; cat "$f"; echo -e "\n\n"; done | cat ```