Skip to content

v0.1.0

Latest
Compare
Choose a tag to compare
@NickSpyker NickSpyker released this 02 Jan 07:41
· 2 commits to main since this release

Repo Synthesizer AI Prompt v0.1.0

A command-line tool designed to prepare repository content for AI prompts.
This tool streamlines the process of collecting and formatting code for use with AI assistants like ChatGPT, Claude, or GitHub Copilot.

Features

  • 📂 Smart repository scanning with configurable ignore patterns
  • 🔍 Extension-based filtering (include or exclude specific file types)
  • 🎯 Focused content collection with customizable ignore lists
  • 💾 Flexible output options (file or stdout)
  • ⚙️ Easy-to-use configuration system
  • 🖥️ Cross-platform support (Windows, macOS, Linux)

Installation

Pre-built Binaries

Download the appropriate binary for your system:

  • synt.exe for Windows
  • COMING SOON for macOS
  • COMING SOON for Linux

From Source

cargo install --path .

Quick Start

# Process current directory
synt

# Save output to file
synt -o ai_prompt.txt

# Process only Rust files
synt -e rs

# Ignore specific extensions
synt -i obj exe dll

Changes in this Release

Initial release including:

  • Core functionality for repository content synthesis
  • Configurable ignore patterns for files, folders, and extensions
  • Cross-platform file explorer integration for config management
  • Command-line interface with intuitive options
  • Default configuration with common ignore patterns
  • Documentation and examples