Collection of command-line utility scripts, focusing on developer productivity.
- Python 3.12+
- zsh shell (for automatic PATH configuration)
./install.shThe installer will:
- Install uv package manager if not present
- Create a Python virtual environment
- Install the package in editable mode
- Add the virtual environment to your PATH in
.zshrc
Dumps file contents with Markdown code blocks. Useful for:
- Sharing code snippets with proper syntax highlighting
- Creating documentation from source files
- Quick code reviews and sharing
- Creating Markdown-formatted file exports
# Basic usage - dump all files in current directory
tz dump .
# Dump specific file types only
tz dump . --pattern "*.py"
# Copy output to clipboard
tz dump . -c
# Pretty print with Markdown formatting
tz dump . --pretty
# Exclude additional patterns
tz dump . --exclude "tests,*.md"