Skip to main content

Intelligently package your codebase for AI tools

Project description

contextzip

Stop copy-pasting files manually. Package exactly the right parts of your codebase and paste it straight into Claude, ChatGPT, or any AI tool in one command.

contextzip

The problem

Every time you want help from an AI tool, you go through the same ritual:

  1. Find the relevant files in your project
  2. Skip node_modules, .next, __pycache__, build artifacts, lock files...
  3. Select the right ones, zip them, find the zip, upload it
  4. Repeat every single session

contextzip eliminates that entirely. Run it from your project root, it detects your stack, applies smart exclusions, produces a lean ZIP, and opens your file manager with the archive already selected. One Ctrl+C and you're done.


Features

  • Smart framework detection : automatically identifies Node.js, Next.js, Python, Django, FastAPI, Rust, Go, Ruby and applies the right exclusion rules for each
  • Respects your .gitignore : patterns from your existing gitignore are honoured automatically
  • Warns before it's a problem : flags large files (≥ 1 MB) and binary files that AI tools can't read, before you waste an upload
  • Handles the messy stuff : dangling symlinks, unreadable files, and files outside the project tree are all caught and reported, never silently dropped
  • Full CLI control : --include, --exclude, --dry-run, --verbose, --output, all composable
  • Cross-platform clipboard integration : copies the file to clipboard on macOS/Linux; opens Explorer with the ZIP selected on Windows

Installation

Requires Python 3.9+

pip install contextzip

Or with pipx (recommended for CLI tools, keeps it isolated):

pipx install contextzip

Verify the install:

contextzip --version

Quick start

Navigate to any project and run:

cd ~/projects/my-app
contextzip

That's it. contextzip will:

  1. Detect your framework (e.g. Next.js + Node.js)
  2. Apply the appropriate exclusion rules
  3. Scan and summarise what will be included
  4. Create a compressed ZIP in your system temp directory
  5. Open your file manager with the ZIP selected and ready to copy

Usage

contextzip [OPTIONS]
Option Description
-i, --include PATH Only include files under this path. Repeatable.
-e, --exclude PATTERN Extra exclusion patterns (gitignore syntax). Repeatable.
-n, --dry-run Preview what would be included, no ZIP created.
-o, --output FILE Custom output path for the ZIP file.
--no-clipboard Skip the clipboard / folder-open step.
--no-gitignore Ignore the project's .gitignore file.
-v, --verbose Show every included and excluded file with sizes.
-h, --help Show help and exit.
--version Show version and exit.

Examples

Preview what would be packaged (no ZIP created):

contextzip --dry-run

Only package specific directories:

contextzip --include src --include app

Exclude additional patterns beyond the auto-rules:

contextzip --exclude "*.log" --exclude "*.sqlite" --exclude "tests/"

Save ZIP to a specific path:

contextzip --output ~/Desktop/my-project-context.zip

Full verbose audit, see every file decision:

contextzip --dry-run --verbose

Combine include + extra excludes:

contextzip --include src --exclude "**/*.test.ts"

Framework detection & auto-exclusions

contextzip detects your stack from config files in the project root and stacks the appropriate rules.

Detection signals

File found Detected as
next.config.js / .ts / .mjs or "next" in package.json Next.js
package.json Node.js
manage.py or "django" in requirements Django
"fastapi" in requirements FastAPI
requirements.txt / pyproject.toml / setup.py Python
Cargo.toml Rust
go.mod Go
Gemfile Ruby

Detection is additive. A monorepo with both package.json and pyproject.toml will have both rule sets applied.

What gets excluded

Always (every project): .git/, .env, .env.*, *.log, logs/, .cache/, tmp/, editor files (.vscode/, .idea/), OS files (.DS_Store, Thumbs.db), common binary formats (images, audio, video, archives)

Node.js / Next.js: node_modules/, .next/, .nuxt/, dist/, build/, out/, .turbo/, package-lock.json, yarn.lock, pnpm-lock.yaml, *.min.js, *.d.ts, tsconfig.tsbuildinfo

Python: __pycache__/, *.pyc, .venv/, venv/, *.egg-info/, .pytest_cache/, .mypy_cache/, .ruff_cache/, htmlcov/, *.sqlite3, migrations/, poetry.lock, uv.lock

Rust: target/, Cargo.lock, *.rlib, *.rmeta

Go: vendor/, go.sum, bin/

Plus any patterns from your project's own .gitignore.


Clipboard behaviour

contextzip uses a tiered strategy so it never just fails silently:

Platform Tier 1 (auto) Tier 2 (fallback) Tier 3 (last resort)
macOS File copied to clipboard via Finder, paste directly into browser open -R reveals ZIP in Finder Path printed to terminal
Linux xclip copies file bytes with application/zip MIME type xdg-open opens containing folder Path printed to terminal
Windows - explorer /select,"..." opens Explorer with ZIP highlighted → Ctrl+C Path printed to terminal

On macOS and Linux with xclip, you can paste the ZIP directly into an upload zone (Claude, ChatGPT, etc.), no file picker needed. On Windows, Explorer opens with the file already selected so one Ctrl+C is all it takes.


Warnings

contextzip surfaces issues before they waste your time:

Large files (≥ 1 MB) : listed with sizes and a suggestion to exclude if unneeded. AI context windows have limits; a 5 MB log file helps no one.

Binary files : files detected as binary (null bytes in the first 512 bytes) are flagged. Most AI tools can't read binary content; you may want to exclude them.

Skipped files : dangling symlinks, permission-denied files, and paths outside the project tree are listed with their specific reason rather than silently dropped.


Project structure

contextzip/
├── contextzip/
│   ├── __init__.py        # version string
│   ├── cli.py             # Click entry point, all flags, rich output
│   ├── detector.py        # framework/language detection engine
│   ├── filters.py         # pathspec-based file filtering + ResolveResult
│   ├── packager.py        # ZIP creation, compression stats, PackageResult
│   ├── clipboard.py       # tiered clipboard strategy (all platforms)
│   └── rules/
│       ├── base.py        # universal exclusions
│       ├── node.py        # Node.js / Next.js / Vite
│       ├── python.py      # Python / Django / FastAPI
│       ├── rust.py        # Rust / Cargo
│       └── go.py          # Go modules
└── pyproject.toml

Adding a new language / framework

  1. Create contextzip/rules/yourlang.py with a PATTERNS list using gitignore syntax:
PATTERNS = [
    "build/",
    "*.compiled",
    ".cache/",
]
  1. Register it in filters.py:
_RULE_REGISTRY: dict[str, str] = {
    ...
    "yourlang": "contextzip.rules.yourlang",
}
  1. Add a detection rule in detector.py:
_Rule(
    name="YourLang",
    module="yourlang",
    check=lambda p: _file_exists(p, "yourlang.config"),
    weight=3,
),

That's it. Detection, filtering, and CLI output all pick it up automatically.


Dependencies

Package Purpose
click CLI framework
rich Terminal output, panels, progress bars
pathspec Gitignore-style pattern matching

No other runtime dependencies. Clipboard and folder-open use only stdlib (subprocess, shutil, platform).


Contributing

Contributions are welcome, especially new framework rule sets, edge case fixes, and platform-specific clipboard improvements.

git clone https://github.com/akadeepesh/contextzip
cd contextzip
pip install -e .

Please open an issue before submitting a large PR so we can discuss the approach first.


License

MIT - see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

contextzip-0.1.2.tar.gz (21.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

contextzip-0.1.2-py3-none-any.whl (21.2 kB view details)

Uploaded Python 3

File details

Details for the file contextzip-0.1.2.tar.gz.

File metadata

  • Download URL: contextzip-0.1.2.tar.gz
  • Upload date:
  • Size: 21.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for contextzip-0.1.2.tar.gz
Algorithm Hash digest
SHA256 e2f273f1c91d47626445cdf826a1e0bfce107941bf4b1ba50e3d91eb165a71de
MD5 7e31fd14c34ea61ba77a67b79cbb0e89
BLAKE2b-256 b21569d1936a3b5a2032690cc0b5e33cd16e83c59bc46e42d4c2681447cca5d5

See more details on using hashes here.

File details

Details for the file contextzip-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: contextzip-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for contextzip-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fdbbb1cca9fc76b4c3c8f9de33d43e005983d1f2d7e1eafaf54d7ce7b1a36a68
MD5 bdeae21b4c914f84788bfa85e8b209a8
BLAKE2b-256 049cae5aa24f041523b4b5257318b9f5b8f844e3413aa1ddc543bdb04701a559

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page