frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Ladybird Browser July Update

https://ladybird.org/newsletter/2025-07-31/
19•net01•1h ago•0 comments

Cerebras Code

https://www.cerebras.ai/blog/introducing-cerebras-code
289•d3vr•9h ago•119 comments

Hardening mode for the compiler

https://discourse.llvm.org/t/rfc-hardening-mode-for-the-compiler/87660
83•vitaut•5h ago•10 comments

Coffeematic PC – A coffee maker computer that pumps hot coffee to the CPU

https://www.dougmacdowell.com/coffeematic-pc.html
175•dougdude3339•9h ago•40 comments

Weather Model based on ADS-B

https://obrhubr.org/adsb-weather-model
149•surprisetalk•2d ago•24 comments

JavaScript retro sound effects generator

https://github.grumdrig.com/jsfxr/
56•selvan•3d ago•12 comments

Robert Wilson has died

https://www.theartnewspaper.com/2025/08/01/robert-wilson-playwright-director-artist-obituary
44•paulpauper•4h ago•11 comments

At 17, Hannah Cairo solved a major math mystery

https://www.quantamagazine.org/at-17-hannah-cairo-solved-a-major-math-mystery-20250801/
297•baruchel•15h ago•133 comments

Ethersync: Peer-to-peer collaborative editing of local text files

https://github.com/ethersync/ethersync
109•blinry•3d ago•19 comments

I couldn't submit a PR, so I got hired and fixed it myself

https://www.skeptrune.com/posts/doing-the-little-things/
241•skeptrune•14h ago•139 comments

The Rickover Corpus: A digital archive of Admiral Rickover's speeches and memos

https://rickovercorpus.org/
45•stmw•6h ago•10 comments

Ask HN: Who is hiring? (August 2025)

180•whoishiring•16h ago•212 comments

Native Sparse Attention

https://aclanthology.org/2025.acl-long.1126/
109•CalmStorm•11h ago•15 comments

Yearly Organiser

https://neatnik.net/calendar/
20•anewhnaccount2•3d ago•7 comments

Does the Bitter Lesson Have Limits?

https://www.dbreunig.com/2025/08/01/does-the-bitter-lesson-have-limits.html
127•dbreunig•11h ago•63 comments

Why leather is best motorbike protection – whilst being dragged along concrete

https://www.youtube.com/watch?v=xwuRUcAGIEU
13•lifeisstillgood•1d ago•0 comments

Researchers map where solar energy delivers the biggest climate payoff

https://www.rutgers.edu/news/researchers-map-where-solar-energy-delivers-biggest-climate-payoff
89•rbanffy•11h ago•46 comments

Anthropic revokes OpenAI's access to Claude

https://www.wired.com/story/anthropic-revokes-openais-access-to-claude/
204•minimaxir•9h ago•66 comments

Launch HN: Societies.io (YC W25) – AI simulations of your target audience

92•p-sharpe•19h ago•49 comments

Sources of Truth

https://cutlefish.substack.com/p/tbm-369-sources-of-truth
6•kiyanwang•3d ago•0 comments

Show HN: Draw a fish and watch it swim with the others

https://drawafish.com
837•hallak•4d ago•216 comments

The tradeoff between human and AI context

https://softwaredoug.com/blog/2025/07/30/layers-of-ai-coding
16•softwaredoug•2d ago•0 comments

Replacing tmux in my dev workflow

https://bower.sh/you-might-not-need-tmux
263•elashri•22h ago•291 comments

Ergonomic keyboarding with the Svalboard: a half-year retrospective

https://twey.io/hci/svalboard/
96•Twey•15h ago•51 comments

Ask HN: Who wants to be hired? (August 2025)

79•whoishiring•16h ago•190 comments

Make Your Own Backup System – Part 2: Forging the FreeBSD Backup Stronghold

https://it-notes.dragas.net/2025/07/29/make-your-own-backup-system-part-2-forging-the-freebsd-backup-stronghold/
102•todsacerdoti•4d ago•4 comments

Our Farewell from Google Play

https://secuso.aifb.kit.edu/english/2809.php
261•shakna•22h ago•107 comments

Google shifts goo.gl policy: Inactive links deactivated, active links preserved

https://blog.google/technology/developers/googl-link-shortening-update/
219•shuuji3•14h ago•158 comments

Twentyseven 1.0

https://blog.poisson.chat/posts/2025-08-01-twentyseven.html
32•082349872349872•9h ago•3 comments

Self-Signed JWTs

https://www.selfref.com/self-signed-jwts
100•danscan•13h ago•63 comments
Open in hackernews

Deep Agents

https://blog.langchain.com/deep-agents/
114•saikatsg•12h ago

Comments

seabass•11h ago
Is there more info on how the todo list tool is a noop? How exactly does that work?
JyB•11h ago
Same question. I don’t understand what they mean by that. It obviously seem pretty central to how Claude Code is so effective.
kjhughes•11h ago
I thought they meant that it's a noop as a tool in the sense that it takes no external action. It seems nonetheless effective as a means of organizing reasoning and expressing status along the way.
kobstrtr•11h ago
just for chain of thought TodoWrite would be sufficient as a tool wouldn‘t it?
kobstrtr•11h ago
if it was a noop, I feel like there wouldn‘t be a need to have TodoRead as a tool, since TodoWrite exists. Would love to get more info on whether this is really a noop
aabhay•11h ago
My guess is the todo list is carried across “compress” points where the agent summarizes and restarts with fresh context + the summary
ttul•11h ago
The context will contain a record that the tool call took place. The todo list is never actually fetched.
crawshaw•10h ago
If you want to see it in action in some code, our agent Sketch uses a TODO list tool: https://github.com/boldsoftware/sketch/blob/main/claudetool/...

It is relatively easy to get the agent to use it, most of the work for us is surfacing it in the UI.

TrainedMonkey•10h ago
My understanding is that it is basically a prompt about making a TODO list.
lmeyerov•10h ago
i think he means it's 'just' a thin concat

most useful prompt stuff seems 'simple' to implement ultimately, so it's more impressive to me that such a simple idea of TODO goes so far!

(agent frameworks ARE hard in serious settings, don't get me wrong, just for other reasons. ex: getting the right mix & setup devilishly hard, as are infra layers below like multitenacy, multithreading, streaming, cancellation, etc.)

re: the TODO list, strong agree on criticality. it's flipped how we do louie.ai for stuff like speed running security log analysis competitions. super useful for preventing CoT from going off the rails after only a few turns.

a fun 'aha' for me there: nested todo's are great (A.2.i...), and easy for the LLM b/c they're linearized anyways

You can see how we replace claude code's for our own internal vibe coding usage, which helps with claude's constant compactions as a heavy user (= assuages issue of the ticking timer for a lobotomy): https://github.com/graphistry/louie-py/blob/main/ai/prompts/...

shmatt•11h ago
At least from what I noticed - Junie from Jetbrains was the first to use a very high quality to do list, and it quickly became my favorite

I haven't used it since it became paid, but back then Junie was slow and thoughtful, while Cursor was constantly re-writing files that worked fine, and Claude was somewhere in the middle

tough•10h ago
Cursor added a UI for todo list and encourages it's agent to use it (its great ux, but you can't really see a file of it)

kiro from amazon does both tasks (in tasks.md) and specs.

Too many tools soon, choose what works for you

manishsharan•10h ago
I have been following along the code in this repo. https://github.com/ghuntley/claude-code-source-code-deobfusc...

The author has done a pretty good job of reverse engineering Claude Code and explaining the architecture.

update: changed the link to a better repo

cjonas•9h ago
Can you explain what I'm looking at. Just appears to be a massive readme with a bunch of system instructions?
manishsharan•8h ago
My apologies

This is a better repo to learn about Claude code internals

https://github.com/ghuntley/claude-code-source-code-deobfusc...

jayshah5696•10h ago
sub agents adding isolating context is the real deal rest is just langgraph react agent
PantaloonFlames•8h ago
This is valuable but not really a novel idea.
manx•9h ago
I'm also in the process of creating a general purpose agent cli+library in rust: https://github.com/fdietze/alors

Still work in progress, but I'm already using it to code itself. Feedback welcome.

_andrei_•9h ago
ah, deep agents = agents with planning + agents as tools => so regular agents.

i hate how LangChain has always tried to make things that are simple seem very complicated, and all the unnecessary new terminology and concepts they've pushed, but whatever sells LangSmith.

itsafarqueue•32m ago
I used to consult on this type of thing. I’m not entirely convinced this is what’s happening here but it’s close enough, and is a well trod playbook - dress up the mundane in theatre and performance, create a taxonomy that’s specific to you, then sell access to the thing.

Next step is to try flood the SEO zone with your thing. It’s great if you can piggyback other key terms (deep *, agents) and.. I’m already bored writing this up it’s so [what’s the word for sheer resigned exhaustion at the capitalist corporate soul kill that is this type of work]

web-cowboy•9h ago
As I think through this, I agree with others mentioning that "deep agents" still sounds a lot like agents+tools. I guess the takeaway for me is:

1. You need a good LLM for base knowledge.

2. You need a good system prompt to guide/focus the LLM (create an agent).

3. If you need some functionality that doesn't make any decisions, create a tool.

4. If the agent + tools flows get too wily, break it down into smaller domains by spawning sub agents with focused prompts and (less?) tools.

storus•9h ago
"I hacked on an open source package (deepagents) over the weekend." Thanks but no thanks.
yawnxyz•9h ago
most of these agents are still fundamentally simple while loops; it shouldn't really take longer than a weekend to get one built
SCUSKU•9h ago
Hacker hacks on project and gets posted to Hacker News. Commenter on Hacker News: No thanks, no hacking please.
storus•9h ago
It's on langchain's official page, a framework that looks like it was hacked over the weekend by a fresh grad that brought a lot of pain to the agentic development, and this just feels like piling up more pain on it.
epolanski•8h ago
Some of the biggest software in use today was hacked over few days in its first versions. Git is a famous one.
owebmaster•6h ago
Absolutely not. Linus had git in his brain and it took a few days to write a first version but multiple years of learning
hwchase17•8h ago
Author here!

Main takeaways (which I'd love feedback on) are:

There are series of agents recently (claude code, manus, deep research) which execute tasks over longer time horizons particular well

At the core of it, it's just an LLM running in a loop calling tools... but when you try to do this naively (or at least, when I try to do it) the LLM struggles with doing long/complex tasks

So how do these other agents accomplish it?

These agents all do similar things, namely:

1. They use a planning tool

2. They use sub agents

3. They use a file system like thing to offload context

4. They have a detailed system prompt (prompting isn't dead!)

I don't think any of these things individually is novel... but I also think that they are not super common place to do when building agents. And the combination of them is (I think) an interesting insight!

Would love any feedback :)

gsmt•7h ago
offloading context to a shared file system sounds good but at what point does it start getting messy when multiple subagents start working in parallel
noodletheworld•7h ago
This matches my expectations.

Now that its increasingly clear that writing MCP servers isn't a winning strategy, people need a new way to jump on the band wagon as easily as possible.

Writing your own agent like geminin and claude code is the new hotness right now.

- low barrier to entry (tick)

- does something reasonably useful (tick)

- doesnt require any deep ai knowledge or skill (tick)

- easy to hype (tick)

Its like “cursor but for X” but easier to ship.

Were going to see a tonne of coding agents built this way, but my intuition is, and what Ive seen so far, is theyre not actually introducing anything novel.

Maybe having a quick start like this is good, because it drops the value of an unambitious direct claude code clone to zero.

I like it.

revskill•4h ago
I created a simple openagen at https://github.com/revskill10/openagent-cli
sabakhoj•7h ago
Do subagents run in parallel?
revskill•4h ago
No way because they share filesystem
revskill•4h ago
Weird. The most interesting part is hidden totally. It is how u manage tool call from parsing to exection.