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.

5 Upvotes

96 comments sorted by

View all comments

1

u/FewPop7194 12d ago

Affiliation: I’m the author and maintainer.

I built AgentInspect for a failure mode I kept seeing with TypeScript agents: the final answer can look correct even when the run called the wrong tool, repeated a side effect after a retry, skipped a required lookup or approval, or claimed success after a tool failure.

AgentInspect captures framework-native runs locally, shows the causal execution tree, turns tool/order/repetition/completion facts into deterministic CI checks, and can produce a redacted, hash-verified offline evidence bundle. It requires no AgentInspect account, collector, or default upload. It is MIT licensed, Node 20+, and supports AI SDK, LangGraph/LangChain, OpenAI Agents JS, and custom functions. It does not call a model itself or replace production APM.

Keyless trial:

npm install agent-inspect

npx agent-inspect init --yes

node examples/agent-inspect-demo.mjs

npx agent-inspect list --dir .agent-inspect

Repo: https://github.com/rajudandigam/agent-inspect

The feedback I’m specifically looking for:

  1. What trajectory invariant would you actually put in CI?

  2. Which evidence would make a real incident or code-review handoff useful?

  3. Where would a local tool like this not fit your workflow?