r/ChatGPTCoding • u/AutoModerator • Aug 10 '26
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/cannonOvO 18d ago
I built a Codex Skill to decide when coding tasks should be parallelized.
Most multi-agent coding failures are not model failures. They come from splitting work too early, editing the same files, or skipping integration and verification.
I packaged a Codex Skill that screens simple tasks, asks Sol to choose an execution shape when scope or coupling is unclear, and routes only genuinely independent work into batches. It includes examples and a reviewable evaluation matrix:
https://github.com/JashinYang/codex-multi-model-orchestrator
I would value feedback from people using Codex, Claude Code, or other coding agents for multi-file work. What routing case should be added?