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

推荐订阅源

博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
Microsoft Azure Blog
Microsoft Azure Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
D
DataBreaches.Net
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
I don't see any good orchestration system for AI agents
ffacu · 2026-06-21 · via Hacker News - Newest: "AI"

A couple of weeks ago I saw a guy in the office with six instances of claude code, each in a different window.

I've seen a lot of attempts at orchestrating agents. And there are some viral repos which show a lot of agents like videogame characters, and you can touch any one of them and then chat with that agent. But none of these solutions are actually useful; it's all a facade. Because at the end of the day, people keep going back to the split-terminal setup.

There's no real solution for the environment problem. I don't feel comfortable running claude --dangerously-skip-permissions on the machine I have all the data. I would like to run each agent in a docker container. I'm sure there are a lot of images for claude code and even libraries that trigger tasks and whatnot. But I don't see any commonly adopted solution.

I feel like a lot of people are talking about agentic workflows and a lot of agents running simultaneously, but the ones that are actually running agents in parallel for doing actual work are doing it in the most primitive way: just a handful of terminals.

Which brings a lot of problems. Because what about the workspaces? I can set up worktrees for each, but then what if I want to review their work?

One of the main problems I have with a lot of the solutions in the space is that they assume it will just work. There is no easy way for controlling an agent and stepping in. Opus 4.8 is amazing, but there are times when it's a lot easier (and cheaper) to just look at the code and change that one variable.

There seem to be these two big groups currently in tech:

  • The ones that treat code like a black box, and never touch or see the code no matter what
  • The ones that use AI, but do so in a very controlled or "conservative" way: a couple of agents running, but watching them, watching the code. They don't really trust AI.

The first group loses a lot when hard problems appear, but the second group is lagging behind the first. And yes I do think that blindly telling AI things makes for a very fragile architecture that becomes an unmaintainable mess in a few months. But companies or clients will judge you on your work, and will value how much you did over what problems you avoided. So, for better or worse, the second group is lagging behind and seen as "unproductive".

What seems to be the winning move is to delegate work to the agents, while being willing to go into the code and read it and "get your hands dirty".

But I don't see a library for that. That is, for delegating control, while at the same time allowing you to step in and check what's happening.

I tried zed editor, and it's quite nice, but it still has this "code-first" approach. It also does not have support for VS Code plugins. I think that vibe coders are starting to get right most of the time that "you don't need to know programming" to build things, but there are crucial moments where stepping in is the best, and they pay very hard the price for not doing that.

The code is still relevant, but not so much that you have to watch it closely every time. If you design it correctly, and the AI understands you, it will probably write good code. Even Linus agrees that it is reaching pretty good levels.

I think the code is starting to be more secondary. Which also opens up a possibility that only Cursor and Replit seem to be exploring: starting coding on the smartphone. But that is another topic.

The point is, there is no solution that makes code an important but not primary actor.

Current solutions or libraries make the agent a part of the workspace, and not the other way around, which is starting to seem the most sensible approach.