frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

PostgreSQL 18 New Features

https://neon.com/postgresql/postgresql-18-new-features
1•bricss•48s ago•0 comments

Study: Facebook is more habit-forming than TikTok

https://link.springer.com/epdf/10.1140/epjds/s13688-025-00581-7
1•matthewsharpe3•3m ago•0 comments

The "Spit Test" That Could Save Your Life

https://www.greyb.com/blog/ai-in-dental-care/
1•ann_ip•5m ago•0 comments

Ask HN: Is there a good alternative to Maven central?

1•roschdal•5m ago•0 comments

Rust ints to enums with fewer instructions

https://sailor.li/ints-to-enums
2•fanf2•9m ago•0 comments

Radicle: Peer-to-Peer Collaboration with Git

https://lwn.net/Articles/966869/
1•emreb•10m ago•0 comments

What .NET 10 GC Changes Mean for Developers

https://roxeem.com/2025/09/30/what-net-10-gc-changes-mean-for-developers/
1•roxeem•10m ago•0 comments

The math behind six degrees of separation [video]

https://www.youtube.com/watch?v=CYlon2tvywA
1•skilled•17m ago•0 comments

What's the difference between files and directories in a Unix-like filesystem?

https://jack23247.github.io/blog/linux/inodes/
1•Bogdanp•17m ago•0 comments

AI Image Editor

https://imagable.ai
1•bellamoon544•24m ago•1 comments

Making sense of parameter-space decomposition

https://www.lesswrong.com/posts/Wo22C8vhveDbDWhAc/making-sense-of-parameter-space-decomposition
1•gts_77•27m ago•0 comments

Show HN: I made an open-source web engine for relativistic simulations

https://www.lazarus-12.space/
1•egretfx•32m ago•0 comments

Tilly Norwood

https://brajeshwar.com/2025/tilly-norwood/
1•furkansahin•33m ago•0 comments

Skillbeacon.ai Skill Trends in Media

https://skillbeacon.ai
1•TobiX86•34m ago•1 comments

More Speculations on Arenas in C++

https://nullprogram.com/blog/2025/09/30/
2•signa11•37m ago•0 comments

OpenAI's SaaS attack has begun. Here are the companies in the firing line

https://www.businessinsider.com/openai-saas-attack-hubspot-salesforce-docusign-zoominfo-2025-9
1•ms7892•37m ago•0 comments

The EV tax credit is dead – here's what happens next

https://www.theverge.com/transportation/787281/ev-tax-credit-sales-lease-trump-climate
2•occamschainsaw•41m ago•0 comments

I only use Google Sheets

https://mayberay.bearblog.dev/why-i-only-use-google-sheets/
2•mugamuga•44m ago•0 comments

Native Python Packaging: BLAS, Lapack and OpenMP

https://pypackaging-native.github.io/key-issues/native-dependencies/blas_openmp/
1•anewhnaccount2•44m ago•0 comments

CIA Career Link: Use of Generative AI (Gen AI)

https://www.cia.gov/ehl/form
3•gfalcao•50m ago•0 comments

Category Theory Illustrated – Natural Transformations

https://abuseofnotation.github.io/category-theory-illustrated/11_natural_transformations/
10•boris_m•50m ago•0 comments

"Nightmare bacteria" are rapidly spreading

https://theweek.com/health/nightmare-bacteria-what-are-they
2•mdp2021•53m ago•0 comments

The Beer Can

https://brr.fyi/posts/beer-can
2•Michelangelo11•59m ago•0 comments

Sam Altman on Sora 2

https://blog.samaltman.com/sora-2
1•amrrs•1h ago•0 comments

Online debate in US is botted

3•vinserello•1h ago•0 comments

Pidgin 3.0 Experimental 4 (2.93.0) has been released

https://discourse.imfreedom.org/t/pidgin-3-0-experimental-4-2-93-0-has-been-released/309
2•birdculture•1h ago•0 comments

A WASM DB saved our data analysis engine

2•vinserello•1h ago•0 comments

Bytes Revealer v0.3

https://bytesrevealer.online/
1•vulnex•1h ago•1 comments

Claude Code: VS Code Extension (Beta)

https://docs.claude.com/en/docs/claude-code/vs-code
1•e2e4•1h ago•0 comments

Show HN: Open-source project – HTTP cache and reverse proxy

https://borislavv.github.io/advcache.dev/
1•sanchez_c137•1h ago•0 comments
Open in hackernews

Agent Knowledge Needs More Than Just RAG

2•Arindam1729•1h ago
When people talk about “knowledge for agents,” it almost always collapses into RAG. But knowledge can, and should—be treated as a first-class runtime tool, not just a context filler.

In most implementations, knowledge lives in a vector database. Agents query it through a search_knowledge tool, often hybrid (keyword + semantic) with re-ranking. That’s essentially “Agentic RAG,” and it works well enough for a lot of use cases.

But once you think of knowledge as runtime-accessible memory, other patterns open up:

1. Dynamic Instructions Most serious agent use cases can’t just dump all instructions into the system prompt. Take a Text2SQL agent: it needs table schemas, column names, data types, and common query templates. You don’t bake all that into the core prompt—you store it and let the agent query the relevant slice when needed.

That’s dynamic instructions: system prompt as RAM, knowledge base as disk. Core logic in RAM, path-specific instructions pulled from disk at runtime.

2. Adaptive Learning Still experimental, but worth considering. The agent monitors its own conversations, flags successes/failures, and updates the knowledge base in the background. If it repeatedly fails on a domain-specific question, it can either suggest new entries or prompt a human admin to add them. Over time, the knowledge base evolves in response to real usage.

This is harder than it sounds (classification, trust, governance), but if solved, it gives agents a feedback-driven memory loop instead of a static RAG pipeline.

Bonus idea: pair the knowledge base with a scratchpad. Let the agent run iterative, multi-step searches over knowledge, not just one-shot retrieval. That’s where “deep research” style behaviors start to emerge.

I would love to know if you have tried dynamic instructions or adaptive learning?

Comments

Arindam1729•1h ago
I’ve been collecting different open-source examples of agents that use these patterns (RAG, workflows, multi-agent setups, etc.) here:https://github.com/Arindam200/awesome-ai-apps

Feel Free to try it and let me know!

qnaforum•1h ago
Knowledge should guide agents, not just sit in storage.