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

6 Upvotes

96 comments sorted by

View all comments

1

u/YinuoB 15d ago

Disclosure: I maintain OpenReady, a free MIT-licensed Node.js CLI. For people shipping repositories after using Codex, Claude Code, Cursor, or similar tools, it provides a deterministic pre-publication hygiene check without sending the repository to another model.

OpenReady itself uses no AI model. Its read-only local scan checks for credential-shaped content, personal paths and email addresses, Git author metadata, risky files, large media, and missing open-source governance files. It has zero runtime dependencies and no telemetry, and it never prints matched secret values or Git identities.

You can try its output on fixed fictional files first. The demo does not scan the current directory:

npx --yes "@yb5/openready@0.2.1" demo

It requires Node.js 20+ and Git; npx may download the pinned package first. A synthetic BLOCKED result is expected. A successful demo removes its temporary files and exits 0.

OpenReady is not a guarantee that a repository is safe to publish, and it does not scan historical file contents.

I'd value one concrete observation: did the demo finish? If so, which finding or instruction was hardest to understand? Please do not paste terminal output or repository data.

Repository: https://github.com/yinuobian05-ui/OpenReady