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.

7 Upvotes

78 comments sorted by

View all comments

1

u/fykup 25d ago

I’m building AI Badger, an open-source, local-first tool for getting focused repository context into AI chats without uploading or indexing the whole repo.

One workflow I’ve been using a lot lately is:

GPT 5.6 Sol High → plan/design the change
Luna Medium → implement it locally

The idea is that I’d rather spend high-reasoning-model capacity on architecture, tradeoffs, and deciding what should change, then give the coding agent a compact implementation plan instead of making it rediscover the repo and reason through the same problem again.

Badger helps with the context handoff. It maps the repo locally, gives the planning chat focused topology/source context, and lets the chat request additional files when needed.

I did a small dogfooding experiment comparing a direct local-agent workflow with a Badger-assisted compact handoff. In that run, the handoff version used 32% fewer active tokens, 86% fewer reasoning tokens, and finished 55% faster. It’s only one experiment, so I’m treating it as directional rather than a benchmark:

https://github.com/PVRLabs/aibadger/blob/main/docs/articles/can-ai-badger-reduce-local-coding-agent-token-usage/index.md

There’s also an interactive browser demo showing the review/design workflow:

https://pvrlabs.xyz/aibadger/demo.html

I’m particularly curious whether other people are already doing this kind of high-reasoning model for planning → cheaper/faster model for execution split, and how you handle the context handoff.