No project description provided
Project description
Code2Prompt
Code2Prompt is a powerful command-line tool that generates comprehensive prompts from codebases, designed to streamline interactions between developers and Large Language Models (LLMs) for code analysis, documentation, and improvement tasks.
Table of Contents
- Why Code2Prompt?
- Features
- Installation
- Quick Start
- Usage
- Options
- Examples
- Templating System
- Integration with LLM CLI
- GitHub Actions Integration
- Troubleshooting
- Contributing
- License
Why Code2Prompt?
When working with Large Language Models on software development tasks, providing extensive context about the codebase is crucial. Code2Prompt addresses this need by:
- Offering a holistic view of your project, enabling LLMs to better understand the overall structure and dependencies.
- Allowing for more accurate recommendations and suggestions from LLMs.
- Maintaining consistency in coding style and conventions across the project.
- Facilitating better interdependency analysis and refactoring suggestions.
- Enabling more contextually relevant documentation generation.
- Helping LLMs learn and apply project-specific patterns and idioms.
By generating a comprehensive Markdown file containing the content of your codebase, Code2Prompt simplifies the process of providing context to LLMs, making it an invaluable tool for developers working with AI-assisted coding tools.
Features
- Process single files or entire directories
- Support for multiple programming languages
- Gitignore integration
- Comment stripping
- Line number addition
- Custom output formatting using Jinja2 templates
- Token counting for AI model compatibility
- Clipboard copying of generated content
- Automatic traversal of directories and subdirectories
- File filtering based on patterns
- File metadata inclusion (extension, size, creation time, modification time)
- Graceful handling of binary files and encoding issues
Installation
Choose one of the following methods to install Code2Prompt:
Using pip (recommended)
pip install code2prompt
Using Poetry
-
Ensure you have Poetry installed:
curl -sSL https://install.python-poetry.org | python3 -
-
Install Code2Prompt:
poetry add code2prompt
Using pipx
pipx install code2prompt
Quick Start
-
Generate a prompt from a single Python file:
code2prompt --path /path/to/your/script.py
-
Process an entire project directory and save the output:
code2prompt --path /path/to/your/project --output project_summary.md
-
Generate a prompt for multiple files, excluding tests:
code2prompt --path /path/to/src --path /path/to/lib --exclude "*/tests/*" --output codebase_summary.md
Usage
The basic syntax for Code2Prompt is:
code2prompt --path /path/to/your/code [OPTIONS]
For multiple paths:
code2prompt --path /path/to/dir1 --path /path/to/file2.py [OPTIONS]
Options
Option | Short | Description |
---|---|---|
--path |
-p |
Path(s) to the directory or file to process (required, multiple allowed) |
--output |
-o |
Name of the output Markdown file |
--gitignore |
-g |
Path to the .gitignore file |
--filter |
-f |
Comma-separated filter patterns to include files (e.g., ".py,.js") |
--exclude |
-e |
Comma-separated patterns to exclude files (e.g., ".txt,.md") |
--case-sensitive |
Perform case-sensitive pattern matching | |
--suppress-comments |
-s |
Strip comments from the code files |
--line-number |
-ln |
Add line numbers to source code blocks |
--no-codeblock |
Disable wrapping code inside markdown code blocks | |
--template |
-t |
Path to a Jinja2 template file for custom prompt generation |
--tokens |
Display the token count of the generated prompt | |
--encoding |
Specify the tokenizer encoding to use (default: "cl100k_base") | |
--create-templates |
Create a templates directory with example templates | |
--version |
-v |
Show the version and exit |
Examples
-
Generate documentation for a Python library:
code2prompt --path /path/to/library --output library_docs.md --suppress-comments --line-number --filter "*.py"
-
Prepare a codebase summary for a code review, focusing on JavaScript and TypeScript files:
code2prompt --path /path/to/project --filter "*.js,*.ts" --exclude "node_modules/*,dist/*" --template code_review.j2 --output code_review.md
-
Create input for an AI model to suggest improvements, focusing on a specific directory:
code2prompt --path /path/to/src/components --suppress-comments --tokens --encoding cl100k_base --output ai_input.md
-
Analyze comment density across a multi-language project:
code2prompt --path /path/to/project --template comment_density.j2 --output comment_analysis.md --filter "*.py,*.js,*.java"
-
Generate a prompt for a specific set of files, adding line numbers:
code2prompt --path /path/to/important_file1.py --path /path/to/important_file2.js --line-number --output critical_files.md
Templating System
Code2Prompt supports custom output formatting using Jinja2 templates.
To use a custom template:
code2prompt --path /path/to/code --template /path/to/your/template.j2
Example custom template (code_review.j2):
# Code Review Summary
{% for file in files %}
## {{ file.path }}
- **Language**: {{ file.language }}
- **Size**: {{ file.size }} bytes
- **Last Modified**: {{ file.modified }}
### Code:
```{{ file.language }}
{{ file.content }}
Review Notes:
- Check for proper error handling
- Verify function documentation
- Look for potential performance improvements
{% endfor %}
Overall Project Health:
- Total files reviewed: {{ files|length }}
- Primary languages: [List top 3 languages]
- Areas for improvement: [Add your observations]
## Templating system documentation
A full documentation of the templating system is available at [Documentation Templating](./TEMPLATE.md)
## Integration with LLM CLI
Code2Prompt can be seamlessly integrated with Simon Willison's [llm](https://github.com/simonw/llm) CLI tool to leverage the power of large language models for code analysis and improvement.
### Installation
First, ensure you have both Code2Prompt and llm installed:
```bash
pip install code2prompt llm
Basic Usage
-
Generate a code summary and analyze it with an LLM:
code2prompt --path /path/to/your/project | llm "Analyze this codebase and provide insights on its structure and potential improvements"
-
Process a specific file and get refactoring suggestions:
code2prompt --path /path/to/your/script.py | llm "Suggest refactoring improvements for this code"
Advanced Use Cases
-
Code Review Assistant:
code2prompt --path /path/to/project --filter "*.py" | llm "Perform a code review on this Python project. Identify potential bugs, suggest improvements for code quality, and highlight any security concerns."
-
Documentation Generator:
code2prompt --path /path/to/project --suppress-comments | llm "Generate detailed documentation for this project. Include an overview of the project structure, main components, and how they interact. Provide examples of how to use key functions and classes."
-
Refactoring Suggestions:
code2prompt --path /path/to/complex_module.py | llm "Analyze this Python module and suggest refactoring opportunities. Focus on improving readability, reducing complexity, and enhancing maintainability."
GitHub Actions Integration
You can integrate Code2Prompt and llm into your GitHub Actions workflow to automatically analyze your codebase on every push. Here's an example workflow:
name: Code Analysis
on: [push]
jobs:
analyze-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install code2prompt llm
- name: Analyze codebase
run: |
code2prompt --path . | llm "Perform a comprehensive analysis of this codebase. Identify areas for improvement, potential bugs, and suggest optimizations." > analysis.md
- name: Upload analysis
uses: actions/upload-artifact@v2
with:
name: code-analysis
path: analysis.md
This workflow will generate a code analysis report on every push to your repository.
Troubleshooting
-
Issue: Code2Prompt is not recognizing my .gitignore file. Solution: Ensure you're running Code2Prompt from the root of your project, or specify the path to your .gitignore file using the
--gitignore
option. -
Issue: The generated output is too large for my AI model. Solution: Use the
--tokens
option to check the token count, and consider using more specific--filter
or--exclude
options to reduce the amount of processed code. -
Issue: Encoding-related errors when processing files. Solution: Try specifying a different encoding with the
--encoding
option, e.g.,--encoding utf-8
. -
Issue: Some files are not being processed. Solution: Check if the files are binary or if they match any exclusion patterns. Use the
--case-sensitive
option if your patterns are case-sensitive.
Contributing
Contributions to Code2Prompt are welcome! Please read our Contributing Guide for details on our code of conduct and the process for submitting pull requests.
License
Code2Prompt is released under the MIT License. See the LICENSE file for details.
Made with ❤️ by Raphaël MANSUY
This comprehensive README provides a detailed guide to using Code2Prompt, including its features, installation methods, usage examples, and integration with other tools like llm and GitHub Actions. It addresses various use cases and provides troubleshooting tips to help users get the most out of the tool.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file code2prompt-0.6.3.tar.gz
.
File metadata
- Download URL: code2prompt-0.6.3.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Darwin/23.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cf00a3291e90defb83b5d2558fd4da3527537d7cdb6e24eb1588075e5b89cb4 |
|
MD5 | a801dab3d5920499329773ba248fb1f9 |
|
BLAKE2b-256 | 30139f890b104188c9ab8ab1af71e9c5d43c842eccf52655c5655a3b41cad0ae |
File details
Details for the file code2prompt-0.6.3-py3-none-any.whl
.
File metadata
- Download URL: code2prompt-0.6.3-py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Darwin/23.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42bcf65a8126ef1e132123eaadb168cac68cdb23e02ad3f63c0423943b96006e |
|
MD5 | bbc82a49a308c3fbe7fe92787ff6e045 |
|
BLAKE2b-256 | 5add4c217334b3c7140493172bd9da0a8daa60d522619b450339519a73e8bbb8 |