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.
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:
for f in db/migrate/*.rb; do echo "# File: $f"; echo ""; cat "$f"; echo -e "\n\n"; done | cat