frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

So you want to build AI Agent group chat like OpenAI?

https://zknill.io/posts/how-to-build-ai-group-chat/
1•zknill•38s ago•0 comments

How to Tolerate Annoying Things

https://psyche.co/guides/how-to-respond-to-annoying-things-with-greater-ease
1•zdw•41s ago•0 comments

Boomers Are Passing Down Way, Way Too Much Stuff

https://www.bloomberg.com/news/features/2025-11-14/millennials-gen-x-set-to-inherit-boomers-antiq...
1•zdw•2m ago•0 comments

Tree.fm

https://www.tree.fm/
1•bookofjoe•4m ago•0 comments

We avoided side-channels in our new post-quantum Go cryptography libraries

https://blog.trailofbits.com/2025/11/14/how-we-avoided-side-channels-in-our-new-post-quantum-go-c...
1•ingve•9m ago•0 comments

Free $150 worth of Claude credits (not spam)

https://megallm.io/ref/REF-O0UU2J7R
1•freakynit•17m ago•0 comments

An unemployed gentleman scholar (2010)

https://robertedgar.wordpress.com/2010/05/04/an-unemployed-gentleman-scholar/
1•kkoncevicius•17m ago•0 comments

tRPC: End-to-end typesafe APIs made easy

https://trpc.io/
1•edweis•18m ago•0 comments

Waymo Was on a Roll in San Francisco. Then One of Its Cars Killed a Cat

https://www.nytimes.com/2025/11/15/us/waymo-san-francisco-kit-kat.html
1•donohoe•22m ago•0 comments

Opensource.Builders – find and build open-source alternatives

https://opensource.builders
1•theturtletalks•25m ago•0 comments

Transaction-Oriented Programming

https://btmc.substack.com/p/transaction-oriented-programming
1•sirwhinesalot•26m ago•0 comments

Debian 13.2 Released

https://www.debian.org/News/2025/20251115
3•midzer•26m ago•0 comments

Ask HN: Anyone have the pptx understanding deep learning Simon j.d. prince

1•kwoii•27m ago•0 comments

We Optimize RocksDB in TiKV – The Battle Against the DB Mutex

https://medium.com/@siddontang/how-we-optimize-rocksdb-in-tikv-part-1-the-battle-against-the-db-m...
2•ngaut•28m ago•0 comments

The Death of Government Tax Filing

https://www.wsj.com/opinion/irs-ends-direct-file-treasury-department-tax-filing-bill-cassidy-eliz...
1•fortran77•28m ago•0 comments

Show HN: MapScraper – Extract local business data from Google MAPS in seconds

https://mapscraper.co/
1•ivanramos•29m ago•0 comments

The Classical Chess Starting Position Is Not Ideal. Its Rating Is Below Average

https://chess960v2.com/en
1•lavren1974•29m ago•0 comments

A Nerd's Peculiar Patterns

https://number-garden-preshow.netlify.app/
1•cpuXguy•31m ago•0 comments

TypeScript X Perl

https://andrews.substack.com/p/typescript-x-perl
1•andrew_rfc•31m ago•0 comments

Direct tensor processing with coherent light

https://www.nature.com/articles/s41566-025-01799-7
1•westurner•32m ago•0 comments

How does the UK keep the lights on with 12 GW at risk of retirement by 2030?

https://watt-logic.com/2025/11/14/ccgt-retirement-risk/
2•mike_hearn•34m ago•0 comments

Hybrid Work Productivity Strategies That Transform Remote Teams in 2025

https://intelligentfuturetech.com/blog/hybrid-work-productivity-strategies-2025/
1•ift•36m ago•1 comments

Suicide Attempt by Means of Aspirin Enema

https://journals.sagepub.com/doi/10.1177/106002809402800409
2•Eridanus2•36m ago•0 comments

Ask HN: Architecting audit-grade ESG platforms – AI assistants vs. human CTOs

2•Jayeshkumbhar•38m ago•1 comments

Is ChatGPT and OpenAI Stealing Ideas?

https://medium.com/@klaudibregu/is-chatgpt-and-openai-stealing-ideas-does-it-have-the-right-to-do...
2•trilogic•39m ago•1 comments

Iran judiciary calls for tougher stance on 'social anomalies'

https://www.arabnews.com/node/2622701/middle-east
1•mhb•40m ago•0 comments

Argusee: A Multi-Agent Architecture for Automated Vulnerability Discovery

https://www.darknavy.org/blog/argusee_a_multi_agent_collaborative_architecture_for_automated_vuln...
1•uneven9434•41m ago•0 comments

Anthropic partners with Iceland to deploy Claude in schools nationwide

https://aibusiness.com/foundation-models/iceland-claude-schools-ai-pilot
1•geox•44m ago•0 comments

Tit-for-Tat: Porn Producers Counter Meta's "Personal Use" Piracy Defense

https://torrentfreak.com/tit-for-tat-porn-producers-counter-metas-personal-use-piracy-defense/
2•gslin•47m ago•0 comments

Metals are key to the global economy – three challenges threaten supply chains

https://www.nature.com/articles/d41586-025-03312-0
2•zeristor•50m ago•1 comments
Open in hackernews

Ask HN: How do you handle long-term memory with AI tools like Cursor and Claude?

3•JakaKotnik•1h ago
I keep running into the same friction point when coding with AI tools. They are amazing inside a single session, but the moment you open a new one, they forget everything about the project, past reasoning, edge cases, or architecture notes.

I know some people maintain MD files or detailed RAG setups, but most developers I talk to say their context is scattered across Slack, GitHub issues, Notion, docs, emails, etc.

So I’m curious how others solve this today:

• Do you rely on project-local markdown files? • Do you manually restitch context every session? • Have you built your own external memory store? • Or do you just accept that AI will forget most things between sessions?

Not trying to promote anything. I genuinely want to understand whether this is a real pain point across teams or just a “me” problem.

Would love to hear how you manage long-term context in your workflow.

Comments

dtagames•1h ago
In short, MD files. After stuff works, I canonize the documentation about how it works by having Cursor write all of that in a special folder. Then, I can @reference that folder or a doc in it at the start of a prompt that will need that context.

It's part of a larger process for working with LLMs that I call "Plans on Plans." I wrote about it on Medium.[0]

[0] https://levelup.gitconnected.com/you-are-bugs-improving-your...