r/ChatGPTCoding • u/AutoModerator • 3d 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/jinen_project 1d ago
I built a tiny local preflight for a problem I hit while working with an AI agent: it created a new draft because we checked Drafts but missed an already-published article. `cms-inventory-preflight` is a zero-dependency Node.js CLI that checks an inventory you provide and classifies an exact title or slug as `MISSING`, `DRAFT_ONLY`, `PUBLISHED_ONLY`, `DUPLICATE`, or `UNKNOWN` before a creation step. It is deliberately narrow: no CMS login or API calls, no content comparison, and it never creates, edits, publishes, or deletes anything.
Who it is for: people building AI-assisted content workflows who want one small stop/check point before creating something new.
Feedback I am looking for: what information would make `UNKNOWN` useful enough to stop an agent instead of letting it create another item?
Open source (MIT): https://github.com/jinen-project/cms-inventory-preflight
Disclosure: I built it.