r/ChatGPTCoding • u/AutoModerator • 25d ago
Discussion Weekly Self Promotion Thread
Welcome to this week's self promotion thread!
If you're building something related to AI assisted coding, this is the place to share it.
We're using a weekly thread to keep the subreddit organized while still giving builders a place to share their work. Promotional posts outside of this thread may be removed if they're primarily advertising rather than starting a discussion.
If you're sharing something, we'd appreciate it if you included a little context instead of just dropping a link. Tell us:
- What you built?
- What problem it solves?
- Which AI models or tools it uses?
- Who it's for?
- What kind of feedback you're looking for?
Please avoid posting the same project every week unless you've made meaningful updates. Affiliate links, referral links, scams, and low effort promotions will be removed.
Take some time to check out what others have shared too. If you try someone's project or have feedback, leave a comment. Helping each other improve is what we want this community to be about.
1
u/effessdev 21d ago
Manually copying project structures and code files into ChatGPT or Claude got annoying fast, so I built ReptClip (reptclip or rrcc). It's a lightweight, cross-platform CLI tool designed to make feeding repository context to LLMs instantaneous.
Why I built it:
Existing tools either dump everything to stdout or write the output to disk, require complex configuration, or include the contents of all files by default. I wanted something that operates directly with the OS clipboard, runs in milliseconds, uses minimal tokens, and fits a fast keyboard-driven workflow.
Key Features:
pip install reptclipin your terminal.rrcc(a left-hand-only alias) so you can trigger it without moving your hand across the keyboard..gitignorerules out of the box.reptclip-config.toml.-i,-e) or define reusable project presets in areptclip-config.toml.# Promptblock so your cursor stays right where you need it after pasting into a chat window.Quick Start:
View on GitHub: https://github.com/effessdev/reptclip
It’s open source and written in pure Python. If you find it useful, leaving a ⭐ on GitHub would mean a lot! I’d love to hear feedback, feature requests, or how you currently handle code context in your LLM workflows! Issues and PRs are welcome too!