This file contains 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
#!/bin/bash | |
# llmfeed.sh - Copy repository contents to make them easily digestable for LLMs | |
# | |
# Author: Felix Weiglhofer | |
# License: MIT | |
# | |
# Description: | |
# Flattens the (text) content of a repository into a single string that can be | |
# easily read by LLMs. Inspired by uithub.com. | |
# |