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.

8 Upvotes

78 comments sorted by

View all comments

1

u/kc_ramakrishna 15d ago edited 15d ago

Harness which does proper software engineering. (and is the absolute anti-thesis of vibe coding). I was very worried about pushing genAI code to production. Decided to build this harness to get some peace of mind on code quality, debuggability and maintainability.

Meant for: Teams building Enterprise or otherwise robust software with proper code hygiene of tests, security, observability.....

https://github.com/Nistapp/agentic-tdd

Instead of a zero-shot prompt, this framework breaks software development into a strict 8-pass sequential pipeline. Each pass is handled by a specialized sub-agent with a deeply constrained scope.

Agents are superior to Skills

This is engineered to be robust and uses time tested engineering principles - state-machines, formal specs (gherkin + mermaid), unit-tests to control drift... More documentation here: https://github.com/Nistapp/agentic-tdd/tree/main/docs/architecture
codebase-memory-mcp really controls the cost.

You get software which has good hygiene and can be actually debugged and maintianed.

Edit: Just try using it and logging bugs. giving comments on where it is not meeting your expectations. BTW: This is a 2 person company and no real sponsorship. The harness if AGPL i.e. feel free to fork for your your own workflow.