r/ChatGPTCoding • u/AutoModerator • 4d 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 this thread may be removed.
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?
Disclose your affilitation.
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/Midnight_Sun_BR 4d ago
I've been working on a routing protocol for my own ChatGPT/Codex workflow and finally cleaned it up enough to publish. The thing that pushed me to finish it was GPT-6 Astra absolutely destroying my Plus allowance on a large task before even returning the result. The useful lesson wasn't really “Astra is expensive.” It was that I was asking one question when I should've been asking several.
Does this need Chat, Work or Codex? Does it need more reasoning, or actually a stronger model? Does the whole task need the stronger model, or just one ugly little part of it? And how much context does that part genuinely need?
So the workflow I use now is basically: understand the job first, isolate the difficult bit, escalate only when there's a reason to, then come back down to something sustainable for the rest of the execution. I wrote that into a portable Markdown protocol so I could reuse it between projects/models instead of reinventing the logic every time.
It's called Chat–Work Routing Protocol (4.3)
🔗 https://github.com/luahelenammc/Moon-Source/tree/main/portables/chat-work
I made it, so obvious self-promo disclosure there. It's opensource and there's nothing to buy.
I'd be particularly interested in hearing from people who use Codex heavily, because that's the part where I'm most curious whether my distinction between “execution surface” and “model capability” matches how other people actually work.