Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.13 KB

File metadata and controls

47 lines (31 loc) · 1.13 KB

CodeDump

❗ This project has been superseded by Jinni

Jinni offers an improved CLI experience and includes an MCP server for direct integration with AI assistants like Cursor, Roo, and Claude.


CodeDump is a simple Python tool that concatenates and dumps code from a directory, including file information such as size and last modified time.

Installation

To install CodeDump, run:

pip install codedump

Or clone this repository and run:

pip install .

Usage

CodeDump can be used from the command line:

# Dump all code files from current directory
codedump

# Dump all code files from a specific directory
codedump /path/to/directory

# Only list file paths without content
codedump -l
codedump --list-only

The tool will:

  1. Recursively scan the specified directory
  2. Find all code and configuration files
  3. Output their contents with file information
  4. Automatically copy the output to your clipboard

CodeDump automatically filters out:

  • Binary files
  • Build directories
  • Cache directories
  • Version control directories
  • Log files
  • Temporary files