惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
G
Google Developers Blog
H
Help Net Security
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
GbyAI
GbyAI
D
Docker
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
博客园 - 司徒正美
Last Week in AI
Last Week in AI
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence

Nishant Soni

We are looking at Artificial Intelligence all wrong. Slopocalypse is what we should be really worried about. The best code is still no code Thoughts on Opus and Mythos All Models Must Die OpenClaw’s memory is unreliable, and you don’t know when it will break The Shell Is the Most Underrated Interface in AI Strategic Forgetting: A Cognitive Architecture for Long Horizon Autonomy Is Opus Conscious ? Maybe Moltbook Isn't What We Think It Is Why AI might be commonly misunderstood In 2026, we hope to put NonBioS to sleep. The best way to handle a challenging situation is sometimes to do nothing. The AI Metric that might surprise you The (Junior) AI Software Engineer AI Agents vs AI Agencies: What's the Difference? (2026) The Pay Day Paradox: When Connected Dots Create Hidden Value Why I started writing after a long time. The Most Important Thing for Founders... and the Secret Answer to Your Hardest Problems Why Cash Flow is Destiny and Amazon's Secret Leadership Principle Which Can Help You Control It... SaaS isn't Dead. Atleast not yet. DeepSeek in the Himalayas How Does NonBioS Work? The 100x Engineer
The most counterintuitive thing we learned about building...
Nishant Soni · 2025-10-23 · via Nishant Soni

We’ve discovered something counterintuitive while building long-horizon AI agents at NonBioS: tools and memory can actually make your agent dumber.

I know this sounds backwards. To be fair, you need tools and memory to make LLMs useful and create agents out of them. But here’s what we’ve learned—every new tool and every new memory that you add to an agent adds to the cognitive load of the agent and leaves less capacity to tackle the actual problem at hand. This problem could be debugging complex software, or doing an analytics root cause analysis.

So what’s the solution to build effective long horizon agents? We took two radical approaches at NonBioS: Strategic Forgetting and what we call Grounded Linux capability for tool usage. Let me explain each.

Strategic Forgetting: Less Memory, More Focus

Instead of making agents remember everything, we invented Strategic Forgetting—an algorithm that continuously prunes the agent’s memory to keep it sharp and focused.

Here’s how it works: We evaluate information retention based on several key factors. Relevance scoring—we assess how directly information contributes to the current objective versus being tangential noise. Temporal decay—information gets weighted by recency and frequency of use, rarely accessed context naturally fades. Retrievability—if data can be easily reconstructed from system state or documentation, it’s a candidate for pruning. And source priority—user-provided context gets higher retention weight than inferred or generated content.

The algorithm runs continuously during coding sessions, creating a dynamic “working memory” that stays lean and focused. Think of it like how you naturally filter out background conversations to focus on what matters.

But it’s a work in progress. NonBioS does lose focus eventually and has to reboot. This is exactly like humans getting tired by end of day and needing to sleep. But if you read a novel for breakfast, you might need to nap by noon.

Grounded Linux Capability: Rethinking Tool Calls

NonBioS does zero tool calls in the traditional sense. Even though NonBioS has access to all the tools of a Linux environment, it does so through what we call a Grounded Linux Capability. The grounded capability means that the NonBioS orchestration layer imputes tool calls through NonBioS responses which are grounded in the training set. Because the tool call doesn’t pollute the inference time context, it maintains better cognitive capacity over time.

Every user in NonBioS gets a full Linux VM with root access. You can ask NonBioS to pull in your source code and implement any feature. The context is all managed automatically through Strategic Forgetting.

Both Grounded Linux capability and state-of-the-art Strategic Forgetting are the critical components that allow NonBioS’s long horizon autonomy to manifest. Right now NonBioS is able to run multi-hour software engineering sessions with human-in-the-loop guided autonomy. However this capability is constantly being extended and we have no reason to believe that we’re hitting any limits yet. There’s little reason to believe that we won’t reach multi-month autonomous sessions by early next year.

What this could mean: NonBioS will be able to work on large scale software projects almost completely autonomously, checking in with you periodically to align expectations and make sure you’re aligned on the final outcome.

The challenge is getting the balance right—too aggressive with forgetting and you lose important threads, too conservative and you’re back to the goldfish problem - agent drowning in its own context. But we’ve tried it out in very complex code bases and it works remarkably well. Once you see how well it works, it becomes easier to imagine that the days of using IDEs to edit code might be numbered.

The core insight? At NonBioS we take the opposite approach to most agent systems. Instead of making agents remember everything, we make them forget what’s not important. This keeps them sharp and focused on what truly matters.