A tool to stringify code using rsync and manage presets
Project description
Rstring: Rsync-Powered Code Stringification
Rstring is a developer tool that uses Rsync to efficiently gather and stringify code from your projects. It's designed to streamline the process of preparing code context for AI programming assistants, making it easy to get intelligent insights about your codebase.
Quickly prompt an LLM with your whole project!
Installation
Rstring requires Python 3.8+. We recommend using pipx
for installation, as it installs Rstring in an isolated environment, preventing conflicts with other packages.
Using pipx (recommended)
-
Install pipx if you haven't already. Follow the official pipx installation guide for your operating system.
-
Install Rstring:
pipx install rstring
Using pip
If you prefer to use pip, you can install Rstring with:
pip install rstring
Updating Rstring
To update Rstring to the latest version:
With pipx:
pipx upgrade rstring
With pip:
pip install --upgrade rstring
For more detailed information about pipx and its usage, refer to the pipx documentation.
Quick Start
Basic usage:
rstring # Use the default preset
rstring --include=*/ --include=*.py --exclude=* # traverse all dirs, include .py files, exclude everything else
Get help:
rstring --help
Use a specific preset:
rstring --preset my_preset
Get a tree view of selected files:
rstring --summary
Advanced Usage
Custom Presets
Create a new preset:
rstring --save-preset python --include=*/ --include=*.py --exclude=* # save it
rstring --preset python # use it
File Preview
Limit output to first N lines of each file:
rstring --preview-length=10
Gitignore Integration
By default, Rstring automatically excludes .gitignore patterns. To ignore .gitignore:
rstring --no-gitignore
Interactive mode:
Enter interactive mode to continuously preview and select matched files:
rstring -i
Understanding Rstring
-
Under the Hood: Rstring efficiently selects files based on filters by running
rsync --archive --itemize-changes --dry-run --list-only <your filters>
. This means you can use Rsync's powerful include/exclude patterns to customize file selection. -
Preset System: The default configuration file is at
~/.rstring.yaml
. The 'common' preset is used by default and includes sensible exclusions for most projects. -
Output Format:
--- path/to/file1.py --- [File contents] --- path/to/file2.js --- [File contents]
-
Binary Files: Content of binary files is represented as a hexdump preview.
-
Clipboard Integration: Output is automatically copied to clipboard unless disabled with
--no-clipboard
. -
Git Integration: By default, Rstring respects .gitignore patterns. Use
--no-gitignore
to ignore them.
Pro Tips
-
Explore the default preset: Check
~/.rstring.yaml
to see how the 'common' preset works. -
Refer to Rsync documentation: Rstring uses Rsync for file selection. Refer to the Filter Rules section of the rsync man page to understand how include/exclude patterns work.
-
Customize for your project: Create a project-specific preset for quick context gathering.
-
Use with AI tools: Rstring is great for preparing code context for AI programming assistants.
-
Large projects may produce substantial output: Use
--preview-length
or specific patterns for better manageability.
Support and Contributing
- Issues and feature requests: GitHub Issues
- Contributions: Pull requests are welcome!
License
Rstring is released under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rstring-0.3.0.tar.gz
.
File metadata
- Download URL: rstring-0.3.0.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff6b342d9b2a94ab52aa31d910a4dda23b465ea4b7544f5990e36204c4cd90ae |
|
MD5 | c3f8aaa744a2ca6194fa2e6002dff445 |
|
BLAKE2b-256 | eab69e12dc5b1a52567d16da7ffed197c19e2a36c3555ddfcfeaa21898d4ebf6 |
File details
Details for the file rstring-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: rstring-0.3.0-py3-none-any.whl
- Upload date:
- Size: 13.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5ea6f6aec9296ef29b9b719f13b0f117df16595d65009985134f2437a381641 |
|
MD5 | 498ca8facec60fe154c5ac3f3590d487 |
|
BLAKE2b-256 | 4cab941045b5ec70d569fc4bd7f6a1f4b09b630676831e61df484bc2345e6518 |