Friday, July 31, 2026

Show HN: Schema-backed, Git-based structured state for agentic systems https://ift.tt/IGiveSU

Show HN: Schema-backed, Git-based structured state for agentic systems I looked into how to store agentic state in a) a structured way that b) runs without any dedicated MCP memory/state servers and where I can get c) a clear diff-able audit trail of all state changes over time. Nothing that I could find fit the bill. In https://ift.tt/7yZsGvC , I demo an implementation that fulfills these requirements by combining Claude agents with my previously published Commitspark library and its entirely Git-backed GraphQL API. In the demo, two independent Claude agents are simulated that contribute to a task tracker. A third agent reviews any task changes and rolls back obviously bad ones. A full demo transcript is included in the README, including the agents' raw tool calls. Task agent access to data happens via a small MCP server that exposes two Commitspark APIs (GraphQL API, schema API). These agents can then fetch the schema and author their own GraphQL calls, with GraphQL automatically enforcing written data is schema-conformant. The validator agent additionally has access to basic git functionality to view diffs and revert commits. I'm looking for feedback specifically on: whether schema validation on shared agent state is a problem people actually have, or whether loosely-typed JSON + retries is good enough in practice. July 31, 2026 at 11:50PM

Thursday, July 30, 2026

Show HN: Tally – check a spreadsheet's numbers against their source, in-browser https://ift.tt/ldaTcY2

Show HN: Tally – check a spreadsheet's numbers against their source, in-browser https://ift.tt/ArN3yGW July 30, 2026 at 11:25PM

Wednesday, July 29, 2026

Show HN: Capitolisation – Trade like the bests elected officials https://ift.tt/Mv4KWb5

Show HN: Capitolisation – Trade like the bests elected officials Elected officials tend to overperform S&P500. The goal is to show disclosures to detect trends. https://ift.tt/M39fFmI July 30, 2026 at 12:22AM

Show HN: Dreeve, a self-hosted dashboard for your sports and fitness data https://ift.tt/WGr3ewB

Show HN: Dreeve, a self-hosted dashboard for your sports and fitness data I've been building this for a few years under the name "Statistics for Strava" but I renamed it to Dreeve recently because of Strava's recently changed API usage terms. They paywalled their API. You point it at your activity files (FIT/TCX/GPX) or connect a Strava account, and it gives you a dashboard with segment efforts, gear and maintenance tracking, a heatmap, monthly calendar view, milestones and a year-in-review. It runs as a Docker container, stores everything in SQLite, and nothing leaves your machine. Stack is PHP 8.5 + Symfony, SQLite, Docker Compose. Simple, straightforward and fast. Caveats: it's built around a single user, so there's no multi-tenant story. The AI workout assistant is optional and off unless you configure it. Segment data still comes from Strava if you want it, which is the one dependency I haven't been able to remove. Docs at https://docs.dreeve.app . Happy to answer any questions you have https://ift.tt/QLfPK7N July 29, 2026 at 11:45PM

Tuesday, July 28, 2026

Show HN: Vyne – Zapier for DeFi users, run from any LLM or the workflow builder https://ift.tt/CzBkAEQ

Show HN: Vyne – Zapier for DeFi users, run from any LLM or the workflow builder https://ift.tt/O3SEb4U July 29, 2026 at 02:31AM

Show HN: Verifiable receipts for firmware CVE reproduction https://ift.tt/gadnSR1

Show HN: Verifiable receipts for firmware CVE reproduction https://ift.tt/sx7NQR4 July 29, 2026 at 02:23AM

Show HN: Beakdown – a game inspired by Joust/Skirmish https://ift.tt/cvUr6yi

Show HN: Beakdown – a game inspired by Joust/Skirmish I used to play Joust with my little brother on the BBC Micro many moons ago and have fond memories of it. So when I was experimenting with Claude Opus 5 it was a nice inspiration for this game. Did a little research and found there aren't many games out there that just work in a browser without ads, loading screens or account sign-ups. So I've put this directly on the landing page with no noise in the way - it works on any browser on any device and loads instantly. If it doesn't work at all, please tell me. And also let me know if you think it needs music - I went without it to begin with but don't know if that's what people would prefer or not. Would also love to know how far you get, my personal best is 199,000. Thanks for your interest! https://beakdown.fun/ July 29, 2026 at 01:18AM

Show HN: Schema-backed, Git-based structured state for agentic systems https://ift.tt/IGiveSU

Show HN: Schema-backed, Git-based structured state for agentic systems I looked into how to store agentic state in a) a structured way that ...