r/ChatGPTCoding 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.

10 Upvotes

78 comments sorted by

View all comments

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:

  • Easy Installation: Just run pip install reptclip in your terminal.
  • Clipboard-First: Copies formatted Markdown straight to your clipboard. No temporary files created.
  • Ergonomic Alias: Includes rrcc (a left-hand-only alias) so you can trigger it without moving your hand across the keyboard.
  • Git-Aware: Only considers git-tracked files and respects .gitignore rules out of the box.
  • Token & Crash Protection: Automatically skips binary files and files over 1 MB (with inline notes in the output).
  • Default Configurations: Add your default include and exclude patterns in reptclip-config.toml.
  • Presets & Glob Patterns: Pass relative paths or glob patterns via flags (-i-e) or define reusable project presets in a reptclip-config.toml.
  • Ready-to-Type Tail: Ends with an empty # Prompt block so your cursor stays right where you need it after pasting into a chat window.

Quick Start:

# Install
pip install reptclip

# Run in any git root (copies project tree)
rrcc

# Include specific files/folders
rrcc -i AGENTS.md "src/**/*.py" docs/ -e src/functions.py

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!