frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Show HN: Agents Remember – Git-aware memory for coding agents

https://github.com/Foxfire1st/agents-remember-md
1•foxfire_1st•42m ago
I’ve been building an open-source project called Agents Remember, and I think it might fit the discussion here because it started as “how do I make coding agents remember my repo?” but turned into a broader question:

What should memory for agents actually be?

The basic idea is simple: coding agents are good at local edits, but they often miss the project-specific knowledge that experienced engineers carry around in their heads.

The memory itself is Markdown and Git-based. A source file can have a matching onboarding file. Route overviews describe larger areas. A ledger called memory.md maps code commits to memory commits, which gives an anchor between the memory repo and the code repo which are physically seperate in external mode. Some people don't want to have a huge amount of markdowns in their code repo. The ledger runs a lookup table so you can go back to earlier versions of that memory and still have synchronicity. Which is very helpful when you want to restore it from a bad state. This lookup table also allows you to run code and memory in dual worktrees and with that keep changes to the memory local until your feature or refactor etc. is clean and ready to merge. This protects your memory main from corruption. In other words it is like code and turned into a first class citizen. And it uses the same git mechanics to protect it.

With isolated work environments you also get seperate code graph and grepai instances using docker. Their memory is getting cloned with minimal changes so they map cleanly into the new environment. The cloning avoids re-indexing. So providers can be spun up and thrown away with the isolated environment.

For verifying memory every doc markdown file has a header that tracks the last known commit hash of the code file it is tracking. A simple script makes that way staleness detection cheap. This is one of the main reasons why I decided to use a path-mirrored documentation method. The documents mirror the same path but in a parallel folder. That makes not just staleness detection simple but also retrieval. The agent that opens a code file knows automatically where the document is and also has the assurance that the material is highly relevant.

Overview.md are more difficult to invalidate because they cover routes even the entire project. As the name says they give broader overviews which helps to get the gist. That broadness makes validation more challenging. But validation is still possible deterministically by using hot-paths within and script generated index files that monitor routes that change or larger file movements. So the model gets a clean deterministic signal and knows which parts of the overview files it has to update by pulling up git diffs or just looking into the file level markdowns that tell the story.

Another interesting part is the split of responsibility. The model should not have to manually track everything. It should reason with the developer, frame the problem, surface assumptions, compare options, and ask for the right approvals.

The deterministic work gets offloaded to an MCP server.

My system routes every session through a lifecycle:

    request → trust check → reframe/research → decide → build → close
Before coding, the agent has to resolve context, check drift/provider state, reframe the task, gather evidence, and wait for developer agreement. Implementation approval is not commit approval. Commit, push, PR, merge, cleanup, and memory carryover are separate gates.

A pattern that has become important recently is evidence accounting. For deeper research, the agent records what kind of evidence it used.

Is this still “AI memory” in the usual sense, or is it more like agent operating context?

Jolt: Clojure Interpreter on Janet

https://github.com/yogthos/jolt/
2•veqq•2m ago•0 comments

Show HN: A Simplistic UI for Rich Hickey's Design in Practice

https://github.com/bmillare/design_in_practice_ui
2•bmillare•2m ago•0 comments

Show HN: DSA Trainer, LeetCode practice with a hint ladder instead of spoilers

https://dsatrainer.com/
1•dsatrainer•2m ago•0 comments

U.S. Military Turned GPS into a Global "Numbers Station"

https://www.404media.co/the-u-s-military-quietly-turned-gps-into-a-global-numbers-station-evidenc...
1•awkwardpotato•5m ago•0 comments

Vibe Justice System – AI Courts convened in pursuit of correctness

https://github.com/wlilley93/vibe-justice-system
2•wlilley93•5m ago•0 comments

Alien hunters update guidance on sharing news of possible intelligent life

https://www.theguardian.com/science/2026/jun/05/alien-hunters-seti-guidance-signals-intelligent-life
3•root-parent•6m ago•0 comments

10k Lines Later: When a Tool Became a Compiler [video]

https://www.youtube.com/watch?v=wVQLEAHrwrI
2•robspairpears•6m ago•0 comments

Suppression of the integrated stress response extends lifespan in the fly

https://www.pnas.org/doi/10.1073/pnas.2518812123
2•PaulHoule•7m ago•0 comments

Software Engineering is the new Manufacturing Engineering

https://halecraft.org/software-engineering-is-the-new-manufacturing-engineering/
4•canadaduane•9m ago•0 comments

Building Xbox Games with Godot: A New Sample to Get You Started Faster

https://developer.microsoft.com/en-us/games/articles/2026/06/building-xbox-games-with-godot/
3•HelloUsername•9m ago•0 comments

AI must foster 'maternal instincts' or we risk extinction, warns Geoffrey Hinton

https://www.cbc.ca/radio/ideas/geoffrey-hinton-maternal-instincts-9.7094116
4•geox•9m ago•1 comments

U.S. attorney says election fraud probes are underway in California

https://ktla.com/news/local-news/u-s-attorney-says-election-fraud-probes-are-underway-in-california/
3•Bender•10m ago•1 comments

A healthier gut may be key to cancer care

https://www.cnn.com/2026/06/05/health/gut-microbiome-immunity-cancer-ghrc
3•Bender•11m ago•0 comments

The largest cannabis study ever: It may make anxiety, depression and PTSD worse

https://thesciverse.org/the-largest-cannabis-study-ever-conducted-found-no-evidence-it-helps-anxi...
3•RickJWagner•11m ago•0 comments

pg_durable: Microsoft open sources in-database durable execution

https://github.com/microsoft/pg_durable
11•coffeemug•12m ago•0 comments

Machine-verified proof that M3P ∈ P and P = NP via Pedigree Polytopes

https://github.com/TiruArt/Pedigree-Polytopes-Lean4
3•carlsverre•12m ago•2 comments

Public transport network partially shut–down bosses forgot to pay internet bill

https://www.dailymail.com/news/article-15876799/san-francisco-bart-shutdown-clipper-internet-bill...
2•Bender•13m ago•1 comments

Here's why I created a travel website for robots

https://alexpanetta.substack.com/p/heres-why-i-created-a-travel-website
1•throw0101a•15m ago•0 comments

Tips to get the most out of OpenCode

https://byandrev.dev/en/blog/10-best-practices-for-opencode
2•mcormik•16m ago•0 comments

Flood of AI 'garbage' is pushing open-source developers to the limit

https://www.newscientist.com/article/2527761-flood-of-ai-garbage-is-pushing-open-source-developer...
2•mattsparkes•17m ago•1 comments

Configuration flags are where software goes to rot

https://00f.net/2026/04/11/config-flags/
2•birdculture•19m ago•0 comments

CrankGPT: A human-powered local and private AI solution

https://crankgpt.com/
3•_ihaque•20m ago•0 comments

Show HN: Group of Death – WorldCup bracket predictor with shareable URLs

https://groupofdeath.gg/
4•sparc24•20m ago•1 comments

FeOS: A 16-Bit OS Written in ASM (and a custom language)

https://github.com/anhumandev/feos
1•anhuman•21m ago•1 comments

Neural-somatic simulations of history's greatest minds

https://www.opendria.com/
1•opendria•22m ago•0 comments

Understanding why autism symptoms sometimes improve amid fever

https://news.mit.edu/2024/understanding-why-autism-symptoms-sometimes-improve-amid-fever-0523
3•thunderbong•22m ago•0 comments

</> Htmx – Code is Cheap(er)

https://htmx.org/essays/code-is-cheap/
5•leephillips•25m ago•0 comments

The circus freaks of open source

https://drewdevault.com/blog/Circus-freaks-of-FOSS/
2•Tomte•26m ago•0 comments

The round-the-world escape from Pearl Harbor

https://signoregalilei.com/2026/05/17/the-round-the-world-escape-from-pearl-harbor/
1•surprisetalk•26m ago•0 comments

SignalScout

https://signalscout.be
2•AIGENIZE•27m ago•0 comments