frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Linux and Secure Boot certificate expiration

https://lwn.net/Articles/1029767/
1•weaksauce•24s ago•0 comments

GPT-5.5-Cyber Tops Mythos 5 on Cybersecurity Benchmark

https://twitter.com/sama/status/2069121360744550796
1•delichon•34s ago•0 comments

Anthropic's Mythos AI breached almost all NSA systems in a red-team tests

https://www.tomshardware.com/tech-industry/artificial-intelligence/anthropics-powerful-mythos-ai-...
1•speckx•1m ago•0 comments

Conservatives are dying at higher rates than liberals

https://www.fastcompany.com/91561329/widening-health-gap-between-liberals-and-conservatives
2•ceejayoz•1m ago•0 comments

Valve says SteamOS will be installable on custom desktop PCs

https://www.theverge.com/games/953411/valve-steamos-desktop-nvidia
3•therepanic•2m ago•0 comments

Could Bug Spray Attract Mosquitoes?

https://www.smithsonianmag.com/smart-news/could-bug-spray-attract-mosquitoes-lab-insects-learned-...
1•cwwc•3m ago•0 comments

Yochai – Jewish Learning Companion

https://www.yochai.wiki/chat
1•Anon84•4m ago•0 comments

People training new AI models admit they just get chatbots to do it

https://www.newscientist.com/article/2531050-people-training-new-ai-models-admit-they-just-get-ch...
1•Michelangelo11•4m ago•0 comments

Lucid to lay off roughly 18% of U.S. workforce, COO Marc Winterhoff leaves

https://www.cnbc.com/2026/06/22/lucid-layoffs-evs.html
1•randycupertino•4m ago•0 comments

Enpire: Agentic Robot Policy Self-Improvement in the Real World

https://research.nvidia.com/labs/gear/enpire/
1•gmays•5m ago•0 comments

Valve's Steam Machine Gives Linux Gaming a New Living-Room Push

https://linuxiac.com/valve-steam-machine-gives-linux-gaming-a-new-living-room-push/
1•losgehts•5m ago•0 comments

AI Agent Can't Log into Anything

https://medium.com/@alanayalag/your-ai-agent-cant-log-into-anything-here-s-how-the-industry-is-fi...
1•AlanAAG•5m ago•0 comments

Show HN: OmniMod – Moderation API for user-generated content platforms

https://omnimod.net
1•Asharaj•6m ago•0 comments

Stuck Software Engineer? – Get personalized Career mentoring to grow

https://bindi.coach/
1•agezao•7m ago•0 comments

Hellishly Slow Level 13 Deflate Compression

https://kirill.korins.ky/articles/hellishly-slow-level-13-deflate-compression/
1•zX41ZdbW•7m ago•0 comments

Wayfinder – a relaxing art game in the browser [video]

https://www.youtube.com/watch?v=ZcsSxpFHW-0
1•coolwulf•7m ago•0 comments

I was tired of doing stock research in messy tabs, so I built my own terminal

https://finqos.com
1•marmmaz•7m ago•0 comments

Carlo Ginzburg: a historian who taught us to think about outsiders

https://www.theguardian.com/commentisfree/2026/jun/22/the-guardian-view-on-the-death-of-carlo-gin...
1•mitchbob•8m ago•0 comments

Will AI spark a scientific Renaissance – or a diffuse monoculture?

https://www.nature.com/articles/d41586-026-01954-2
1•Brajeshwar•9m ago•0 comments

Show HN: Picot – A local Codex style desktop GUI for Pi agent

https://github.com/shixin-guo/picot
1•shixin•10m ago•0 comments

The Phenomenon of Bullshit Jobs

https://strikemag.org/bullshit-jobs/
1•Anon84•10m ago•0 comments

Harness Engineering

https://leanpub.com/harness-engineering
1•tacoda•11m ago•0 comments

The Repo Man Coming for Your Ride

https://www.newyorker.com/magazine/2026/06/29/the-repo-man-coming-for-your-ride
1•fortran77•12m ago•0 comments

Hayek and Brexit: Sovereignty, National Democracy, and the Fallacy of Positivism [pdf]

https://cosmosandtaxis.org/wp-content/uploads/2022/09/kosec_ct_vol10_iss11_12.pdf
1•brandonlc•12m ago•1 comments

The Great Seal Bug

https://en.wikipedia.org/wiki/The_Thing_(listening_device)
2•mooreds•13m ago•0 comments

Ask HN: Want to share space on Times Square billboard?

1•HarshaaVardhan•13m ago•0 comments

Ben Franklin May Be Responsible for Bringing Tofu to America (2018)

https://www.smithsonianmag.com/history/ben-franklin-may-be-responsible-bringing-tofu-america-1809...
1•mooreds•14m ago•0 comments

Show HN: AI-Gateway – Open-source semantic caching proxy to reduce LLM API costs

https://github.com/Arnab758/ai-gateway
1•arnab777•14m ago•0 comments

Show HN: Downlaude – View Claude status in the terminal, bye bye browser

https://www.npmjs.com/package/downlaude
1•dawson0•15m ago•0 comments

Shutters

https://www.buildingconservation.com/articles/shutters/shutters.htm
1•mooreds•15m ago•0 comments
Open in hackernews

Agent minimalism: what shipping OpenClaw in production taught us

https://autoclaw.sh/blog/agent-minimalism/
3•anuveyatsu•1h ago

Comments

anuveyatsu•1h ago
Author here. We're a data-infrastructure team (we build and manage data portals), and we got into OpenClaw deeply enough to publish a deployment playbook and a tutorial series. This post is the honest counterweight to that work.

The thing that flipped my thinking was the token accounting. A bare "hello" is ~30 tokens on a plain API call and ~20,000 through OpenClaw, because the framework injects a ~7k system prompt, workspace files, a tool list, and schemas on every call. For a real autonomous agent that's a reasonable investment. For our data-discovery chatbot it was ~20k of context the model had to wade through to do something a 200-token prompt did better — so we dropped the framework. For our portal SRE agent we never reached for it at all; Cloudflare Workers AI did the bounded job without it.

The pattern we keep hitting: a lot of "agent" tasks are really a deterministic pipeline with one small LLM call where judgment is needed. The framework gives you flexibility you often don't need, at a token cost you always pay.

Not anti-OpenClaw — we still deploy it when the work is genuinely open-ended, and the playbook (https://autoclaw.sh) is there for that. Mostly curious whether others have landed in the same place, or found the opposite. Where has a full agent framework clearly earned its keep for you over a smaller setup?