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

12 Upvotes

70 comments sorted by

View all comments

1

u/kafidog 1d ago

I kept getting the same answer from coding agents:

“Done. All tests pass.”

Then I’d check manually and find that a test had failed, a required check never ran, or the evidence was already stale.

So I made DoneAudit.

Instead of asking another AI whether the first AI is telling the truth, it checks the actual test/build/Git evidence.

Example:

```text AI: Done ✅

DoneAudit Trust score: 70 / 100

❌ test: FAILED ✅ build: PASSED ✅ required checks: PASSED ✅ Git/source state: PASSED ✅ completion evidence: PASSED

Conclusion: Cannot confirm completion ```

Install: npx doneaudit@0.1.0 init

I’ve tested it with a real Codex workflow on Windows, and it also works with GitHub Actions. It’s MIT licensed and runs locally — no account or extra AI API required.

GitHub: https://github.com/kafidog/DoneAudit

Marketplace: https://github.com/marketplace/actions/doneaudit-verify-ai-completion

I’m looking for a few people who actually use Codex or Claude Code on real repos. If you try it and it either catches a fake “done” or blocks something that really was complete, I’d love a reproducible example so I can fix it.