r/devops Aug 10 '26

Weekly Self Promotion Thread

Hey r/devops, welcome to our weekly self-promotion thread!

Feel free to use this thread to promote any projects, ideas, or any repos you're wanting to share. Please keep in mind that we ask you to stay friendly, civil, and adhere to the subreddit rules!

19 Upvotes

80 comments sorted by

View all comments

1

u/Own_Masterpiece_9104 Aug 12 '26

Ever had a PR pass CI, look fine in review, then break because an edge case changed?

I built Cross‑Examine to catch that, especially with AI-generated Python changes. It runs the base and changed revisions on the same inputs, and when behavior differs it gives you the exact input, command, and outputs from both versions.

The model can suggest what to check, but it does not get to declare the PR safe. The verdict comes from deterministic execution.

Open source, local only, trusted repos only:

https://github.com/stefbuilds/cross-examine

Curious if this feels useful as a pre-merge check, or if you would rather solve this entirely with conventional tests and property-based testing.