LearnBuddy
LearnBuddyAI-powered · practice-led
Home
AITrainingHOT

LearnBuddy guides you

Decks

My card collections - Manage and review knowledge

Login
© 2026 LearnBuddy · 智流学社·Privacy Policy·Terms of Service·粤ICP备2026044245号

AI Tech Radar

Daily Auto Update

Daily curated tech news — master AI business trends & open-source ecosystem in 5 minutes

2026-09-04 · 100+ Global Tech Signal Sources

Today's Signals
本周企业级AI代理部署从实验转向规模化运营,关注治理与集成
文章指出企业正将AI代理从试点推向规模化部署,挑战在于如何让代理在复杂工作流中协同工作(Scaling agentic AI pilots across the enterprise)。同时,法律事务所Gilbert + Tobin展示了结合CEO领导力、严格治理与人工问责来规模化ChatGPT Enterprise的路径。
近3天AI基础设施与协议层出现关键演进,MCP协议转向无状态
MCP (Model Context Protocol) 于2026年7月28日将其协议核心改为无状态,移除了初始化握手和会话头,这被视为对AWS MCP服务器部署架构的重要影响(MCP went stateless)。同时,NVIDIA计划以约129亿美元收购Hugging Face,旨在巩固其作为开源AI模型中心平台的地位。
今日行业特定AI应用加速落地,聚焦医疗与电商垂直场景
ChatGPT现已支持连接可信的医疗数据(如EHR),帮助临床医生安全访问患者背景信息(Healthcare organizations can now connect EHR...)。另一方面,开发者利用Qwen3.8-Max构建了电商商品资料包体检助手,可一次性从6份资料和1张商品图中检查出27个问题。
📖 Featured Reads
Based on radar changes · 22 selected
1
Claude Fable and Mythos trim the verbiage: Perplexity preserves privacy on local machinesHOT
World Labs founder Fei-Fei Li introduces a world model. Times-FM-3 sets new standard for multivariable time forecasts. ChatGPT’s advertising program expands to new countries. Music publishers sue Anthropic for copyright infringement.
First-partythe-batch
2
ATV Big Air Tour turned 3 days of work into 3 hours with ChatGPTHOT
ATV Big Air Tour uses ChatGPT Work to speed up marketing, merchandising, and more. It even turned merchandise photos into an inventory website in 15 minutes.
Officialopenai-blog
3
An Accidental BlackboardHOT
Giles Edwards-Alexander reports that during an experiment to see how productive a team could be using fully agentic engineering practices, the team accidentally prompted the agents into creating a blackboard coordination system inside the git repository. more…
First-partymartin-fowler
4
Maybe We Shouldn't Be Reviewing All This Code
TL;DR Or, perhaps the problem isn't that AI has broken code review, maybe it’s that we've been using code review to solve the wrong problems I was on a panel recently with Brian Houck from DX at Code Remix, hosted by Moderne. It was one of the more interesting panels I’ve done, largely because we disagreed. As my colleague Martin Fowler says, panels are much more interesting when people disagree and both sides have a good argument. Brian and I definitely did. Brian has since written a thoughtful piece called What are code reviews even for? He is clearly passionate about his position, and I am passionate enough about mine that I’m writing this response. To be clear, I think we mostly want the same things. I just don’t think code review is the best way to get them. Brian is lovely, by the way, and encouraged me to write this. But I’d be lying if I said I didn’t want you to think I’m right by the end :) So what were we disagreeing about? AI is producing more code than humans can realistically review. Brian cites some pretty striking numbers: at Meta, significant lines of code per human-landed diff reportedly increased 106% in a year, while DX’s own data shows median pull request size increasing 64%. His concern, which I share, is that simply automating code review away risks losing all the other things we use it for. Code review isn’t just about finding bugs. It’s how teams share knowledge, teach junior engineers, build collective ownership and spread architectural understanding. My question is: why are we waiting until code review to do all of those things? I’ve never particularly liked pull requests as the centre of the software development process. Not because engineers shouldn’t look at each other’s code, but because I’ve always struggled with the idea that we should build something, finish it, package it up, throw it over to somebody else and then have the important conversation about whether we built the right thing in the right way. And don’t even get me started on merge conflicts. I’ve lost too many hours of my life. Shift the judgment left One of the principles I learned very early at Thoughtworks was to shorten feedback loops. If feedback is valuable, don’t remove it. Move it closer to the decision it is informing. Take the things we say code review gives us. If we want to explore alternative solutions, I’d rather do that before implementing one of them. If we want knowledge transfer, pair. Sitting next to someone, physically or virtually, while they reason through a problem teaches you far more than reading their completed solution afterwards. If we want junior engineers to learn how experienced engineers think, let them work with experienced engineers while they’re thinking. Pairing comes to mind again here, but teams could also do design sessions collectively with a whiteboard before they write (or instruct the agent to write) anything. If we want collective ownership, organise teams so people actually build and operate software collectively rather than relying on a pull request to tell everyone what somebody else has already built. For this again use pairing, mob programming, or team design sessions around whiteboard. If we want architectural alignment, design together (I won’t repeat myself about pairing and team design sessions, oh wait…) and then encode the important constraints as fitness functions. And if we’re reviewing code for formatting, linting, known security problems or things that can be deterministically tested, automate them. We really shouldn’t still be arguing about whitespace in 2026. Pair programming, trunk-based development, automated testing, static analysis, fitness functions and security scanning all move feedback earlier. Increasingly, agents can participate in those loops too, challenging designs, testing assumptions and continuously verifying what is being built, but the real thinking is coming from experienced humans and if we want that experience to benefit the whole team then we have to act like one much earlier than code review. Review by exception None of this means nobody ever reviews code. There are absolutely changes where I want another experienced human looking. An example would be a fundamental architectural change. Assuming we did a design session as a wider team, we might want to review the code as a team or agree it was implemented right, or discuss if we want to change anything. Other examples could be something crossing a sensitive security boundary, a change with a huge blast radius, an unfamiliar part of a critical system or simply something where the team says, “I’m not confident about this.” Those are exactly the places where human judgment is valuable, but that’s very different from requiring a human to inspect every change because that’s the ceremony we’ve historically used to create confidence. And we know now it’s not viable to continue down this path, hence why code review keeps coming up as an issue or a blocker. If an agent can produce ten times the code but every line eventually queues up waiting for a senior engineer to inspect it, we haven’t created a ten-times engineering organisation, we’ve created a big backlog and a new bottleneck. And I don’t think the answer is an AI agent pretending to be the human reviewer so we can preserve exactly the same process at higher speed. That’s automating the ceremony rather than questioning why the ceremony exists. There is one thing I do worry about in Brian’s argument, though. He talks about teams accumulating cognitive and intent debt: software grows while the humans responsible for it understand less and less about why it works the way it does. I think that’s a very real problem. I just don’t think mandatory pull requests are a particularly strong defence against it. If agents are going to produce substantially more of the implementation, we need to be much more deliberate about maintaining human understanding through collaborative design, pairing, good boundaries, executable architecture, shared operational responsibility and probably some practices we haven’t invented yet. We need engineers to understand systems, not diffs. Perhaps that’s what AI is exposing. We’ve spent years loading an extraordinary number of responsibilities onto the humble code review: quality gate, security check, architecture review, mentoring mechanism, knowledge-sharing system, ownership model. It worked, sort of, while humans could only produce code so quickly. That constraint is disappearing. So perhaps the question isn’t how we get the code reviewed faster. Perhaps it’s why we’re waiting until code review to have all the important conversations in the first place.
First-partymartin-fowler
5
An Organizational Second Brain: Building an AI That Learns From Experts
We’ve built an AI agent that acts as a secondary expert for a given domain, making deep specialist knowledge readily available and preserved for anyone in an organization to access, share, and build upon. This is not a typical domain-specific agent. Its novelty comes from integrating two layers:  A structured, auditable knowledge architecture separates what [...] Read More... The post An Organizational Second Brain: Building an AI That Learns From Experts appeared first on Engineering at Meta.
Officialmeta-ai-blog
⚡ Open Source Trending
24h activity · Stars·PRs·PushesActivity ranking
No data available
🎯 AI Tech Radar100+ sources · Daily auto update
Click item for details
ADOPTAdopt
TRIALTrial
ASSESSAssess
HOLDHold
ADOPTTRIALASSESSHOLDTECHNIQUESTOOLSPLATFORMSLANGUAGESHOTClaudeHOTGPTHOTGeminiOpenAI CodexClaude CodeCursorRAGFine-tuningPythonAI AgentMCPvLLMHermes AgentLangChainOllamaDeepSeekTypeScript
🎯

Click any item on the radar
to view detailed analysis and learning suggestions