Would be happy to onboard you personally.
Ask HN: What is the best way to provide continuous context to models?
11–20 of 48 posts
Re: Ask HN: What is the best way to provide continuous context to models?
#12Re: Ask HN: What is the best way to provide continuous context to models?
#13Cursor and AI coding doesn't do it. It uses agentic subtasks.
Re: Ask HN: What is the best way to provide continuous context to models?
#14Each of the 4 responses will disagree, despite some overlap. I take the union of the 4 responses as the canonical set of files that an implementer would need to see.
This reduces the risk of missing key files, while increasing the risk of including marginally important files. An easy trade-off.
Then I paste the subset of files into GPT 5.2 Pro, and give it $TASK.
You could replace the upstream process with N codex sessions instead of N gemini chat windows. It doesn't matter.
This process can be automated with structured json outputs, but I haven't bothered yet.
It uses much inference compute. But it's better than missing key inputs and wasting time with hallucinated output.
Re: Ask HN: What is the best way to provide continuous context to models?
#15Best methods I’ve observed -progressive loading (claude skills) & symbolic search (serena mcp)
Re: Ask HN: What is the best way to provide continuous context to models?
#16I've been building https://www.usesatori.sh/ to give persistent context to agents Would be happy to onboard you personally.
Re: Ask HN: What is the best way to provide continuous context to models?
#17> what according to you is the best way to provide context to a model. Are you talking about manually or in an automated fashion?
Re: Ask HN: What is the best way to provide continuous context to models?
#18I open 4 chat windows with Gemini 3.0 Pro. I paste in all file contents to each window. I ask them "which files would an AI need to do $TASK effectively?" Each of the 4 responses will disagree, despite some overlap. I take the union of the 4 responses as the canonical set of files that an implementer would need to see. This reduces the risk of missing key files, while increasing the risk of including marginally impor…
Re: Ask HN: What is the best way to provide continuous context to models?
#19Re: Ask HN: What is the best way to provide continuous context to models?
#20With these i'll mostly just give it questions: what are some approaches to implement x, what are the pros and cons, what libraries are available to handle x? What data would you need to create x screen, or y report? And then let it google it, or run queries on your data.
I'll have it create markdown documents or skills to persist the insights it comes back with that will be useful in the future.
LLMs are pretty good at plan/do/check/act: create a plan (maybe to run a query to see what tables you have in your database), run the query, understand the output, and then determine the next step.
Your main goal should be to enable the PDCA loop of the LLM through tools you provide.