Hacker News
AI Engineer Talks
Article URL: https://www.ai.engineer
Comments URL: https://news.ycombinator.com/item?id=48124826
Points: 1
# Comments: 0
Gecko: A fast GLR parser with automatic syntax error recovery
Article URL: https://vnmakarov.github.io/parsing/compilers/c/open-source/2026/04/22/gecko-glr.html
Comments URL: https://news.ycombinator.com/item?id=48124248
Points: 1
# Comments: 0
The Tech Jobs That Are Safe from AI
Article URL: https://www.wsj.com/tech/ai/the-tech-jobs-that-are-safe-from-ai-8d415383
Comments URL: https://news.ycombinator.com/item?id=48124231
Points: 1
# Comments: 1
Agent pull requests are everywhere
Article URL: https://github.blog/ai-and-ml/generative-ai/agent-pull-requests-are-everywhere-heres-how-to-review-them/
Comments URL: https://news.ycombinator.com/item?id=48124227
Points: 1
# Comments: 0
OpenAI DevDay 2026
Article URL: https://openai.com/index/devday-2026/
Comments URL: https://news.ycombinator.com/item?id=48124225
Points: 1
# Comments: 0
How the Bird Eye Was Pushed to an Evolutionary Extreme
Article URL: https://www.quantamagazine.org/how-the-bird-eye-was-pushed-to-an-evolutionary-extreme-20260513/
Comments URL: https://news.ycombinator.com/item?id=48124224
Points: 1
# Comments: 0
Ten Releases of Great Docs, a fairly new Python static site generator
Article URL: https://opensource.posit.co/blog/2026-05-13_great-docs-ten-things/
Comments URL: https://news.ycombinator.com/item?id=48124223
Points: 1
# Comments: 0
Show HN: Majestic, GUI for Jest
Article URL: https://github.com/Raathigesh/majestic
Comments URL: https://news.ycombinator.com/item?id=48124207
Points: 1
# Comments: 0
CIA spy blames Dr Fauci for covering up Covid lab leak
I think first-pass private equity analysis will be automated
Article URL: https://www.valedex.com/
Comments URL: https://news.ycombinator.com/item?id=48124179
Points: 1
# Comments: 0
Projecting React
Article URL: https://tannerlinsley.com/posts/projecting-react
Comments URL: https://news.ycombinator.com/item?id=48124160
Points: 1
# Comments: 0
Cangjie, an Open-Source Compiled Language with Native Effect Handlers and ADT
Article URL: https://www.infoq.com/news/2026/05/cangjie-effect-handlers-adt/
Comments URL: https://news.ycombinator.com/item?id=48124152
Points: 1
# Comments: 0
No more Lineage OS on Samsung cellphones
Article URL: https://kevinboone.me/samsung-no-more-lineage.html
Comments URL: https://news.ycombinator.com/item?id=48124146
Points: 2
# Comments: 0
Removing the Modem and GPS from My 2024 RAV4 Hybrid
Article URL: https://arkadiyt.com/2026/05/13/removing-the-modem-and-gps-from-my-rav4/
Comments URL: https://news.ycombinator.com/item?id=48124118
Points: 2
# Comments: 0
A City on Mars: Should We Settle Space, and Have We Thought This Through?
Article URL: https://en.wikipedia.org/wiki/A_City_on_Mars
Comments URL: https://news.ycombinator.com/item?id=48124092
Points: 1
# Comments: 0
Archivists Turn to LLMs to Decipher Handwriting at Scale
Article URL: https://spectrum.ieee.org/ai-handwriting-transcription-transkribus-lecun
Comments URL: https://news.ycombinator.com/item?id=48124083
Points: 1
# Comments: 0
When Search Becomes Expensive to Improve
Article URL: https://www.searchplex.net/blog/when-search-becomes-expensive-to-improve
Comments URL: https://news.ycombinator.com/item?id=48124078
Points: 1
# Comments: 0
Thoughts on Claude Code 2.1.139 Agent View and Background Sessions
Spent half a day trying Claude Code 2.1.139’s new Agent View and background sessions — useful, but still has quite a few rough edges.
The first item in the 2.1.139 changelog released on 2026-05-11 was Added agent view (Research Preview). Interestingly, they even included a dedicated doc link in the changelog this time: https://code.claude.com/docs/en/agent-view
Not sure how many people here have tried it yet. I spent a few hours with it today and found both some really nice ideas and some frustrating issues. Curious to hear other people’s experiences too.
1. What is Agent View?
Agent View can launch parallel Claude sessions directly, and each session automatically uses a separate git worktree for isolation, so multiple sessions can run in parallel without conflicts.
The background sessions are managed by an independent supervisor process. They continue running even if the terminal or Agent View itself is closed. Closing the terminal does NOT stop the background sessions.
Checking processes with ps, you can see a supervisor process like:
claude daemon run --spawned-by xxxx
with PPID = 1.
I honestly never noticed this supervisor process before. I downgraded back to 2.1.138 just to test, and it seems older versions don’t start it. In 2.1.139, using claude agents, claude --bg, or /bg will spawn the supervisor.
2. My experience so far
After using it for a while today, a few usability issues stood out immediately:
- Sessions always create worktrees, but Agent View doesn’t show branch status (mergeable, already merged, etc.), so I constantly had to check branch state outside Agent View - Agent View shows ALL background sessions globally, with no workspace/project filtering. If you use background sessions across multiple repos, the list becomes messy very quickly - When dispatching sessions from Agent View, you can’t specify permission mode. You have to use claude --bg or /bg first to configure permissions, then “push” it into Agent View afterward
Honestly, this feature feels a bit rushed compared to some earlier Claude Code features that were hidden behind explicit environment flags. Agent View is the opposite — it’s enabled by default, and you need an environment variable to disable it.
That said, after using it overall, I do think it can partially replace tools like Conductor.
Personally, I feel the most important change in this release is actually the introduction of the supervisor role itself. It opens the door for much more functionality in the future, especially around remote-control capabilities.
I also tested this with remote-control enabled for all sessions. Background sessions created from Agent View are visible inside the Claude mobile app, and you can continue chatting with them there, which is honestly pretty cool.
Right now the Claude mobile app still can’t create sessions directly, but now that Claude Code already has a supervisor architecture in place, I wouldn’t be surprised if starting sessions on your host machine from the mobile app becomes possible very soon. Remote-control feels like it’s going to get much more powerful over time.
And finally, a small shameless plug
If you can’t use remote-control, or just don’t like the chat-style interaction model, you can try the remote Claude Code / Codex app I built: ServerCC https://servercc.llpsh.com
It’s also searchable on the App Store.
Besides enabling high-quality remote Claude Code/Codex usage over mobile networks, it also supports:
browsing and uploading workspace files
VNC desktop viewing for UI debugging
Termius-style persistent sessions / keep-alive
and more
What are your thoughts on features like Claude Code Agent View or background agents?
Comments URL: https://news.ycombinator.com/item?id=48124057
Points: 1
# Comments: 0
Tyr for first place at RustWeek 2026
Article URL: https://www.collabora.com/news-and-blog/news-and-events/tyr-for-first-place-at-rustweek-2026.html
Comments URL: https://news.ycombinator.com/item?id=48124051
Points: 1
# Comments: 0
Spam filters are the consent layer. That's embarrassing
Article URL: https://datatracker.ietf.org/doc/draft-cure-core/
Comments URL: https://news.ycombinator.com/item?id=48124043
Points: 2
# Comments: 0
