Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bendavidaaron/coadsquash
https://github.com/bendavidaaron/coadsquash
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/bendavidaaron/coadsquash
- Owner: BenDavidAaron
- License: gpl-3.0
- Created: 2024-09-15T15:39:44.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2024-09-15T15:57:57.000Z (2 months ago)
- Last Synced: 2024-09-15T16:59:48.221Z (2 months ago)
- Language: Rust
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# codesquash
A tool for packing source code into single files for LLM consumption.
## What it does
* Traverses git repostories
* Concats all source code into stdout## What you do
### First Time
1. Clone it```
git clone [email protected]:BenDavidAaron/coadsquash.git
```2. Build it
```
cd codesquash
cargo build --release
```3. install it
```
sudo cp ./target/release/codesquash /usr/local/bin/
```### Every Time
Package the git repo you're in
```
codesquash > /tmp/output.txt
```Package another repo on your system
```
codesquash /path/to_other/repo > /tmp/output.txt
```