Metadata-Version: 2.1
Name: github-context
Version: 0.2.0
Summary: A CLI tool to quickly extract context from GitHub repositories for AI
Home-page: https://github.com/elyxlz/github-context
Author: Elio Pascarelli
Author-email: elio@pascarelli.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyGithub
Requires-Dist: pyperclip
Requires-Dist: tqdm

# GitHub Context Extractor

A simple CLI tool to extract context from GitHub repositories (code, issues, wiki ...) for AI. Now with parallel processing and progress bars!

## Install

```bash
pip install github-context
```

## Usage

```bash
ghc owner/repo [options]
```

Options:
- `--issues-only`: Extract only issues
- `--wiki-only`: Extract only wiki
- `--code-only`: Extract only code
- `--no-issues`: Exclude issues
- `--no-wiki`: Exclude wiki
- `--output DIR`: Specify output directory

## Features

- Parallel processing for faster extraction
- Progress bars to track extraction progress
- Option to extract only code
- Improved performance for large repositories

## Requirements

- Python 3.6+
- GitHub Personal Access Token (set as `GITHUB_TOKEN` environment variable)

## License

MIT
