Reached 440+ stars! Built an auditable sandbox that records what AI coding agents actually did : SideProjectjump to contentmy subreddits<br>edit subscriptions<br>popular<br>-all<br>-users<br>| AskReddit<br>-pics<br>-funny<br>-movies<br>-gaming<br>-worldnews<br>-news<br>-todayilearned<br>-nottheonion<br>-explainlikeimfive<br>-mildlyinteresting<br>-DIY<br>-videos<br>-OldSchoolCool<br>-TwoXChromosomes<br>-tifu<br>-Music<br>-books<br>-LifeProTips<br>-dataisbeautiful<br>-aww<br>-science<br>-space<br>-Showerthoughts<br>-askscience<br>-Jokes<br>-Art<br>-IAmA<br>-Futurology<br>-sports<br>-UpliftingNews<br>-food<br>-nosleep<br>-creepy<br>-history<br>-gifs<br>-InternetIsBeautiful<br>-GetMotivated<br>-gadgets<br>-announcements<br>-WritingPrompts<br>-philosophy<br>-Documentaries<br>-EarthPorn<br>-photoshopbattles<br>-listentothis<br>-blog
more "
reddit.com SideProjectcomments<br>other discussions (1)
Want to join? Log in or sign up in seconds.
limit my search to r/SideProjectuse the following search parameters to narrow your results:<br>subreddit:subredditfind submissions in "subreddit"author:usernamefind submissions by "username"site:example.comfind submissions from "example.com"url:textsearch for "text" in urlselftext:textsearch for "text" in self post contentsself:yes (or self:no)include (or exclude) self postsnsfw:yes (or nsfw:no)include (or exclude) results marked as NSFWe.g. subreddit:aww site:imgur.com dog<br>see the search faq for details.
advanced search: by author, subreddit...
this post was submitted on 02 Jul 2026<br>1 point (100% upvoted)<br>shortlink:
Submit a new link
Submit a new text post
SideProject<br>joinleaveWelcome to r/SideProject, a subreddit for sharing and receiving constructive feedback on side projects.
This is also a subreddit to get motivated and inspired to work on new projects, so please submit links to projects you find interesting.
Submission Format
When submitting a link to a project or startup, please use this format: [Project name] - [Short description]. For example, "Reddit - A website for sharing and discussing links."
Related Communities
/r/startups
/r/Entrepreneur
/r/design_critiques
/r/learnprogramming
/r/coding
/r/gamedev
/r/webdev
Hacker News
AngelList
GitHub
Tips
Finding time for your side project
Promoting your side project
Resource list for startups
Places to post your side project
a community for 13 years
MODERATORS
message the mods
96 · 599 comments<br>As the year wraps up: what’s the project you’re most proud of building and why?<br>648 · 1802 comments<br>Share your ***Not-AI*** projects<br>55 · 21 comments<br>0:40
The future of 3D models isn't just viewing, it's having conversations with them. Atlas3D turns any* 3D model into an interactive AI experience.<br>10 · 19 comments<br>Three kind strangers supported my little radio app today — and I'm way too happy about it.<br>11 · 4 comments<br>0:17
I Took Your Advice And Redesigned My 80s 90s Radio App..<br>18 · 50 comments<br>How would you get your first 1,000 users / submissions with no marketing budget and absolutely no shame whatsoever?<br>11<br>0:20
I kept opening the wrong VS Code window, so I made each project turn into a different Ben 10 alien<br>7 · 4 comments<br>I built email read receipts that don't rat you out — launched this week, looking for my first 10 users<br>39 · 31 comments<br>0:03
[Idea Validation] An E-ink + AI Voice Pillbox for Elderly Parents<br>10 · 14 comments<br>Tired of "Solutions"
Welcome to Reddit,<br>the front page of the internet.<br>Become a Redditorand join one of thousands of communities.
×
•<br>•<br>•
Reached 440+ stars! Built an auditable sandbox that records what AI coding agents actually did (self.SideProject)<br>submitted 4 minutes ago by OkBreath9382
AI coding agents are useful, but I still do not fully trust the workflow.
Claude, Codex, Cursor, and other agents can make real changes to a repo: edit files, run shell commands, read logs, access networks, retry failed tests, and produce a final patch. But when I review the result, Git mostly tells me what changed, not what actually happened.
I wanted a way to answer questions like:
what prompt produced this change?
what commands did the agent run?
what logs did it see?
which files did it touch?
what policy or sandbox was applied?
which attempts failed before this patch?
why should I trust this result?
So I built h5i, pronounced “high-five”: an auditable sandbox for AI coding agents.
h5i gives every agent a sandboxed Git worktree and records the prompts, commands, logs, policies, context, and reviews behind every change. The evidence lives in your repo, carried by Git refs, with no SaaS required.
The basic idea is that an AI-generated patch should not just be a diff. It should come with provenance: the prompt, the execution trace, the logs, the review trail, and the environment it ran in.
You can use h5i with one agent as a safer, auditable workspace. Or you can scale it to many agents: give Claude, Codex, or other coding agents separate sandboxed worktrees, let them try different approaches without stepping on each other, then compare the...