CodeMapper is a powerful Python tool designed to generate comprehensive Markdown (pdf, xml, and json outputs are on the way) representations of codebases. It bridges the gap between human developers and AI systems by providing a clear, structured view of project architectures and their complete contents. Whether you're working with local directories or GitHub repositories, CodeMapper creates a single, navigable document that encapsulates the full structure and content of a project.
This tool is invaluable for rapid codebase comprehension, whether you're a developer onboarding to a new project or an AI system analyzing code structure.
For audio explanations of this project, see:
- podcasts (Auto-generated by Gemini using NotebookLLM)
- Dual-Purpose Output: Generates content optimized for both human readers and AI analysis
- Intelligent Content Parsing:
- Respects
.gitignore
rules - Handles various file types appropriately
- Respects
- Comprehensive Structure Representation:
- Creates an accurate, hierarchical file tree
- Generates a smart table of contents for easy navigation
- Code-Aware Processing:
- Applies appropriate syntax highlighting for different file types
- Intelligently handles large or binary files without bloating the output
- Flexible Input Handling: Works with local directories and GitHub repositories
- Encoding Detection: Ensures accurate content reading across various file encodings
- Customizable Ignore Rules: Option to include files normally ignored by
.gitignore
- Efficient Output Management: Organizes generated documents in a '_codemaps' directory
- Python 3.6+
pathspec
library (for handling.gitignore
rules)chardet
library (for file encoding detection)
Install CodeMapper directly from PyPI using pip:
pip install codemapper
-
Clone this repository:
git clone https://github.com/shaneholloman/codemapper.git
-
Navigate to the cloned directory and install the required dependencies:
cd codemapper pip install -r requirements.txt
Run CodeMapper from the command line, providing the path to the directory or GitHub repository URL you want to analyze:
codemapper <path_to_directory_or_github_url> [--include-ignored]
<path_to_directory_or_github_url>
: The path to the directory or GitHub repository URL to analyze (required)--include-ignored
: Include files that are normally ignored by.gitignore
(optional)
CodeMapper generates a Markdown file named <directory_name>_codemap.md
in the '_codemaps' directory. This file contains:
- A comprehensive table of contents for easy navigation
- An accurate file tree representation of the directory structure
- The contents of each file, formatted with appropriate syntax highlighting
- Information about large and binary files (type and size) without their contents
Example usage and output:
codemapper https://github.com/shaneholloman/ansible-role-apache
- Rapidly understand the structure and content of new or unfamiliar projects
- Generate comprehensive documentation for code-based AI prompts
- Facilitate thorough code reviews by providing a complete one-page overview
- Assist AI systems in analyzing and understanding complex codebases
- Analyze GitHub repositories without manual cloning
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
- Thanks to the
pathspec
andchardet
libraries for enhancing CodeMapper's functionality.
For a detailed version history, please refer to the changelog.md.
If you find CodeMapper useful, don't forget to star this repository!