Code2LLM is a bash script designed to capture both the structure and content of your code into a single file for processing by an LLM.
- Generates a tree structure of your project directory
- Outputs the content of each file with the filename as a comment
- Customizable depth for directory structure (default: 5 levels)
- Easy to use with any project directory
-
Clone this repository:
git clone https://github.com/yourusername/code2llm.git
-
Navigate to the cloned directory:
cd code2llm
-
Make the script executable:
chmod +x code2llm.sh
Run the script with your project directory as an argument:
./code2llm.sh /path/to/your/project
This will output the directory structure and the contents of each file in the specified project directory.
The script generates output in the following format:
- Directory structure (up to 5 levels deep by default)
- For each file:
- Filename as a comment
- File contents
- Separator between files
Example output:
Directory Structure:
.
├── src
│ ├── main.py
│ └── utils.py
└── tests
└── test_main.py
File Contents:
# File: ./src/main.py
------------------------
def main():
print("Hello, World!")
if __name__ == "__main__":
main()
------------------------
# File: ./src/utils.py
------------------------
def helper_function():
return "I'm helping!"
------------------------
...
You can modify the script to:
- Change the depth of the directory structure by altering the
-L
option in thetree
command - Add filters for specific file types
- Exclude certain directories or files
- Implement size limits for large files
This project is licensed under the MIT License - see the LICENSE file for details.