Metadata-Version: 2.4
Name: gitex
Version: 0.2.16
Summary: Terminal tool to prep codebases for LLMs
Author-email: zozaai <info@zozaai.com>
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: click<8.2,>=8.0
Requires-Dist: textual>=5.2.0
Requires-Dist: questionary==2.1.0
Requires-Dist: pathspec<1.0,>=0.10.1
Requires-Dist: pydantic
Requires-Dist: GitPython
Provides-Extra: test
Requires-Dist: pytest>=8.0; extra == "test"
Requires-Dist: pytest-cov>=5.0; extra == "test"
Requires-Dist: pytest-asyncio; extra == "test"



<p align="center">
  <a href="https://excalidraw.com/#json=FcO55BsQn51s2Pqqt5rrK,oh1x03sJwQH__qTI1Zd1tw">
    <img src="docs/logo.jpeg" alt="Jet Voice Block Diagram" width="125%" />
  </a>
</p>


# gitex

🛠️ Terminal tool to prep your 🧠 codebase (whole or partial) for LLMs — clean, compress, and convert it into prompt-ready text! 🚀📦

[![CI](https://github.com/zozaai/gitex/actions/workflows/ci.yml/badge.svg)](https://github.com/zozaai/gitex/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/zozaai/gitex/branch/main/graph/badge.svg)](https://codecov.io/gh/zozaai/gitex)



## 📝 To-Do
- [x] Display GitHub repository structure
- [x] Select files/directories to include
- [ ] Filter files by extensions
- [x] Generate formatted text file
- [x] Copy text to clipboard
- [ ] Download generated text
- [x] Support for private repositories
- [ ] Download zip of selected files
- [x] Local directory support
- [x] make into pypi package

## ✨ Features


### 📚 Docstring Extraction
Extract and format docstrings and function/class signatures from Python files, inspired by Sphinx. Perfect for providing high-level context to LLMs without implementation noise.
- Extract from all Python files: `gitex . --extract-docstrings`
- Extract from a specific class or function: `gitex . --extract-docstrings gitex.renderer.Renderer`
- Control empty classes: `gitex . --extract-docstrings --include-empty-classes`

### 🔗 Dependency & Relationship Mapping  
Analyze and visualize code architecture, dependencies, and relationships in your codebase. Essential for understanding how components interact before diving into implementation details.
- **Full analysis**: `gitex . --map-dependencies`
- **Focus on imports**: `gitex . --map-dependencies imports`
- **Focus on inheritance**: `gitex . --map-dependencies inheritance` 
- **Focus on function calls**: `gitex . --map-dependencies calls`

**What it maps:**
- 📦 **Import dependencies** - Which files depend on which other files
- 🏗️ **Class inheritance hierarchies** - Parent-child relationships between classes
- 🔄 **Function call relationships** - Which functions call which other functions
- 📊 **Summary statistics** - Overview of codebase complexity and external dependencies

=======
- **Docstring Extraction**: Extract and format docstrings and function/class signatures from Python files, inspired by Sphinx. This is perfect for providing high-level context to LLMs without the noise of implementation details.
  - Extract from all Python files: `gitex . --extract-docstrings`
  - Extract from a specific class or function: `gitex . --extract-docstrings gitex.renderer.Renderer`
- **Clipboard (Linux)**: Copy the rendered output directly to your clipboard using `--copy`.  
  Tries `wl-copy` (Wayland) → `xclip` (X11) → `xsel` (X11).


## 📥 Installation
```bash
$ pip install gitex
```

## 📋 Clipboard support (Linux)
#### Ubuntu/Debian
```bash
# Wayland (recommended):
sudo apt install -y wl-clipboard
# X11 alternatives:
sudo apt install -y xclip
# or
sudo apt install -y xsel
```


## ▶️ Usage
```
$ gitex --help
$ gitex .             # current repository
$ gitex path/to/repo  # any repo path
$ gitex url           # repo url
$ gitex -i /path/to/repo > path/to/output.txt  # redirect to text file
$ gitex -c            # also copy output to clipboard (Linux)
$ gitex -ic           # also copy output to clipboard (Linux) in interactive mode
```


## 📸 Demo
![Preview](docs/gitex_demo.png)



## 🙏 Acknowledgments
This project draws inspiration from [repo2txt](https://github.com/abinthomasonline/repo2txt) by [@abinthomasonline](https://github.com/abinthomasonline).  
Big thanks for laying the groundwork for converting repositories into prompt-ready text!
